[
  {
    "path": ".editorconfig",
    "content": "root = true\n\n[*]\ncharset = utf-8\nindent_style = space\nindent_size = 2\nend_of_line = lf\ninsert_final_newline = true\ntrim_trailing_whitespace = true\n"
  },
  {
    "path": ".eslintrc.cjs",
    "content": "module.exports = {\n  root: true,\n  env: {\n    browser: true,\n    es2021: true,\n    node: true,\n    'vue/setup-compiler-macros': true,\n  },\n  plugins: ['@typescript-eslint'],\n  parser: 'vue-eslint-parser',\n  parserOptions: {\n    parser: '@typescript-eslint/parser',\n    sourceType: 'module',\n    ecmaVersion: 2021,\n  },\n  extends: [\n    'eslint:recommended',\n    'plugin:@typescript-eslint/recommended',\n    'plugin:vue/vue3-recommended',\n    '@vue/typescript/recommended',\n    '@vue/prettier',\n    'plugin:storybook/recommended',\n  ],\n\n  rules: {\n    'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',\n    'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',\n    '@typescript-eslint/no-non-null-assertion': 0,\n    '@typescript-eslint/no-explicit-any': 0, // allow explicit any's because of the legacy code and ts-less deps, but still prohibit IMplicit any's\n    'vue/multi-word-component-names': 0,\n    'vue/no-lone-template': 0,\n    'vue/v-on-event-hyphenation': ['warn', 'never', { autofix: true }],\n    'vue/component-name-in-template-casing': ['warn', 'PascalCase', { registeredComponentsOnly: false }],\n    'vue/script-indent': ['warn', 2], // , { baseIndent: 0 } - we should use that, but it didn't work for me for some reason.\n  },\n}\n"
  },
  {
    "path": ".gitattributes",
    "content": "e2e/__screenshots__/** filter=lfs diff=lfs merge=lfs -text\n"
  },
  {
    "path": ".github/COMMIT_CONVENTION.md",
    "content": "## Git Commit Message Convention\n\n> This is adapted from [Angular's commit convention](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular).\n\n#### TL;DR:\n\nMessages must match the following regex:\n\n```js\n;/^(revert: )?(feat|fix|docs|style|refactor|test|ci|chore)(\\(.+\\))?: .{1,70}/\n```\n\n#### Types\n\n- `feat` - new functionality.\n- `fix` - patching a bug.\n- `docs` - documentation and comments.\n- `style` - style changes only (not necessarily in css).\n- `refactor` - reworking internals without impacting project interface.\n- `test` - tests and demo.\n- `ci` - deploy and continuous integration.\n- `chore` - no significant code changes: code formatting, version changes, tool updates, minor refactorings.\n\n#### Examples\n\nAppears under \"Features\" header, `compiler` subheader:\n\n```\nfeat(compiler): add 'comments' option\n```\n\nAppears under \"Bug Fixes\" header, `v-model` subheader, with a link to issue #28:\n\n```\nfix(v-model): handle events on blur\n\nclose #28\n```\n\nAppears under \"Performance Improvements\" header, and under \"Breaking Changes\" with the breaking change explanation:\n\n```\nfeat(core): improve vdom diffing by removing 'foo' option\n\nBREAKING CHANGE: The 'foo' option has been removed.\n```\n\nThe following commit and commit `667ecc1` do not appear in the changelog if they are under the same release. If not, the revert commit appears under the \"Reverts\" header.\n\n```\nrevert: feat(compiler): add 'comments' option\n\nThis reverts commit 667ecc1654a317a13331b17617d973392f415f02.\n```\n\n### Full Message Format\n\nA commit message consists of a **header**, **body** and **footer**. The header has a **type**, **scope** and **subject**:\n\n```\n<type>(<scope>): <subject>\n<BLANK LINE>\n<body>\n<BLANK LINE>\n<footer>\n```\n\nThe **header** is mandatory and the **scope** of the header is optional.\n\n### Revert\n\nIf the commit reverts a previous commit, it should begin with `revert: `, followed by the header of the reverted commit. In the body it should say: `This reverts commit <hash>.`, where the hash is the SHA of the commit being reverted.\n\n### Type\n\nIf the prefix is `feat` or `fix` it will appear in the changelog. However if there is any [BREAKING CHANGE](#footer), the commit will always appear in the changelog.\n\nOther prefixes are up to your discretion. Suggested prefixes are `docs`, `chore`, `style`, `refactor`, and `test` for non-changelog related tasks.\n\n### Scope\n\nThe scope could be anything specifying place of the commit change. For example `core`, `compiler`, `ssr`, `v-model`, `transition` etc...\n\n### Subject\n\nThe subject contains succinct description of the change:\n\n- use the imperative, present tense: \"change\" not \"changed\" nor \"changes\"\n- don't capitalize first letter\n- no period (.) at the end\n\n### Body\n\nJust as in the **subject**, use the imperative, present tense: \"change\" not \"changed\" nor \"changes\".\nThe body should include the motivation for the change and contrast this with previous behavior.\n\n### Footer\n\nThe footer should contain any information about **Breaking Changes** and is also the place to\nreference GitHub issues that this commit **Closes**.\n\n**Breaking Changes** should start with the word `BREAKING CHANGE:` with a space or two newlines. The rest of the commit message is then used for this.\n"
  },
  {
    "path": ".github/CONTRIBUTING.md",
    "content": "# Vue.js Contributing Guide\n\nHi! We are really excited that you are interested in contributing to Vuestic. Before submitting your contribution though, please make sure to take a moment and read through the following guidelines.\n\n- [Code of Conduct](./../CODE_OF_CONDUCT.md)\n\n## Pull Request Guidelines\n\n- The `master` branch is just a snapshot of the latest stable release. **Do not submit PRs against the `master` branch.**\n- Atomic code contribution looks something like this:\n  - Checkout from upstream `develop`.\n  - Work on your fork in dedicated branch.\n  - When you're ready to show results - create PR against upstream `develop` and add a developer for review. You can ping said developer to speed things up ;).\n- It's OK to have multiple small commits as you work on the PR - we will let GitHub automatically squash it before merging.\n\n- Good stuff to add in your pull request:\n  - If your PR fully resolves existing issue, add `(fix #xxxx[,#xxx])` (#xxxx is the issue id) so that github will close the issue once it's up on `master`. You have to add that to the body of PR, won't work in header :).\n  - Provide detailed description of the issue in the PR if it's not done in the issue.\n  - If you're working on visual changes - provide before/after screenshot. That speeds up review immensely.\n\n### Branches\n\n- Upstream branches (**epicmax/vuestic-admin**):\n  - `master` - stable snapshot from `develop`. Releases and hotfixes only. Do not submit PR's to `master`!.\n  - `develop` - main development branch.\n\n- Local branches\n  - For local branches naming stick to [commit message convention](./COMMIT_CONVENTION.md). So for feature branch that adds tabs name would be `feat/tabs`.\n\n### For core contributors\n\n- Keep amount of local branches minimal.\n- Always link PR to issue (via `fix #123`).\n- For small issues you may push to `develop` branch directly while adding (`fix #123`) to commit message.\n- Create single PR for one issue. If we have several PRs - move all the code into a single one and close the rest. If one PR covers several issues - either split it in several PRs or mark one of the issues as duplicate.\n- Be sure to have only one person assigned per issue.\n- Check your code: https://github.com/epicmaxco/vuestic-admin/issues/378.\n- We use [yarn](https://yarnpkg.com/lang/en/) for package management.\n- Be proactive. If you think something is wrong - create an issue or discuss.\n- Recommended tools: [GitKraken](https://www.gitkraken.com/), [WebStorm](https://www.jetbrains.com/webstorm/), [ShareX](https://getsharex.com/)\n\n#### Before release workflow\n\n- Update package versions to newest ones. Update lock files (for both `npm` and `yarn`)\n\n### Vuestic-ui\n\nVuestic-admin uses vuestic-ui internally. So if you have some troubles with components - it's better to submit issue or PR in [respective repo](https://github.com/epicmaxco/vuestic-ui).\n\n### Commonly used NPM scripts\n\n```bash\n# run dev server\n$ yarn dev\n\n# build vuestic-admin project into bundle\n$ yarn build\n```\n\n## Credits\n\n<a href=\"https://github.com/epicmaxco/vuestic-admin/graphs/contributors\">Hall of fame!</a>\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE.md",
    "content": "**Note: for support questions, please use stackoverflow**. This repository's issues are reserved for feature requests and bug reports.\n\n- **I'm submitting a ...**\n  - [ ] bug report\n  - [ ] feature request\n  - [ ] support request => Please do not submit support request here, see note at the top of this template.\n\n- **Do you want to request a _feature_ or report a _bug_?**\n\n- **What is the current behavior?**\n\n- **If the current behavior is a bug, please provide the steps to reproduce, ideally also a screenshot or gif if it's a style issue**\n\n- **What is the expected behavior?**\n\n- **What is the motivation / use case for changing the behavior?**\n\n- **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, gitter, etc)\n"
  },
  {
    "path": ".github/PULL_REQUEST_TEMPLATE.md",
    "content": "<!--\nMAKE SURE TO READ THE CONTRIBUTING GUIDE BEFORE CREATING A PR\nhttps://github.com/epicmaxco/vuestic-admin/blob/master/CODE_OF_CONDUCT.md\n-->\n\n<!-- Provide a general summary of your changes in the Title above -->\n<!-- Keep the title short and descriptive, as it will be used as a commit message -->\n\n## Description\n\n<!-- Describe your changes in detail -->\n\n## Markup:\n\n<!-- Paste your markup here. -->\n<details>\n\n```vue\n// Your code\n```\n\n</details>\n\n## Types of changes\n\n<!-- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->\n\n- [ ] Bug fix (non-breaking change which fixes an issue)\n- [ ] New feature (non-breaking change which adds functionality)\n- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)\n- [ ] Improvement/refactoring (non-breaking change that doesn't add any feature but make things better)\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n  - package-ecosystem: \"npm\"\n    directory: \"/\"\n    target-branch: \"develop\"\n"
  },
  {
    "path": ".github/workflows/playwright.yml",
    "content": "name: Playwright Tests\n\non:\n  workflow_dispatch:\n    inputs:\n      target_url:\n        description: 'Netlify build URL to test (e.g. https://your-preview.netlify.app)'\n        required: true\n        type: string\n      baseline_url:\n        description: 'Baseline URL for snapshot generation (optional)'\n        required: false\n        default: https://admin-demo.vuestic.dev\n        type: string\n      publish_report:\n        description: 'Publish Playwright report to Netlify (new deploy per run)'\n        required: false\n        type: boolean\n        default: false\n\njobs:\n  test:\n    timeout-minutes: 60\n    runs-on: ubuntu-latest\n    concurrency:\n      group: playwright-${{ inputs.target_url }}\n      cancel-in-progress: false\n\n    steps:\n      - name: Checkout selected ref (pinned to master)\n        uses: actions/checkout@v4\n        with:\n          ref: master\n          fetch-depth: 1\n\n      - name: Setup Node\n        uses: actions/setup-node@v4\n        with:\n          node-version-file: '.nvmrc'\n\n      - name: Enable Corepack and select Yarn from package.json\n        run: |\n          corepack enable\n          corepack use $(node -p \"require('./package.json').packageManager\")\n          yarn --version\n\n      - name: Cache Yarn cache\n        uses: actions/cache@v4\n        with:\n          path: .yarn/cache\n          key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}\n          restore-keys: |\n            ${{ runner.os }}-yarn-\n\n      - name: Install dependencies\n        run: yarn install --immutable\n\n      - name: Cache Playwright browsers\n        uses: actions/cache@v4\n        with:\n          path: ~/.cache/ms-playwright\n          key: ${{ runner.os }}-pw-${{ hashFiles('yarn.lock') }}\n          restore-keys: |\n            ${{ runner.os }}-pw-\n\n      - name: Install Playwright Browsers\n        run: yarn workspace e2e exec playwright install --with-deps\n\n      - name: Generate baseline snapshots\n        run: yarn e2e --update-snapshots\n        env:\n          E2E_BASE_URL: ${{ inputs.baseline_url }}\n\n      - name: Run Playwright tests (against Netlify build)\n        run: yarn e2e\n        env:\n          E2E_BASE_URL: ${{ inputs.target_url }}\n        continue-on-error: true #! Temporary: ignore screenshot diffs in CI to avoid blocking PRs.\n                                # TODO: remove once visual tests are stabilized.\n\n      - uses: actions/upload-artifact@v4\n        if: ${{ !cancelled() }}\n        with:\n          name: playwright-report-${{ github.sha }}\n          path: e2e/playwright-report/**\n\n      - name: Publish Playwright report to Netlify\n        if: ${{ always() && inputs.publish_report == true }}\n        uses: nwtgck/actions-netlify@v3.0\n        with:\n          publish-dir: 'e2e/playwright-report'\n          production-deploy: false\n          alias: run-${{ github.run_id }}\n          deploy-message: \"Playwright report for ${{ github.sha }} (target: ${{ inputs.target_url }})\"\n        env:\n          NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}\n          NETLIFY_SITE_ID: ${{ secrets.NETLIFY_REPORT_SITE_ID }}\n"
  },
  {
    "path": ".gitignore",
    "content": "# Logs\nlogs\n*.log\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\npnpm-debug.log*\nlerna-debug.log*\n\n.yarn/install-state.gz\nnode_modules\ndist\ndist-ssr\n*.local\n.env\n\n# Editor directories and files\n.vscode/*\n!.vscode/extensions.json\n.idea\n.DS_Store\n*.suo\n*.ntvs*\n*.njsproj\n*.sln\n*.sw?\n\n# Local Netlify folder\n.netlify\n\n"
  },
  {
    "path": ".husky/.gitignore",
    "content": "_\n"
  },
  {
    "path": ".husky/pre-commit",
    "content": "#!/bin/sh\n. \"$(dirname \"$0\")/_/husky.sh\"\n\nnpx lint-staged\n"
  },
  {
    "path": ".nvmrc",
    "content": "20\n"
  },
  {
    "path": ".prettierignore",
    "content": "# Ignore everything recursively...\n*\n\n# But not the .{ts,js,html,css,scss,vue,json,md} files\n!*.ts\n!*.js\n!*.html\n!*.css\n!*.scss\n!*.vue\n!*.json\n!*.md\n\n# But still ignore the dist folder\ndist/**\n\n# Check subdirectories too\n!*/\n"
  },
  {
    "path": ".prettierrc",
    "content": "{\n  \"tabWidth\": 2,\n  \"semi\": false,\n  \"singleQuote\": true,\n  \"quoteProps\": \"as-needed\",\n  \"trailingComma\": \"all\",\n  \"bracketSpacing\": true,\n  \"printWidth\": 120\n}\n"
  },
  {
    "path": ".storybook/main.ts",
    "content": "import type { StorybookConfig } from '@storybook/vue3-vite'\n\nconst config: StorybookConfig = {\n  stories: ['../src/**/*.stories.@(js|jsx|mjs|ts|tsx)'],\n  addons: ['@storybook/addon-links', '@storybook/addon-essentials', '@storybook/addon-interactions'],\n  framework: {\n    name: '@storybook/vue3-vite',\n    options: {},\n  },\n  docs: {\n    autodocs: 'tag',\n  },\n}\nexport default config\n"
  },
  {
    "path": ".storybook/preview.ts",
    "content": "import { type Preview, setup } from '@storybook/vue3'\nimport { createVuestic } from 'vuestic-ui'\nimport vuesticGlobalConfig from '../src/services/vuestic-ui/global-config'\nimport './storybook-main.scss'\nimport '../src/scss/main.scss'\n\nimport { createPinia } from 'pinia'\n\nconst pinia = createPinia()\n\nsetup((app) => {\n  app.use(createVuestic({ config: vuesticGlobalConfig }))\n  app.use(pinia)\n})\n\nconst preview: Preview = {\n  parameters: {\n    actions: { argTypesRegex: '^on[A-Z].*' },\n    controls: {\n      matchers: {\n        color: /(background|color)$/i,\n        date: /Date$/,\n      },\n    },\n  },\n}\n\nexport default preview\n"
  },
  {
    "path": ".storybook/storybook-main.scss",
    "content": "@import url('https://unpkg.com/tailwindcss@2.2.19/dist/tailwind.min.css');\n@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');\n@import url(https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined);\n"
  },
  {
    "path": ".vscode/extensions.json",
    "content": "{\n  \"recommendations\": [\"Vue.volar\"]\n}\n"
  },
  {
    "path": ".yarnrc.yml",
    "content": "nodeLinker: node-modules\n"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "content": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, we as\ncontributors and maintainers pledge to making participation in our project and\nour community a harassment-free experience for everyone, regardless of age, body\nsize, disability, ethnicity, sex characteristics, gender identity and expression,\nlevel of experience, education, socio-economic status, nationality, personal\nappearance, race, religion, or sexual identity and orientation.\n\n## Our Standards\n\nExamples of behavior that contributes to creating a positive environment\ninclude:\n\n- Using welcoming and inclusive language\n- Being respectful of differing viewpoints and experiences\n- Gracefully accepting constructive criticism\n- Focusing on what is best for the community\n- Showing empathy towards other community members\n\nExamples of unacceptable behavior by participants include:\n\n- The use of sexualized language or imagery and unwelcome sexual attention or\n  advances\n- Trolling, insulting/derogatory comments, and personal or political attacks\n- Public or private harassment\n- Publishing others' private information, such as a physical or electronic\n  address, without explicit permission\n- Other conduct which could reasonably be considered inappropriate in a\n  professional setting\n\n## Our Responsibilities\n\nProject maintainers are responsible for clarifying the standards of acceptable\nbehavior and are expected to take appropriate and fair corrective action in\nresponse to any instances of unacceptable behavior.\n\nProject maintainers have the right and responsibility to remove, edit, or\nreject comments, commits, code, wiki edits, issues, and other contributions\nthat are not aligned to this Code of Conduct, or to ban temporarily or\npermanently any contributor for other behaviors that they deem inappropriate,\nthreatening, offensive, or harmful.\n\n## Scope\n\nThis Code of Conduct applies both within project spaces and in public spaces\nwhen an individual is representing the project or its community. Examples of\nrepresenting a project or community include using an official project e-mail\naddress, posting via an official social media account, or acting as an appointed\nrepresentative at an online or offline event. Representation of a project may be\nfurther defined and clarified by project maintainers.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be\nreported by contacting the project team at [INSERT EMAIL ADDRESS]. All\ncomplaints will be reviewed and investigated and will result in a response that\nis deemed necessary and appropriate to the circumstances. The project team is\nobligated to maintain confidentiality with regard to the reporter of an incident.\nFurther details of specific enforcement policies may be posted separately.\n\nProject maintainers who do not follow or enforce the Code of Conduct in good\nfaith may face temporary or permanent repercussions as determined by other\nmembers of the project's leadership.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,\navailable at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html\n\n[homepage]: https://www.contributor-covenant.org\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2024 Epicmax LLC\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.ja-JP.md",
    "content": "<p align=\"center\">\n  <a href=\"https://vuestic.dev\" target=\"_blank\">\n    <img alt=\"Vuestic UI ロゴ\" width=\"220\" src=\"./.github/assets/vuestic-admin-logo.png\">\n  </a>\n</p>\n\n<p align=\"center\">\n  Vue 3、Vite、Pinia、およびTailwind CSS を利用した無料で美しい管理テンプレート。効率的でレスポンシブ、かつ高速な管理インターフェースの構築に最適です。</br>\n  開発者: <a href=\"https://epicmax.co\">Epicmax</a>。</br>\n  <a href=\"https://ui.vuestic.dev\">Vuestic UI</a> ライブラリをベースにしています。\n</p>\n\n<p align=\"center\">\n  <a href=\"https://admin-demo.vuestic.dev\"> ライブデモ </a> |\n  <a href=\"https://admin-landing.vuestic.dev/\"> Vuestic Admin について </a> |\n  <a href=\"https://ui.vuestic.dev/\">Vuestic UI ドキュメンテーション</a>\n</p>\n\n> Vuestic Admin は [Vuestic UI](https://ui.vuestic.dev) で構築されています。私たちの\n> <a href=\"https://github.com/epicmaxco/vuestic-ui/issues\">課題</a>、\n> <a href=\"https://ui.vuestic.dev/en/contribution/guide\">貢献ガイド</a> を参照して、\n> <a href=\"https://discord.gg/jTKTjj2weV\">Discord サーバー</a> でディスカッションに参加して、Vuestic Admin ＆ Vuestic UI の体験を向上させるのに役立ててください。\n\n<p align=\"center\">\n  <a href=\"https://admin.vuestic.dev\" target=\"_blank\">\n    <img src=\"./public/vuestic-admin-image.png\" align=\"center\" width=\"888px\"/>\n  </a>\n</p>\n\n### クイックスタート\n\n次のコマンドを使用して、[Vuestic Admin](admin-demo.vuestic.ui) または空の Vite または Nuxt プロジェクトを [Vuestic UI](ui.vuestic.dev) と共に素早く構築します。\n\n```bash\nnpm create vuestic@latest\n```\n\n[Vuestic Admin](admin.vuestic.ui) をインストールしたら、`npm install` を実行して依存関係をインストールし、次に `npm run dev` を実行してローカル開発サーバーを起動します。\n\n### ドキュメンテーション\n\nドキュメンテーション、ガイド、例、およびチュートリアルは [ui.vuestic.dev](https://ui.vuestic.dev) で利用可能です。\n\n### 公式 Discord サーバー\n\n公式コミュニティの [Discord サーバー](https://discord.gg/jTKTjj2weV) で質問してください。\n\n### 特徴\n\n- **Vue 3、Vite、Pinia、および Tailwind CSS -** 高速かつ効率的な開発\n- **ダークテーマ -** モダンで目を引く\n- **グローバル構成 -** 無駄なくカスタマイズ可能\n- **アクセシビリティ -** 包括的でユーザーフレンドリー\n- **i18n 統合 -** グローバルな展開のための簡単なローカリゼーション\n- **教育リソース -** 学習とスキル向上に最適\n- **レスポンシブデザイン -** すべてのデバイスにシームレスに適応\n- **プロフェッショナルサポート -** 専門家からの信頼性のあるサポート\n- **高度にカスタマイズ可能 -** プロジェクトのスタイルに合わせて調整\n\n### 貢献\n\n素晴らしい PR、課題、アイデアに感謝します。\n\n<a href=\"https://github.com/epicmaxco/vuestic-admin/graphs/contributors\">\n<img src=\"https://opencollective.com/vuestic-admin/contributors.svg?width=890&button=false\" />\n</a>\n<br>\n\nいつでも参加歓迎です：私たちの\n<a href=\"https://ui.vuestic.dev/en/contribution/guide\">\n貢献ガイド</a>\n、 [オープン課題](https://github.com/epicmaxco/vuestic-ui/issues)\nおよび [Discord サーバー](https://discord.gg/jTKTjj2weV) を確認してください。\n\n### パートナー & スポンサー ❤️\n\n<img src=\"./.github/assets/sponsors.png\" loading=\"lazy\" alt=\"Epicmax、vuejobs、ag-grid、flatlogic、browserstack、jetbrains\" width=\"400px\">\n\nパートナーになる: [hello@epicmax.co](mailto:hello@epicmax.co)\n\n### お仕事の依頼はできますか？\n\n[Epicmax](https://epicmax.co) は初めからオープンソースにコミットしています。Vuestic Admin は Epicmax によって作成され、そしてこれまでのすべての年月を通じてサポートされています。\n\n6年以上にわたる商業およびオープンソースプロジェクトへの専念した作業、および世界中のさまざまな分野で47以上のクライアントを持つことで、Epicmaxは特にVue.jsにおけるフロントエンド開発の深い専門知識を有しています。私たちはプロジェクトのコード監査を定期的に実施しており、これまでのクライアントだけでなく、フロントエンドコードの状態を理解し、セキュアで最新であることを確認したいすべての方にこのサービスを提供することに興奮しています！\n\nEpicmaxによるウェブ開発サービスの相談や注文は、この[フォーム](https://epicmax.co/contacts)からリクエストできます 😎\n\nこんにちはと言いたい方は: [hello@epicmax.co](mailto:hello@epicmax.co)。一緒に仕事ができることを嬉しく思います！\n\n[これまでの仕事](https://epicmax.co) 🤘\n\n[チームに会う](https://ui.vuestic.dev/introduction/team)\n\n### 受賞歴\n\n[<img src=\"https://i.imgur.com/ZeQPZ3Q.png\" align=\"center\" width=\"150px\"/>](https://flatlogic.com/templates/vuestic-vue-free-admin)\n\n<p>\n  [Flatlogic](https://flatlogic.com/templates/vuestic-vue-free-admin) マーケットプレイスによる\n</p>\n\n### 私たちをフォローしてください\n\n最新のVuesticニュースをお知らせします！\n[Twitter](https://twitter.com/vuestic_ui) または [Linkedin](https://www.linkedin.com/company/18509340) でフォローしてください。\n\n### ライセンス\n\n[MIT](https://github.com/epicmaxco/vuestic-admin/blob/master/LICENSE) ライセンス。\n"
  },
  {
    "path": "README.md",
    "content": "<p align=\"center\">\n  <a href=\"https://vuestic.dev\" target=\"_blank\">\n    <img alt=\"Vuestic UI Logo\" width=\"220\" src=\"./.github/assets/vuestic-admin-logo.png\">\n  </a>\n</p>\n\n<p align=\"center\">\n  Free and beautiful Admin Template utilizing Vue 3, Vite, Pinia, and Tailwind CSS. Designed for building efficient, responsive, and fast-loading admin interfaces.</br>\n  Developed by  <a href=\"https://epicmax.co\">Epicmax</a>.</br>\n  Based on <a href=\"https://ui.vuestic.dev\">Vuestic UI</a> library.\n</p>\n\n<p align=\"center\">\n  <a href=\"https://admin-demo.vuestic.dev\"> Live Demo </a> |\n  <a href=\"https://admin.vuestic.dev/\"> About Vuestic Admin </a> |\n  <a href=\"https://ui.vuestic.dev/\">Vuestic UI documentation</a>\n</p>\n\n> Vuestic Admin is built with [Vuestic UI](https://ui.vuestic.dev). See our\n> <a href=\"https://github.com/epicmaxco/vuestic-ui/issues\">issues</a>,\n> <a href=\"https://ui.vuestic.dev/en/contribution/guide\">contributing guide</a> and join discussions on our\n> <a href=\"https://discord.gg/jTKTjj2weV\">Discord server</a> to help us improve Vuestic Admin & Vuestic UI experience.\n\n<p align=\"center\">\n  <a href=\"https://admin.vuestic.dev\" target=\"_blank\">\n    <img src=\"./public/vuestic-admin-image.png\" align=\"center\" width=\"888px\"/>\n  </a>\n</p>\n\n### Quick start\n\nUse following command to quickly scaffold new [Vuestic Admin](https://admin-demo.vuestic.dev) or empty Vite or Nuxt project with [Vuestic UI](https://ui.vuestic.dev).\n\n```bash\nnpm create vuestic@latest\n```\n\nAfter [Vuestic Admin](https://admin.vuestic.dev) is installed, run `npm install` to install dependcies, then run `npm run dev` to start local development server.\n\n### Documentation\n\nDocumentation, guides, examples and tutorials are available on [ui.vuestic.dev](https://ui.vuestic.dev)\n\n### Official Discord Server\n\nAsk questions at the official community [discord server](https://discord.gg/jTKTjj2weV)\n\n### Features\n\n- **Vue 3, Vite, Pinia, and Tailwind CSS -** Fast and efficient development\n- **Dark Theme -** Modern and eye-catching\n- **Global Configuration -** Effortless customization\n- **Accessibility -** Inclusive and user-friendly\n- **i18n Integration -** Easy localization for global reach\n- **Educational Resource -** Ideal for learning and improving skills\n- **Responsive Design -** Adapts seamlessly to all devices\n- **Professional Support -** Reliable help from the experts\n- **Highly Customizable -** Tailor to your project’s style\n\n### Contributing\n\nThanks for all your wonderful PRs, issues and ideas.\n\n<a href=\"https://github.com/epicmaxco/vuestic-admin/graphs/contributors\">\n<img src=\"https://opencollective.com/vuestic-admin/contributors.svg?width=890&button=false\" />\n</a>\n<br>\n\nYou’re always welcome to join: check out\nour <a href=\"https://ui.vuestic.dev/en/contribution/guide\">\ncontribution guides</a>\n, [open issues](https://github.com/epicmaxco/vuestic-ui/issues)\nand [Discord server](https://discord.gg/jTKTjj2weV)\n\n### Partners & Sponsors ❤️\n\n<img src=\"./.github/assets/sponsors.png\" loading=\"lazy\" alt=\"Epicmax, vuejobs, ag-grid, flatlogic, browserstack and jetbrains\" width=\"400px\">\n\nBecome a partner: [hello@epicmax.co](mailto:hello@epicmax.co)\n\n### Can I hire you guys?\n\n[Epicmax](https://epicmax.co) is committed to Open Source from its beginning. Vuestic Admin was created and backed by Epicmax, and is supported through all the years.\n\nWith 6+ years of dedicated work on both commercial and open-source projects, and more than 47 clients worldwide across various fields, Epicmax has deep expertise in frontend development, especially in Vue.js. We regularly conduct code audits for our projects and now excited to offer this service not only to our existing clients but to anyone looking to understand the state of their frontend code and ensure it's secure and up-to-date!\n\nYou can request a consultation or order web development services by Epicmax via this [form](https://epicmax.co/contacts) 😎\n\nSay hi: <a href=\"mailto:hello@epicmax.co\">hello@epicmax.co</a>. We will be happy to work with you!\n\n[Other work](https://epicmax.co) we’ve done 🤘\n\n[Meet the Team](https://ui.vuestic.dev/introduction/team)\n\n### Awards\n\n<a href=\"https://flatlogic.com/templates/vuestic-vue-free-admin\" target=\"_blank\">\n    <img src=\"https://i.imgur.com/ZeQPZ3Q.png\" align=\"center\" width=\"150px\"/>\n</a>\n<p>\n  By <a href=\"https://flatlogic.com/templates/vuestic-vue-free-admin\" target=\"_blank\">@flatlogic</a> marketplace\n</p>\n\n### Premium Support and Consulting\n\nGet Premium Support & Consulting services through our official development partner, Epicmax. As the main contributor to Vuestic UI and Vuestic Admin, Epicmax brings a wealth of expertise and experience to help you achieve your project goals efficiently and effectively.\n\n[Get a quote](https://www.epicmax.co/?ref=vuestic-consulting)\n\n### Follow us\n\nStay up to date with the latest Vuestic news! Follow us\non [Twitter](https://twitter.com/vuestic_ui)\nor [Linkedin](https://www.linkedin.com/company/18509340)\n\n### License\n\n[MIT](https://github.com/epicmaxco/vuestic-admin/blob/master/LICENSE) license.\n"
  },
  {
    "path": "README.zh-CN.md",
    "content": "<p align=\"center\">\n  <a href=\"https://vuestic.dev\" target=\"_blank\">\n    <img alt=\"Vuestic UI Logo\" width=\"220\" src=\"./.github/assets/vuestic-admin-logo.png\">\n  </a>\n</p>\n\n<p align=\"center\">\n  免费且美观的管理模板，使用Vue 3、Vite、Pinia和Tailwind CSS构建。设计用于构建高效、响应式和快速加载的管理界面。</br>\n  由<a href=\"https://epicmax.co\">Epicmax</a>开发。</br>\n  基于<a href=\"https://ui.vuestic.dev\">Vuestic UI</a>库。\n</p>\n\n<p align=\"center\">\n  <a href=\"https://admin-demo.vuestic.dev\"> 在线演示 </a> |\n  <a href=\"https://admin-landing.vuestic.dev/\"> 关于Vuestic Admin </a> |\n  <a href=\"https://ui.vuestic.dev/\">Vuestic UI文档</a>\n</p>\n\n> Vuestic Admin是使用[Vuestic UI](https://ui.vuestic.dev)构建的。查看我们的\n> <a href=\"https://github.com/epicmaxco/vuestic-ui/issues\">问题</a>，\n> <a href=\"https://ui.vuestic.dev/en/contribution/guide\">贡献指南</a> 并参与我们的\n> <a href=\"https://discord.gg/jTKTjj2weV\">Discord服务器</a>，帮助我们改进Vuestic Admin和Vuestic UI体验。\n\n<p align=\"center\">\n  <a href=\"https://admin.vuestic.dev\" target=\"_blank\">\n    <img src=\"./public/vuestic-admin-image.png\" align=\"center\" width=\"888px\"/>\n  </a>\n</p>\n\n### 快速入门\n\n使用以下命令快速搭建新的[Vuestic Admin](admin-demo.vuestic.ui)或使用[Vuestic UI](ui.vuestic.dev)的空白Vite或Nuxt项目。\n\n```bash\nnpm create vuestic@latest\n```\n\n安装[Vuestic Admin](admin.vuestic.ui)后，运行 `npm install` 安装依赖，然后运行 `npm run dev` 启动本地开发服务器。\n\n### 文档\n\n文档、指南、示例和教程可在[ui.vuestic.dev](https://ui.vuestic.dev)上找到。\n\n### 官方Discord服务器\n\n在官方社区的 [discord服务器](https://discord.gg/jTKTjj2weV)上提问。\n\n### 特性\n\n- **Vue 3、Vite、Pinia和Tailwind CSS -** 快速高效的开发\n- **深色主题 -** 现代且引人注目\n- **全局配置 -** 轻松定制\n- **可访问性 -** 包容且用户友好\n- **i18n集成 -** 便于全球本地化\n- **教育资源 -** 适用于学习和提高技能\n- **响应式设计 -** 无缝适应所有设备\n- **专业支持 -** 专家提供可靠帮助\n- **高度可定制 -** 可根据项目风格定制\n\n### 贡献\n\n感谢您所有出色的PR、问题和想法。\n\n<a href=\"https://github.com/epicmaxco/vuestic-admin/graphs/contributors\">\n<img src=\"https://opencollective.com/vuestic-admin/contributors.svg?width=890&button=false\" />\n</a>\n<br>\n\n欢迎随时加入：查看我们的<a href=\"https://ui.vuestic.dev/en/contribution/guide\">贡献指南</a>，[开放问题](https://github.com/epicmaxco/vuestic-ui/issues)和[Discord服务器](https://discord.gg/jTKTjj2weV)。\n\n### 合作伙伴与赞助商 ❤️\n\n<img src=\"./.github/assets/sponsors.png\" loading=\"lazy\" alt=\"Epicmax, vuejobs, ag-grid, flatlogic, browserstack and jetbrains\" width=\"400px\">\n\n成为合作伙伴：[hello@epicmax.co](mailto:hello@epicmax.co)\n\n### 我能雇佣你们吗？\n\n[Epicmax](https://epicmax.co) 从一开始就致力于开源。Vuestic Admin是由Epicmax创建并支持的，经过多年的支持。\n\n在前端开发方面，Epicmax在商业和开源项目上已经有超过6年的专业经验，与全球各个领域的47个以上的客户合作。我们定期对我们的项目进行代码审核，现在很高兴不仅向我们现有的客户提供此服务，而且向任何希望了解其前端代码状态并确保其安全和最新的人提供此服务！\n\n您可以通过[Epicmax的这个表单](https://epicmax.co/contacts)请求咨询或订购Web开发服务 😎\n\n打个招呼：<a href=\"mailto:hello@epicmax.co\">hello@epicmax.co</a>。我们将很高兴与您合作！\n\n[我们做过的其他工作](https://epicmax.co) 🤘\n\n[认识团队](https://ui.vuestic.dev/introduction/team)\n\n### 奖项\n\n<a href=\"https://flatlogic.com/templates/vuestic-vue-free-admin\" target=\"_blank\">\n    <img src=\"https://i.imgur.com/ZeQPZ3Q.png\" align=\"center\" width=\"150px\"/>\n</a>\n<p>\n  由<a href=\"https://flatlogic.com/templates/vuestic-vue-free-admin\" target=\"_blank\">@flatlogic</a>市场提供\n</p>\n\n### 关注我们\n\n随时关注最新的Vuestic新闻！在[Twitter上](https://twitter.com/vuestic_ui)\n或[Linkedin上](\n"
  },
  {
    "path": "_redirects",
    "content": "/*  /index.html  200\n"
  },
  {
    "path": "docs/pre-production.md",
    "content": "# Pre-production\n\n## SEO\n\nWe have a boierplate prepared with some analytics ingrained. This includes:\n\n- [Yandex Metrica](https://metrica.yandex.com/about)\n\nTo get these running - just provide keys to respective apis. You're advised to copy `.env.example` with rename to `.env` then modify it.\n\nNotice, that if you are about to use Google Maps then you also have to provide it with your personal API key. The key must be defined under the `VUE_APP_GOOGLE_MAPS_API_KEY` environment-variable (more on them below) and can be obtained [here](https://developers.google.com/maps/documentation/javascript/get-api-key).\n\n## Deploy\n\nWe use [circleci](https://circleci.com) to deploy vuestic version you're able to see on demo.\n\nIf you want to save some time and use our config, do notice that circleci will need the following keys, that you have to set in **Build Settings -> Environment Variables**.\n\n- `DEPLOY_PASSWORD` ssh password.\n- `DEPLOY_PATH_PRODUCTION` production build will be loaded to this folder.\n- `DEPLOY_PATH_STAGING` staging build will be loaded to this folder.\n- `DEPLOY_URL` ssh url.\n- `DEPLOY_USER` ssh password.\n\nYou can modify [config](../.circleci/config.yml) if our solution doesn't suit your needs exactly.\n\nCouple of things to note:\n\n- in `.env` file keys should look like this `VUE_APP_DRIFT_KEY`. Which will correspond to circleci key `DRIFT_KEY`. You essentially have two ways to pass config into build process.\n- Circleci will run tests before both staging and production.\n\n## Demos\n\nYou can enable demos in build by:\n\n```\nVUE_APP_INCLUDE_DEMOS=true\n```\n\nDemos are included in staging build by default. They're not present in production because of significant impact on bundle size.\n\n## Build Version\n\nYou can enable build version, hash commit, and timestamp by build to the main page footer:\n\n```\nVUE_APP_BUILD_VERSION=true\n```\n\nThis information are excluded by default.\n"
  },
  {
    "path": "e2e/.gitignore",
    "content": "test-results\nplaywright-report\nblob-report\nplaywright/.cache\n__screenshots__\n"
  },
  {
    "path": "e2e/README.MD",
    "content": "# End-to-End Testing with Playwright\n\nThis project uses **Playwright** for end-to-end (E2E) testing.\nAll test logic lives in the `e2e` folder, but several root-level changes are required for correct setup.\n\n---\n\n## Project Setup\n\n### 1. GitHub Actions (CI)\n\nCI is configured in: `.github/workflows/playwright.yml`\n\nThe workflow is triggered manually.\nYou can provide:\n\n- **Baseline URL** – used to generate reference snapshots (default: `https://admin-demo.vuestic.dev`).\n- **Target URL** – Netlify (or other) build URL to run tests against (required).\n\nThe workflow runs tests and uploads the Playwright HTML report as a GitHub Artifact, which can be downloaded and inspected locally.\n\n### 2. `package.json` changes\n\nAt the root level, add:\n\n```json\n{\n  \"workspaces\": [\"e2e\"],\n  \"scripts\": {\n    \"e2e\": \"yarn workspace e2e test\"\n  }\n}\n```\n\nThis ensures the E2E project is recognized as a Yarn workspace and provides a shortcut script for running tests.\n\n---\n\n## Configuration\n\nAll configuration is stored in: `e2e/playwright.config.ts`\n\nHere you can customize:\n\n- Paths – where snapshots, reports, and test results are stored.\n- Snapshot Ratio – the allowed percent difference for visual comparisons.\n- Timeouts – global test and assertion timeouts.\n\nIf you want to store baseline screenshots in the repository, we recommend adding a `.gitattributes` file to enforce consistent handling of binary files.\n\n---\n\n## API Stubs and Mocks\n\nThe `e2e` project includes stubs for API requests.\nThese allow you to intercept, control, and replace backend requests with mocks during testing.\n\n---\n\n## CI Workflow Details\n\n- Generate/Update Baseline: snapshots are created against the baseline URL.\n- Run Tests: tests are executed against the target URL (e.g., a Netlify preview build).\n- Artifacts: Playwright reports are uploaded as GitHub Artifacts and can be downloaded for local review.\n\n---\n\n## Local Usage\n\nStep 1:\n// Expect error\nGenerate baseline screenshots: `E2E_BASE_URL=https://admin-demo.vuestic.dev yarn e2e:update-snapshots`\n\nStep 2:\nBuild and run project locally: `yarn build:ci && yarn start:ci`\n// Use correct API base url in .env\nTo run tests locally: `yarn e2e`\n"
  },
  {
    "path": "e2e/package.json",
    "content": "{\n  \"name\": \"e2e\",\n  \"private\": true,\n  \"version\": \"0.0.0\",\n  \"scripts\": {\n    \"test\": \"playwright test\",\n    \"update\": \"playwright test --update-snapshots\"\n  },\n  \"devDependencies\": {\n    \"@playwright/test\": \"^1.54.2\"\n  }\n}\n"
  },
  {
    "path": "e2e/playwright.config.ts",
    "content": "import { defineConfig, devices } from '@playwright/test'\n\n// Chromium – 3 breakpoints\nconst projectsChromium = [\n  {\n    name: 'chromium-pixel5',\n    use: {\n      ...devices['Pixel 5'],\n      viewport: { width: 360, height: 800 },\n      isMobile: true,\n      hasTouch: true,\n    },\n  },\n  {\n    name: 'chromium-768',\n    use: {\n      ...devices['Desktop Chrome'],\n      viewport: { width: 768, height: 800 },\n    },\n  },\n  {\n    name: 'chromium-1920',\n    use: {\n      ...devices['Desktop Chrome'],\n      viewport: { width: 1920, height: 800 },\n    },\n  },\n]\n\n// WebKit – 2 breakpoints\nconst projectsWebKit = [\n  {\n    name: 'webkit-360',\n    use: {\n      ...devices['Desktop Safari'],\n      viewport: { width: 360, height: 800 },\n      isMobile: true,\n      hasTouch: true,\n    },\n  },\n  {\n    name: 'webkit-1920',\n    use: {\n      ...devices['Desktop Safari'],\n      viewport: { width: 1920, height: 800 },\n    },\n  },\n]\n\n// Mobile Safari (iOS emulation) – 1 breakpoint\nconst projectsSafari = [\n  {\n    name: 'mobile-safari-iphone12',\n    use: { ...devices['iPhone 12'] },\n  },\n]\n\n// Firefox – 1 breakpoint\nconst projectsFirefox = [\n  {\n    name: 'firefox-1920',\n    use: {\n      ...devices['Desktop Firefox'],\n      viewport: { width: 1920, height: 800 },\n    },\n  },\n]\n\n/**\n * See https://playwright.dev/docs/test-configuration.\n */\nexport default defineConfig({\n  /* Run tests in files in parallel */\n  fullyParallel: true,\n  /* Fail the build on CI if you accidentally left test.only in the source code. */\n  forbidOnly: !!process.env.CI,\n  /* Retry on CI only */\n  // retries: process.env.CI ? 2 : 0,\n  /* Opt out of parallel tests on CI. */\n  // workers: process.env.CI ? 1 : undefined,\n  /* Reporter to use. See https://playwright.dev/docs/test-reporters */\n  reporter: 'html',\n\n  /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */\n  use: {\n    /* Base URL to use in actions like `await page.goto('/')`. */\n    baseURL: process.env.E2E_BASE_URL ?? 'http://localhost:3000',\n\n    /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */\n    trace: 'on-first-retry',\n  },\n\n  /* Configure projects for major browsers */\n  projects: [\n    // We balance the number of breakpoints.\n\n    ...projectsChromium,\n    ...projectsWebKit,\n    ...projectsSafari,\n    ...projectsFirefox,\n  ],\n\n  snapshotPathTemplate: '__screenshots__/{projectName}/{testFilePath}/{testName}{ext}',\n\n  expect: {\n    timeout: process.env.CI ? 10_000 : 5_000,\n    // toHaveScreenshot: {\n    // maxDiffPixelRatio: 0.02,\n    // },\n  },\n})\n"
  },
  {
    "path": "e2e/stubs/index.ts",
    "content": "import { getProjectsStub } from './projects'\nimport { getUsersStub } from './users'\n\nexport { getProjectsStub, getUsersStub }\n"
  },
  {
    "path": "e2e/stubs/projects.ts",
    "content": "export const getProjectsStub = () => [\n  {\n    id: 'bd25e86b-4330-4c1e-bb53-0cea27a04a0f',\n    project_name: 'nxn',\n    project_owner: '232e68af-7273-40e2-8c05-105077bc5813',\n    team: ['f2a79978-aac3-499d-9fe0-c5abd0b7d195'],\n    status: 'in progress',\n    created_at: '2025-08-06T18:40:56.509144',\n    updated_at: null,\n  },\n  {\n    id: 'fcd516a7-203b-4f78-855e-5d1e1d1620c2',\n    project_name: 'A',\n    project_owner: '232e68af-7273-40e2-8c05-105077bc5813',\n    team: [\n      '3d613cac-fea4-46a1-8c76-31b932a6b62f',\n      'f2a79978-aac3-499d-9fe0-c5abd0b7d195',\n      '76566f6b-780b-4aa9-b5e5-ebae713c486e',\n    ],\n    status: 'in progress',\n    created_at: '2025-08-06T14:20:19.463354',\n    updated_at: null,\n  },\n]\n"
  },
  {
    "path": "e2e/stubs/users.ts",
    "content": "export const getUsersStub = () => [\n  {\n    id: '120feece-1484-417f-80cc-9012bbf67753',\n    email: 'dddaaa@email.com',\n    fullname: 'Dddd',\n    username: 'aaa',\n    role: 'owner',\n    projects: ['bd25e86b-4330-4c1e-bb53-0cea27a04a0f', 'fcd516a7-203b-4f78-855e-5d1e1d1620c2'],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-08-06T18:43:50.158982',\n    updated_at: '2025-08-06T18:43:58.789814',\n  },\n  {\n    id: '232e68af-7273-40e2-8c05-105077bc5813',\n    email: 'new@gmail.com',\n    fullname: 'new',\n    username: 'new',\n    role: 'admin',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: 'dsada',\n    created_at: '2025-08-06T05:37:13.803107',\n    updated_at: '2025-08-06T13:21:07.140781',\n  },\n  {\n    id: '23524da7-faf4-4435-9c75-bd25d23fa5fc',\n    email: 'ZXZ@gamial.com',\n    fullname: 'zXZ',\n    username: 'sadas',\n    role: 'user',\n    projects: [],\n    active: false,\n    avatar: '',\n    notes: 'zxzz',\n    created_at: '2025-07-14T19:24:17.688488',\n    updated_at: '2025-07-17T14:20:23.969589',\n  },\n  {\n    id: 'f1c3dcc0-b6a8-4d7d-a887-a988c5fc08be',\n    email: 'kim52@example.com',\n    fullname: 'Amy Avila',\n    username: 'Amy Avila',\n    role: 'user',\n    projects: [],\n    active: false,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:54:39.732775',\n    updated_at: '2025-07-07T11:46:19.24038',\n  },\n  {\n    id: '0696e6f6-6ad2-4a52-8ec5-108172b9f613',\n    email: 'dylanwilliams@example.org',\n    fullname: 'Randy Ellis',\n    username: 'Randy Ellis',\n    role: 'admin',\n    projects: [],\n    active: false,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:53:45.174',\n    updated_at: '2025-07-24T08:24:33.091025',\n  },\n  {\n    id: '58d3d0d5-96d9-47c6-a21d-8b3d3ae52506',\n    email: 'allendominique@example.com',\n    fullname: 'Todd Carpenter',\n    username: 'Todd Carpenter',\n    role: 'user',\n    projects: ['b43934c2-1025-44e5-9ec1-e550fb0e5923', '24fd64f3-8faf-4f85-bdea-6dcbaf4e265b'],\n    active: false,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:52:50.195688',\n    updated_at: '2025-07-29T07:51:34.564706',\n  },\n  {\n    id: '1b519289-543c-4e46-8bc3-83722caf0338',\n    email: 'wilsonjay@example.com',\n    fullname: 'James Harvey',\n    username: 'James Harvey',\n    role: 'user',\n    projects: [\n      '0be37d30-1fdb-4d42-b58a-14c99aaaa77a',\n      'f8002cfd-5b18-4e07-9d18-b8cb5dd99f58',\n      'abf480ca-f7ef-4e30-870b-94df6ea8198b',\n    ],\n    active: false,\n    avatar: '',\n    notes: 'aaa',\n    created_at: '2025-07-05T13:52:21.089963',\n    updated_at: '2025-08-04T15:00:21.080954',\n  },\n  {\n    id: 'f2a79978-aac3-499d-9fe0-c5abd0b7d195',\n    email: 'elizabeth64@example.com',\n    fullname: 'David Green',\n    username: 'David Green',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:52:10.353433',\n    updated_at: null,\n  },\n  {\n    id: '54ac5b62-0340-477c-8df7-26c096f3f58a',\n    email: 'james77@example.com',\n    fullname: 'Christopher Simon',\n    username: 'Christopher Simon',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:51:58.459987',\n    updated_at: null,\n  },\n  {\n    id: '76566f6b-780b-4aa9-b5e5-ebae713c486e',\n    email: 'sheilabarry@example.com',\n    fullname: 'Amanda Prince',\n    username: 'Amanda Prince',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:51:51.763316',\n    updated_at: null,\n  },\n  {\n    id: '7174de13-675c-4b8d-b4ae-95230f9ea2f1',\n    email: 'elizabeth94@example.org',\n    fullname: 'Robert Roberts',\n    username: 'Robert Roberts',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:51:48.141006',\n    updated_at: null,\n  },\n  {\n    id: 'e0cfcd3f-8db2-4af1-a18e-d66dc5affcc1',\n    email: 'david43@example.org',\n    fullname: 'Benjamin Hurley',\n    username: 'Benjamin Hurley',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:51:43.993791',\n    updated_at: null,\n  },\n  {\n    id: 'bd1ca921-1c21-4165-bab0-25841bd3a98c',\n    email: 'seanthornton@example.com',\n    fullname: 'Nancy Mann',\n    username: 'Nancy Mann',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:51:41.068249',\n    updated_at: null,\n  },\n  {\n    id: '1d9e0878-aea4-4937-b439-fc5f324dde85',\n    email: 'claytoncatherine@example.org',\n    fullname: 'Todd Adams',\n    username: 'Todd Adams',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:51:36.547494',\n    updated_at: null,\n  },\n  {\n    id: '9c80038b-bb28-4d50-aea2-c068a7972cf1',\n    email: 'singhleslie@example.net',\n    fullname: 'Jeremy Thomas',\n    username: 'Jeremy Thomas',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:51:29.627917',\n    updated_at: null,\n  },\n  {\n    id: 'f95f6ee7-b308-4dcd-aa6c-e71ff076b8bb',\n    email: 'hamiltonmaria@example.net',\n    fullname: 'Christine Winters',\n    username: 'Christine Winters',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:51:26.169697',\n    updated_at: null,\n  },\n  {\n    id: 'c28e2798-f29c-4554-815b-6285695c901a',\n    email: 'natalie50@example.net',\n    fullname: 'Chad Simmons',\n    username: 'Chad Simmons',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:51:23.403471',\n    updated_at: null,\n  },\n  {\n    id: '42b2b763-913a-47f6-991c-904756871bd0',\n    email: 'jasmine30@example.net',\n    fullname: 'Kaitlyn Campbell',\n    username: 'Kaitlyn Campbell',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:51:19.111898',\n    updated_at: null,\n  },\n  {\n    id: '590a99cd-da7b-4f09-89df-db331b09bb72',\n    email: 'yadams@example.com',\n    fullname: 'Richard Morgan',\n    username: 'Richard Morgan',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:51:13.15227',\n    updated_at: null,\n  },\n  {\n    id: 'fce120dc-cb23-49b7-966b-6e9d24399370',\n    email: 'kelly12@example.org',\n    fullname: 'Mark Jackson',\n    username: 'Mark Jackson',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:51:08.86113',\n    updated_at: null,\n  },\n  {\n    id: 'c9dd68ff-dada-48fc-9366-4ecad86d8c8b',\n    email: 'iserrano@example.net',\n    fullname: 'Megan Campbell',\n    username: 'Megan Campbell',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:51:04.994443',\n    updated_at: null,\n  },\n  {\n    id: 'f5904878-5ead-4aeb-a11a-3ba3f8dedf23',\n    email: 'albertgrant@example.net',\n    fullname: 'Johnny Hogan Jr.',\n    username: 'Johnny Hogan Jr.',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:51:00.63685',\n    updated_at: null,\n  },\n  {\n    id: '6e725ed5-4646-413c-9398-adc2fd5a3b90',\n    email: 'justinrivera@example.org',\n    fullname: 'Christopher Wolfe',\n    username: 'Christopher Wolfe',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:50:50.622951',\n    updated_at: null,\n  },\n  {\n    id: 'da829ef4-8561-4cb6-963e-4026b83fc0c9',\n    email: 'dmoore@example.com',\n    fullname: 'Charles Valentine',\n    username: 'Charles Valentine',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:50:47.536161',\n    updated_at: null,\n  },\n  {\n    id: 'a97daf98-d7a8-4528-af20-907f921c3ef1',\n    email: 'jessicanolan@example.com',\n    fullname: 'Karen Abbott',\n    username: 'Karen Abbott',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:50:38.762764',\n    updated_at: null,\n  },\n  {\n    id: 'a8c10bd1-b9d5-4dc7-ad8f-e4fc46e6dc76',\n    email: 'wvazquez@example.org',\n    fullname: 'Kristen Pearson',\n    username: 'Kristen Pearson',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:50:35.313072',\n    updated_at: null,\n  },\n  {\n    id: '7eff325e-c272-4aa0-8600-1b06e660764f',\n    email: 'zacharywaters@example.com',\n    fullname: 'Leon Montoya',\n    username: 'Leon Montoya',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:50:32.006549',\n    updated_at: null,\n  },\n  {\n    id: 'a03fb461-eed9-423c-95e8-fa3c588609c2',\n    email: 'ocarey@example.com',\n    fullname: 'Jack Scott',\n    username: 'Jack Scott',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:50:27.671787',\n    updated_at: null,\n  },\n  {\n    id: 'a2906eb3-bb60-41f8-bcf5-39e7bdf09591',\n    email: 'danielrose@example.net',\n    fullname: 'Danielle Nelson',\n    username: 'Danielle Nelson',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:50:19.623103',\n    updated_at: null,\n  },\n  {\n    id: 'ddc60b59-fd97-47f3-aa6f-fc9df75e96de',\n    email: 'rshelton@example.com',\n    fullname: 'Michael Soto',\n    username: 'Michael Soto',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:50:15.646614',\n    updated_at: null,\n  },\n  {\n    id: 'db30472a-3f95-4abd-8039-842e5c2be055',\n    email: 'usmith@example.net',\n    fullname: 'Roger Richardson',\n    username: 'Roger Richardson',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:50:11.33142',\n    updated_at: null,\n  },\n  {\n    id: '4b20e1bf-000f-45f3-a61e-aa0290276352',\n    email: 'bautistajackson@example.net',\n    fullname: 'Carrie Rios',\n    username: 'Carrie Rios',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:50:07.13715',\n    updated_at: null,\n  },\n  {\n    id: '1d8b60e5-4aeb-4b6c-b8ca-50eb61db5384',\n    email: 'paulacollins@example.com',\n    fullname: 'Brianna Clark',\n    username: 'Brianna Clark',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:50:03.561321',\n    updated_at: null,\n  },\n  {\n    id: '421c0730-6b69-469f-8c39-615858bae662',\n    email: 'daughertyjustin@example.org',\n    fullname: 'Katherine Medina',\n    username: 'Katherine Medina',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:49:59.872742',\n    updated_at: null,\n  },\n  {\n    id: '9a4f6fc9-d311-4e2d-a172-d24c352fd084',\n    email: 'ortizandrew@example.com',\n    fullname: 'Jessica Werner',\n    username: 'Jessica Werner',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:49:55.376772',\n    updated_at: null,\n  },\n  {\n    id: '099114a9-31a7-4e01-bc33-8e0acb9cf8cc',\n    email: 'annaanderson@example.org',\n    fullname: 'Dr. Jennifer Flowers',\n    username: 'Dr. Jennifer Flowers',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:49:50.886741',\n    updated_at: null,\n  },\n  {\n    id: '219617b4-9cb5-452e-8641-74f7e9694bf1',\n    email: 'vmaldonado@example.org',\n    fullname: 'Alicia Taylor',\n    username: 'Alicia Taylor',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:49:48.043751',\n    updated_at: null,\n  },\n  {\n    id: 'dc02f632-1395-4996-a081-ba2cbd1321ee',\n    email: 'danielle12@example.com',\n    fullname: 'Edward Vasquez',\n    username: 'Edward Vasquez',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:49:40.782005',\n    updated_at: null,\n  },\n  {\n    id: 'aac1e629-6278-4a9e-9c1a-0fdea2c494f0',\n    email: 'rgross@example.net',\n    fullname: 'Dr. Bailey Boyle',\n    username: 'Dr. Bailey Boyle',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:49:36.612685',\n    updated_at: null,\n  },\n  {\n    id: '1f3f4729-7e7f-4df2-847f-ae7e3456ecf0',\n    email: 'marybrown@example.com',\n    fullname: 'Warren Shelton',\n    username: 'Warren Shelton',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:49:33.683346',\n    updated_at: null,\n  },\n  {\n    id: '10aee355-9a59-490c-a713-5a561228faf8',\n    email: 'matthewmarquez@example.com',\n    fullname: 'Joshua Marshall',\n    username: 'Joshua Marshall',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:49:31.101564',\n    updated_at: null,\n  },\n  {\n    id: '4bfd116f-c99c-4bc1-b8ef-f5c93a586324',\n    email: 'crystalwoodward@example.org',\n    fullname: 'Joanne Jenkins',\n    username: 'Joanne Jenkins',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:49:26.496752',\n    updated_at: null,\n  },\n  {\n    id: '48d3798f-b78b-402a-8818-dbdb993f4640',\n    email: 'nathanperez@example.org',\n    fullname: 'Ashley Harris',\n    username: 'Ashley Harris',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:49:23.576774',\n    updated_at: null,\n  },\n  {\n    id: '31a875c7-95ca-478a-ab3f-b75f89be778f',\n    email: 'burkekatherine@example.net',\n    fullname: 'Deborah Mitchell',\n    username: 'Deborah Mitchell',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:49:19.433055',\n    updated_at: null,\n  },\n  {\n    id: 'c7ee677b-0e66-493a-a416-d584e46e8679',\n    email: 'starktracy@example.com',\n    fullname: 'James Hicks',\n    username: 'James Hicks',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:49:16.501063',\n    updated_at: null,\n  },\n  {\n    id: 'f8e192b8-9831-4dfa-a9f6-b2a68cf11d13',\n    email: 'kendrahebert@example.org',\n    fullname: 'Terry Allen',\n    username: 'Terry Allen',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:49:13.684865',\n    updated_at: null,\n  },\n  {\n    id: 'e19d39e6-6be6-406e-837d-9a433b877262',\n    email: 'aaron71@example.com',\n    fullname: 'Brittany Bass',\n    username: 'Brittany Bass',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:49:10.395335',\n    updated_at: null,\n  },\n  {\n    id: 'ab710b9e-27c9-4a11-b982-f9b316e7862c',\n    email: 'desireebrewer@example.net',\n    fullname: 'Kathryn Moore',\n    username: 'Kathryn Moore',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:49:07.227766',\n    updated_at: null,\n  },\n  {\n    id: 'a940376b-0d00-4739-9c35-4eb97e67f469',\n    email: 'vasquezjennifer@example.com',\n    fullname: 'Zachary Duran',\n    username: 'Zachary Duran',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:49:03.273903',\n    updated_at: null,\n  },\n  {\n    id: '9b749656-5282-447b-84d1-53d989a2337f',\n    email: 'jenniferthompson@example.net',\n    fullname: 'Billy Olsen',\n    username: 'Billy Olsen',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:48:59.475426',\n    updated_at: null,\n  },\n  {\n    id: '66c5af3b-1b25-46ca-abe2-d3c7f6106d3f',\n    email: 'walkercharles@example.org',\n    fullname: 'Albert Taylor',\n    username: 'Albert Taylor',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:48:56.356589',\n    updated_at: null,\n  },\n  {\n    id: '74a3aa73-0b70-436c-a3c7-083544164db3',\n    email: 'williamschristina@example.org',\n    fullname: 'Megan Holland',\n    username: 'Megan Holland',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:48:52.907923',\n    updated_at: null,\n  },\n  {\n    id: '02cc847a-918d-4f99-89af-4ed7ca75b71a',\n    email: 'marymartinez@example.org',\n    fullname: 'Crystal Chen',\n    username: 'Crystal Chen',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:48:49.815571',\n    updated_at: null,\n  },\n  {\n    id: '16182908-40af-4b5c-a51a-20624506fb15',\n    email: 'l@google.com',\n    fullname: 'l',\n    username: 'l',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:37:45.605808',\n    updated_at: null,\n  },\n  {\n    id: 'e94d7c35-df2c-469c-bfa7-415d74c029d6',\n    email: 'k@google.com',\n    fullname: 'k',\n    username: 'k',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:28:13.818783',\n    updated_at: null,\n  },\n  {\n    id: '26306668-dd17-4f74-a9f5-059288ce0afa',\n    email: 'j@google.com',\n    fullname: 'j',\n    username: 'j',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:28:05.24718',\n    updated_at: null,\n  },\n  {\n    id: '8bab6957-fe08-4174-ab8c-5ef7e00e48bd',\n    email: 'i@google.com',\n    fullname: 'i',\n    username: 'i',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T13:27:58.374866',\n    updated_at: null,\n  },\n  {\n    id: '5c309e30-c12a-4c41-a69a-d8bb98b40c20',\n    email: 'h@google.com',\n    fullname: 'h',\n    username: 'h',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T09:40:51.682894',\n    updated_at: null,\n  },\n  {\n    id: '79aaa655-7cd3-4bbb-ae62-c81eb71db1d5',\n    email: 'g@google.com',\n    fullname: 'g',\n    username: 'g',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T09:40:44.763892',\n    updated_at: null,\n  },\n  {\n    id: '7bb05e71-dcc6-4d9b-bbea-ea98984f33e5',\n    email: 'f@google.com',\n    fullname: 'f',\n    username: 'f',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T09:40:40.129946',\n    updated_at: null,\n  },\n  {\n    id: 'cd92699a-370d-4c91-811e-672b41c79333',\n    email: 'e@google.com',\n    fullname: 'e',\n    username: 'e',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T09:40:36.322122',\n    updated_at: null,\n  },\n  {\n    id: '44c77503-030b-44ce-8384-800dbea62725',\n    email: 'd@google.com',\n    fullname: 'd',\n    username: 'd',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T09:40:31.868109',\n    updated_at: null,\n  },\n  {\n    id: '9007c141-d033-49c2-ba7f-2856bc61cde8',\n    email: 'c@google.com',\n    fullname: 'c',\n    username: 'c',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T09:40:28.120347',\n    updated_at: null,\n  },\n  {\n    id: '9a64f120-ea68-421a-8921-d2d1db070bb4',\n    email: 'b@google.com',\n    fullname: 'b',\n    username: 'b',\n    role: 'user',\n    projects: [],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T09:40:24.214502',\n    updated_at: null,\n  },\n  {\n    id: '8a43e5a7-4882-4c50-94f5-44c47aa66d44',\n    email: 'a@google.com',\n    fullname: 'a',\n    username: 'a',\n    role: 'user',\n    projects: ['87014f12-e25f-49e9-b61b-2e1409026ec4'],\n    active: true,\n    avatar: '',\n    notes: '',\n    created_at: '2025-07-05T09:39:54.345229',\n    updated_at: '2025-07-05T13:27:25.402822',\n  },\n]\n"
  },
  {
    "path": "e2e/tests/vuestic-admin.spec.ts",
    "content": "import { test } from '@playwright/test'\n\nimport { testApiMocksPage } from '../utils'\n\nimport { getProjectsStub, getUsersStub } from '../stubs'\n\nconst pageMocks: {\n  name: string\n  url: string\n  apiMocks?: Record<string, object>\n}[] = [\n  {\n    name: 'Dashboard',\n    url: '/dashboard',\n  },\n  {\n    name: 'Settings',\n    url: '/settings',\n  },\n  {\n    name: 'Preferences',\n    url: '/preferences',\n  },\n  {\n    name: 'Users',\n    url: '/users',\n    apiMocks: {\n      '/projects': getProjectsStub,\n      '/users': getUsersStub,\n    },\n  },\n  {\n    name: 'Projects',\n    url: '/projects',\n    apiMocks: {\n      '/projects': getProjectsStub,\n      '/users': getUsersStub,\n    },\n  },\n  {\n    name: 'Payments',\n    url: '/payments',\n  },\n  {\n    name: 'Payment Methods',\n    url: '/payments/payment-methods',\n  },\n  {\n    name: 'Billing',\n    url: '/payments/billing',\n  },\n  {\n    name: 'Pricing Plans',\n    url: '/payments/pricing-plans',\n  },\n  {\n    name: 'FAQ',\n    url: '/faq',\n  },\n  {\n    name: 'Auth',\n    url: '/auth',\n  },\n  {\n    name: 'Login',\n    url: '/auth/login',\n  },\n  {\n    name: 'Sign Up',\n    url: '/auth/signup',\n  },\n  {\n    name: 'Recover Password',\n    url: '/auth/recover-password',\n  },\n  {\n    name: 'Recover Password Email',\n    url: '/auth/recover-password-email',\n  },\n  {\n    name: '404',\n    url: '/404',\n  },\n]\n\nfor (const item of pageMocks) {\n  test(item.name, async ({ page }) => {\n    await testApiMocksPage({\n      page,\n      ...item,\n    })\n  })\n}\n"
  },
  {
    "path": "e2e/utils/index.ts",
    "content": "import { expect } from '@playwright/test'\nimport type { Page } from 'playwright-core'\n\nexport const testApiMocksPage = async (config: { page: Page; url: string; apiMocks?: Record<string, object> }) => {\n  const { page, url, apiMocks } = config\n\n  if (apiMocks && Object.keys(apiMocks).length > 0) {\n    for (const [routeShort, mockResponse] of Object.entries(apiMocks)) {\n      await page.route(`*/**/${routeShort}`, async (route) => {\n        await route.fulfill({ json: mockResponse })\n      })\n    }\n  }\n\n  await page.goto(url, { waitUntil: 'networkidle' })\n\n  await page.waitForSelector('#app', { state: 'visible' })\n\n  await expect(page).toHaveScreenshot({ fullPage: true })\n}\n"
  },
  {
    "path": "index.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"UTF-8\" />\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n    <link href=\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\" rel=\"stylesheet\" />\n    <link href=\"https://fonts.googleapis.com/icon?family=Material+Icons\" rel=\"stylesheet\" />\n    <link\n      rel=\"stylesheet\"\n      href=\"https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,300..600,0,0\"\n    />\n    <link rel=\"icon\" href=\"/favicon.ico\" />\n\n    <title>Vuestic Admin</title>\n\n    <style>\n      /* Set vuestic higher priority over tailwind normalize css */\n      @layer tailwind.base, vuestic;\n    </style>\n  </head>\n  <body>\n    <div id=\"app\"></div>\n    <script type=\"module\" src=\"/src/main.ts\"></script>\n  </body>\n</html>\n"
  },
  {
    "path": "netlify.toml",
    "content": "[build]\npublish = \"dist\"\n\n# Default build command.\ncommand = \"yarn build:ci\"\n\n[[redirects]]\nfrom = \"/*\"\nto = \"/index.html\"\nstatus = 200\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"vuestic-admin\",\n  \"private\": true,\n  \"version\": \"3.1.0\",\n  \"type\": \"module\",\n  \"workspaces\": [\n    \"e2e\"\n  ],\n  \"scripts\": {\n    \"prepare\": \"husky install\",\n    \"dev\": \"vite\",\n    \"build\": \"npm run lint && vue-tsc --noEmit && vite build\",\n    \"build:ci\": \"vite build\",\n    \"start:ci\": \"serve -s ./dist\",\n    \"prelint\": \"npm run format\",\n    \"lint\": \"eslint \\\"./src/**/*.{ts,js,vue}\\\" --fix\",\n    \"format\": \"prettier --write .\",\n    \"preview\": \"vite preview\",\n    \"storybook\": \"storybook dev -p 6006\",\n    \"build-storybook\": \"storybook build\",\n    \"e2e\": \"yarn workspace e2e test\",\n    \"e2e:update-snapshots\": \"yarn workspace e2e update\"\n  },\n  \"lint-staged\": {\n    \"./src/**/*.{ts,js,vue}\": [\n      \"npm run lint\"\n    ]\n  },\n  \"dependencies\": {\n    \"@gtm-support/vue-gtm\": \"^2.0.0\",\n    \"@vuestic/compiler\": \"0.2.9\",\n    \"@vuestic/tailwind\": \"^0.1.3\",\n    \"@vueuse/core\": \"^10.6.1\",\n    \"chart.js\": \"^4.4.1\",\n    \"chartjs-chart-geo\": \"^4.2.8\",\n    \"epic-spinners\": \"^2.0.0\",\n    \"flag-icons\": \"^6.15.0\",\n    \"ionicons\": \"^4.6.3\",\n    \"medium-editor\": \"^5.23.3\",\n    \"pinia\": \"^2.1.7\",\n    \"register-service-worker\": \"^1.7.1\",\n    \"sass\": \"^1.69.5\",\n    \"serve\": \"^14.2.1\",\n    \"uuid\": \"^11.0.3\",\n    \"vue\": \"3.5.8\",\n    \"vue-chartjs\": \"^5.3.0\",\n    \"vue-i18n\": \"^9.6.2\",\n    \"vue-router\": \"^4.2.5\",\n    \"vuestic-ui\": \"^1.10.2\"\n  },\n  \"devDependencies\": {\n    \"@intlify/unplugin-vue-i18n\": \"^1.5.0\",\n    \"@storybook/addon-essentials\": \"^7.4.6\",\n    \"@storybook/addon-interactions\": \"^7.4.6\",\n    \"@storybook/addon-links\": \"^7.4.6\",\n    \"@storybook/blocks\": \"^7.4.6\",\n    \"@storybook/testing-library\": \"^0.2.2\",\n    \"@storybook/vue3\": \"^7.4.6\",\n    \"@storybook/vue3-vite\": \"^7.4.6\",\n    \"@types/medium-editor\": \"^5.0.5\",\n    \"@types/node\": \"^20.9.0\",\n    \"@typescript-eslint/eslint-plugin\": \"^6.11.0\",\n    \"@typescript-eslint/parser\": \"^6.11.0\",\n    \"@vitejs/plugin-vue\": \"^5.2.1\",\n    \"@vue/eslint-config-prettier\": \"^8.0.0\",\n    \"@vue/eslint-config-typescript\": \"^12.0.0\",\n    \"autoprefixer\": \"^10.4.13\",\n    \"eslint\": \"^8.13.0\",\n    \"eslint-plugin-prettier\": \"^5.0.1\",\n    \"eslint-plugin-storybook\": \"^0.6.15\",\n    \"eslint-plugin-vue\": \"^9.18.1\",\n    \"husky\": \"^8.0.1\",\n    \"lint-staged\": \"^15.1.0\",\n    \"postcss\": \"^8.4.21\",\n    \"prettier\": \"^3.1.0\",\n    \"storybook\": \"^7.4.6\",\n    \"tailwindcss\": \"^3.4.0\",\n    \"typescript\": \"^5.2.2\",\n    \"vite\": \"^5.4.9\",\n    \"vue-eslint-parser\": \"^9.3.2\",\n    \"vue-tsc\": \"^2.1.6\"\n  },\n  \"packageManager\": \"yarn@4.9.2\"\n}\n"
  },
  {
    "path": "postcss.config.js",
    "content": "export default {\n  plugins: {\n    tailwindcss: {},\n    autoprefixer: {},\n  },\n}\n"
  },
  {
    "path": "public/site.webmanifest",
    "content": "{\"name\":\"\",\"short_name\":\"\",\"icons\":[{\"src\":\"/android-chrome-192x192.png\",\"sizes\":\"192x192\",\"type\":\"image/png\"},{\"src\":\"/android-chrome-512x512.png\",\"sizes\":\"512x512\",\"type\":\"image/png\"}],\"theme_color\":\"#ffffff\",\"background_color\":\"#ffffff\",\"display\":\"standalone\"}"
  },
  {
    "path": "src/App.vue",
    "content": "<template>\n  <RouterView />\n</template>\n\n<style lang=\"scss\">\n#app {\n  font-family: 'Inter', Avenir, Helvetica, Arial, sans-serif;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\nbody {\n  margin: 0;\n  min-width: 20rem;\n}\n</style>\n"
  },
  {
    "path": "src/components/NotFoundImage.vue",
    "content": "<template>\n  <svg fill=\"none\" height=\"200\" viewBox=\"0 0 200 200\" width=\"200\" xmlns=\"http://www.w3.org/2000/svg\">\n    <path\n      clip-rule=\"evenodd\"\n      d=\"M141.03 63.87c2.58-3.14 5.5-6.4 7.4-8.46l-1.4-1.3a215.73 215.73 0 0 0-7.47 8.55 90.25 90.25 0 0 0-3.51 4.5 17.33 17.33 0 0 0-2.08 3.46l1.79.67c.23-.63.87-1.68 1.83-3.02a87.85 87.85 0 0 1 3.44-4.4ZM94.82 51.4c2-2.4 4.27-4.9 5.74-6.46l-1.39-1.3a166.85 166.85 0 0 0-5.81 6.53 69.06 69.06 0 0 0-2.74 3.46 13.4 13.4 0 0 0-1.65 2.7l1.78.68c.18-.45.65-1.23 1.4-2.26.73-1 1.66-2.16 2.67-3.35Z\"\n      fill=\"var(--va-danger)\"\n      fill-rule=\"evenodd\"\n    />\n    <path\n      clip-rule=\"evenodd\"\n      d=\"M140.87 63.63a82.26 82.26 0 0 1 6.96 4.97l1.2-1.48a84.18 84.18 0 0 0-7.13-5.1c-2.88-1.83-6.02-3.6-8.41-4.36l-.58 1.82c2.13.67 5.1 2.32 7.96 4.15ZM94.05 50.65c1.9 1.73 3.85 3.5 5.14 4.79l1.35-1.35a165.6 165.6 0 0 0-5.49-5.1c-1.81-1.65-3.51-3.19-4.51-4.19l-1.35 1.35c1.04 1.03 2.77 2.6 4.56 4.23l.3.27ZM116 88.33l.15.28c.65 1.2 1.19 2.47 1.72 3.78l.16.38c.48 1.18.97 2.38 1.56 3.55.12.24.25.5.4.7.14.22.33.44.58.6.59.38 1.23.28 1.85-.03a20.32 20.32 0 0 0 3.98-2.82c1.14-.96 2.22-1.86 3.45-2.52a.72.72 0 0 0-.68-1.26c-1.36.74-2.54 1.72-3.65 2.65l-.15.13c-1.18.98-2.3 1.9-3.59 2.54-.2.1-.32.12-.37.13-.04 0-.05 0-.06-.02a.72.72 0 0 1-.18-.2c-.1-.13-.19-.3-.3-.54a50.44 50.44 0 0 1-1.67-3.83 39.3 39.3 0 0 0-1.8-3.93l-.14-.25c-.37-.69-.92-1.72-1.6-2.43-.39-.42-.9-.8-1.51-.93a2.25 2.25 0 0 0-1.92.59c-.62.52-1.22 1.09-1.8 1.64l-.66.62c-.8.75-1.6 1.44-2.46 2-1.4.9-2.66.83-3.86.3-1.26-.57-2.45-1.66-3.62-2.83l-.05-.05c-.44-.44-.84-.84-1.22-1.16-.38-.32-.8-.6-1.27-.73-1.03-.29-1.96.24-2.99 1.15-.15.13-.3.32-.45.5l-.5.67-.26.38-.9 1.24c-.42.55-.81 1.02-1.14 1.32-.15.13-.25.2-.32.24A18.4 18.4 0 0 1 86.39 87l-.17-.17a6.66 6.66 0 0 0-.82-.75c-.27-.2-.7-.46-1.2-.4-.6.08-.95.53-1.14 1.02a234.7 234.7 0 0 0-1.76 5.34l-.02.07v.13a.72.72 0 0 0 1.41.11 7.87 7.87 0 0 1 .2-.65 230.75 230.75 0 0 1 1.53-4.56l.14.1a5.35 5.35 0 0 1 .76.72 19.49 19.49 0 0 0 4.9 3.57c.38.19.77.1 1.04-.01.27-.12.52-.3.74-.5.44-.4.9-.96 1.33-1.52a112.24 112.24 0 0 1 1.65-2.28c.14-.18.23-.28.27-.31.99-.88 1.4-.92 1.66-.84.18.05.4.17.74.45.32.27.68.64 1.16 1.1v.02c1.17 1.17 2.53 2.43 4.06 3.12a5.2 5.2 0 0 0 5.2-.4c.99-.63 1.86-1.4 2.67-2.15l.7-.66c.57-.55 1.13-1.07 1.7-1.56.35-.29.58-.3.73-.27.2.04.46.18.76.5.53.56.99 1.4 1.37 2.11Zm-31.53-1.27v.01ZM82 91.5Z\"\n      fill=\"var(--va-danger)\"\n      fill-rule=\"evenodd\"\n    />\n    <path\n      d=\"M128.72 17.58c10.44 3.5 21.51 8.9 29.59 16.56 8.1 7.69 14.21 17.09 17.58 26.53 3.38 9.44 3.99 18.86 1.2 26.64-1.36 3.8-4.73 7.68-9.2 11.44-4.47 3.74-9.94 7.28-15.4 10.42a234.47 234.47 0 0 1-15.23 7.92c-1.98.95-3.75 1.77-5.2 2.44-1.69.8-2.94 1.38-3.55 1.7-2.26 1.22-4.55 2.82-6.13 5.04a11.17 11.17 0 0 0-1.82 8.65c.45 2.74 2.96 12.33 5.88 23.12 2.93 10.82 6.3 22.94 8.51 30.79l1.55-.44a3483.9 3483.9 0 0 1-10.24-37.22c3.95.12 12.67.68 24.49 2.3 8.19 1.12 15.55 5.5 21.35 10.1a96.82 96.82 0 0 1 9.54 8.8c-1.56 2.16-2.97 5.26-3.96 9.6l1.56.35c.92-4.05 2.19-6.86 3.52-8.78l1.12 1.13c.92.89 1.69 1.5 2.34 1.82.66.33 1.37.46 2 .1.57-.33.84-.94 1-1.43.17-.53.28-1.15.38-1.73l-1.58-.28c-.1.61-.2 1.12-.33 1.52-.13.42-.25.52-.27.53h-.06c-.07 0-.2-.03-.42-.14a8.85 8.85 0 0 1-1.94-1.54c-.33-.32-.74-.74-1.24-1.26 2.27-2.52 4.56-2.84 5.66-2.6l.34-1.57c-1.82-.4-4.57.22-7.1 3.02a98.22 98.22 0 0 0-9.57-8.8c-5.9-4.68-13.53-9.26-22.13-10.44-12.34-1.69-21.34-2.23-25.13-2.31-1.92-7.24-3.37-12.95-3.7-14.9a9.57 9.57 0 0 1 1.56-7.46c1.37-1.93 3.41-3.39 5.58-4.56.58-.3 1.75-.85 3.38-1.6v-.01c1.44-.67 3.24-1.5 5.3-2.5 4.36-2.08 9.82-4.81 15.33-7.97 5.5-3.16 11.07-6.76 15.63-10.58 4.55-3.82 8.18-7.93 9.69-12.13 2.95-8.23 2.26-18.05-1.2-27.72-3.46-9.7-9.71-19.3-18-27.15-8.3-7.88-19.61-13.39-30.17-16.92-10.55-3.52-20.44-5.11-25.98-5.1-11.24 0-18.88 8.25-20.84 10.89-.4.54-.98 1.23-1.68 2.07l-.3.35c-.83.99-1.78 2.14-2.73 3.4-1.9 2.5-3.82 5.51-4.71 8.66-.88 3.08-2.13 12.09-3.16 20.86-1.03 8.8-1.86 17.52-1.86 20.08 0 2.07-.08 5.83-.16 9.64a5654.21 5654.21 0 0 0-.16 8.35 45.88 45.88 0 0 0 .07 3.72V99c.1.98.3 2.93.67 5.07.42 2.4 1.1 5.16 2.17 7.06a7.85 7.85 0 0 0 1.49 1.7l.06.05c.5.49 1.05 1.02 1.61 1.67a13.02 13.02 0 0 1 3.1 6.26c.27 1.4.22 3.4-.06 5.69a68.08 68.08 0 0 1-1.34 7.17 74.77 74.77 0 0 1-2.99 10c-.15.3-.5 1.15-.98 2.4-.55-.32-1.2-.82-1.9-1.5a33.24 33.24 0 0 1-3.3-3.81 117.54 117.54 0 0 1-7.13-10.88 313.14 313.14 0 0 1-7.44-13.39l-.71-1.32a35.6 35.6 0 0 0-1.1-1.97c-2.35-3.53-9.53-5.24-21.71-8.09.75-.82.72-.91 1.65-1.9 2.44-2.02 6.48.36 6.96.84l.48-.95c-2.86-2.39-6.99-2.3-8.34-.96-2.14 2.15-.74 1-3.1 2.97-.7.6-1.89 1.5-2.45 1.85-.55.34-.95.5-1.21.53h-.04a9.43 9.43 0 0 1-2.81-1.94l-1.1 1c.46.46 1 .93 1.62 1.41.44.34.87.62 1.25.82.19.1.38.18.57.23.17.06.4.1.64.08a4.9 4.9 0 0 0 1.91-.76 18.02 18.02 0 0 0 2.75-2.1c10.54 2.34 19.25 4.34 21.6 7.86a36.64 36.64 0 0 1 1.3 2.37l.42.78 1.35 2.52c1.65 3.06 3.8 7 6.13 10.93 2.33 3.94 4.85 7.91 7.23 11.04a34.86 34.86 0 0 0 3.47 4c.81.78 1.63 1.42 2.43 1.84a531.4 531.4 0 0 0-4.68 12.65c-1.4 3.97-2.8 8.05-3.86 11.48a90.14 90.14 0 0 0-1.3 4.6c-.32 1.29-.54 2.38-.58 3.15l1.6.09c.04-.6.22-1.57.54-2.86.31-1.27.75-2.8 1.28-4.5 1.05-3.4 2.43-7.47 3.83-11.43 2.82-7.94 5.7-15.4 6.18-16.4.53-1.12 1.96-5.5 3.1-10.32a69.6 69.6 0 0 0 1.37-7.34c.28-2.33.36-4.53.04-6.19-1.41-4.31-1.86-5.26-5.36-8.96a6.58 6.58 0 0 1-1.08-1.2c-.93-1.64-1.56-4.16-1.98-6.55a67.1 67.1 0 0 1-.66-4.95l-.03-.35c-.04-.35-.05-1.5-.03-3.21a691.73 691.73 0 0 1 .16-8.33c.08-3.8.16-7.59.16-9.68 0-2.44.81-11.07 1.85-19.89 1.03-8.83 2.27-17.68 3.1-20.61.82-2.86 2.6-5.68 4.46-8.14a80.8 80.8 0 0 1 2.68-3.33l.3-.35a48.6 48.6 0 0 0 1.74-2.15c1.85-2.5 9.08-10.23 19.55-10.24 5.32-.01 15.03 1.53 25.47 5.02Z\"\n      fill=\"var(--va-danger)\"\n    />\n    <path\n      clip-rule=\"evenodd\"\n      d=\"M24.85 101.92c.46 1.39 1.12 2.63 1.6 3.36l1.6-1.03a13.9 13.9 0 0 1-1.4-2.94 6.75 6.75 0 0 1-.38-3.48l-1.86-.43a8.59 8.59 0 0 0 .44 4.52Z\"\n      fill=\"var(--va-danger)\"\n      fill-rule=\"evenodd\"\n    />\n  </svg>\n</template>\n"
  },
  {
    "path": "src/components/VuesticLogo.stories.ts",
    "content": "import VuesticLogo from './VuesticLogo.vue'\n\nexport default {\n  title: 'VuesticLogo',\n  component: VuesticLogo,\n  tags: ['autodocs'],\n}\n\nexport const Default = () => ({\n  components: { VuesticLogo },\n  template: `<VuesticLogo start=\"#6B7AFE\" end=\"#083CC6\" />`,\n})\n\nexport const White = () => ({\n  components: { VuesticLogo },\n  template: `<div class=\"bg-primary\">\n    <VuesticLogo start=\"#FFF\"/>\n  </div>`,\n})\n\nexport const Blue = () => ({\n  components: { VuesticLogo },\n  template: `<VuesticLogo start=\"#0E41C9\"/>`,\n})\n\nexport const Height = () => ({\n  components: { VuesticLogo },\n  template: `<VuesticLogo start=\"#6B7AFE\" end=\"#083CC6\" :height=\"48\"/>`,\n})\n"
  },
  {
    "path": "src/components/VuesticLogo.vue",
    "content": "<template>\n  <svg :height=\"height\" alt=\"Vuestic Admin\" fill=\"none\" viewBox=\"0 0 478 57\" xmlns=\"http://www.w3.org/2000/svg\">\n    <path\n      d=\"M18.2761 56.1386L0 13.3794H10.5519L18.8968 33.3107L27.2417 13.3794H37.7936L19.5175 56.1386H18.2761ZM62.4836 40.8281V13.3794H72.5527V39.3108C72.5527 44.8281 75.1734 46.7592 78.6907 46.7592C82.5528 46.7592 84.9666 44.8281 84.9666 39.3108V13.3794H95.1047V40.8281C95.1047 50.6213 87.7942 56.1386 78.6907 56.1386C69.2423 56.1386 62.4836 50.3454 62.4836 40.8281ZM122.415 54.7593V13.3794H149.795V22.3451H132.553V29.7935H148.485V38.6211H132.553V46.0695H150.554V54.7593H122.415ZM175.933 42.6212H185.795C185.795 45.035 187.727 46.9661 190.071 46.9661C192.623 46.9661 194.209 45.5178 194.209 43.3798C194.209 40.2763 190.14 39.3798 186.761 38.2074C179.795 35.7246 175.933 32.4831 175.933 25.3796C175.933 18.0692 182.209 12.0001 190.002 12.0001C199.175 12.0001 203.52 17.8623 204.072 25.5175H194.554C194.554 23.1727 193.106 21.2416 190.278 21.2416C188.071 21.2416 185.933 22.552 185.933 25.2417C185.933 28.3452 189.727 28.8969 193.244 29.9314C200.623 32.1383 204.072 36.2763 204.072 42.7591C204.072 50.0696 197.865 56.1386 190.071 56.1386C181.037 56.1386 175.933 50.0696 175.933 42.6212ZM236.442 54.7593V22.3451H227.2V13.3794H256.028V22.3451H246.649V54.7593H236.442ZM281.408 54.7593V13.3794H291.546V54.7593H281.408ZM317.502 34.0694C317.502 21.7244 326.812 12.0001 339.916 12.0001C347.778 12.0001 353.226 14.9657 357.64 19.5864L350.675 26.2072C347.778 23.3796 344.054 21.5865 339.916 21.5865C332.536 21.5865 327.778 27.1038 327.778 34.0694C327.778 41.035 332.536 46.5523 339.916 46.5523C344.054 46.5523 347.778 44.7592 350.675 41.9315L357.433 48.5523C353.295 52.8972 347.571 56.1386 339.916 56.1386C326.812 56.1386 317.502 46.4143 317.502 34.0694Z\"\n      fill=\"url(#paint0_linear)\"\n    />\n    <path\n      :fill=\"colorsComputed.start\"\n      d=\"M388.671 23.5893L388.364 24.844H391.71L391.403 23.5893C391.18 22.7157 390.957 21.7677 390.734 20.7454C390.511 19.7231 390.288 18.7565 390.065 17.8457H389.953C389.749 18.7751 389.535 19.751 389.312 20.7733C389.107 21.777 388.894 22.7157 388.671 23.5893ZM381.7 32.3999L387.221 14.2769H393.02L398.541 32.3999H393.466L392.574 28.5523H387.5L386.607 32.3999H381.7Z\"\n    />\n    <path\n      :fill=\"colorsComputed.start\"\n      d=\"M403.987 32.3999V14.2769H409.34C410.715 14.2769 411.97 14.4441 413.104 14.7787C414.256 15.1133 415.241 15.6431 416.059 16.368C416.877 17.0929 417.509 18.0223 417.955 19.1561C418.42 20.29 418.652 21.6562 418.652 23.2548C418.652 24.8533 418.429 26.2288 417.983 27.3812C417.537 28.5337 416.905 29.4817 416.087 30.2252C415.288 30.9687 414.331 31.517 413.215 31.8702C412.119 32.2234 410.92 32.3999 409.619 32.3999H403.987ZM408.782 28.5523H409.061C409.712 28.5523 410.325 28.4779 410.901 28.3292C411.477 28.1619 411.97 27.8831 412.379 27.4928C412.806 27.1024 413.141 26.5634 413.383 25.8756C413.624 25.1879 413.745 24.3143 413.745 23.2548C413.745 22.1953 413.624 21.3309 413.383 20.6618C413.141 19.9926 412.806 19.4721 412.379 19.1004C411.97 18.7286 411.477 18.4777 410.901 18.3476C410.325 18.1989 409.712 18.1245 409.061 18.1245H408.782V28.5523Z\"\n    />\n    <path\n      :fill=\"colorsComputed.start\"\n      d=\"M424.664 32.3999V14.2769H429.794L432.526 21.6934C432.694 22.1953 432.852 22.7157 433 23.2548C433.149 23.7938 433.307 24.3328 433.474 24.8719H433.586C433.753 24.3328 433.911 23.7938 434.06 23.2548C434.208 22.7157 434.366 22.1953 434.534 21.6934L437.155 14.2769H442.285V32.3999H437.935V27.0467C437.935 26.582 437.954 26.0708 437.991 25.5132C438.047 24.9555 438.103 24.3886 438.158 23.8124C438.214 23.2176 438.279 22.6414 438.354 22.0837C438.428 21.5261 438.493 21.0242 438.549 20.5781H438.437L436.932 24.9277L434.701 30.9222H432.136L429.905 24.9277L428.456 20.5781H428.344C428.4 21.0242 428.465 21.5261 428.539 22.0837C428.614 22.6414 428.679 23.2176 428.734 23.8124C428.79 24.3886 428.837 24.9555 428.874 25.5132C428.93 26.0708 428.957 26.582 428.957 27.0467V32.3999H424.664Z\"\n    />\n    <path :fill=\"colorsComputed.start\" d=\"M450.028 32.3999V14.2769H454.823V32.3999H450.028Z\" />\n    <path\n      :fill=\"colorsComputed.start\"\n      d=\"M462.567 32.3999V14.2769H467.474L471.489 22.3625L473.218 26.4333H473.329C473.274 25.95 473.209 25.4202 473.134 24.844C473.06 24.2678 472.995 23.6823 472.939 23.0875C472.883 22.4741 472.828 21.87 472.772 21.2752C472.735 20.6618 472.716 20.0762 472.716 19.5186V14.2769H477.289V32.3999H472.381L468.366 24.2864L466.638 20.2435H466.526C466.638 21.2845 466.768 22.4183 466.917 23.6451C467.065 24.8719 467.14 26.0429 467.14 27.1582V32.3999H462.567Z\"\n    />\n    <defs>\n      <linearGradient id=\"paint0_linear\" gradientUnits=\"userSpaceOnUse\" x1=\"0\" x2=\"357.64\" y1=\"56.1386\" y2=\"56.1386\">\n        <stop :stop-color=\"colorsComputed.end\" />\n        <stop :stop-color=\"colorsComputed.start\" offset=\"1\" />\n      </linearGradient>\n    </defs>\n  </svg>\n</template>\n\n<script lang=\"ts\" setup>\nimport { computed } from 'vue'\nimport { useColors } from 'vuestic-ui'\n\nconst { getColor } = useColors()\n\nconst props = withDefaults(\n  defineProps<{\n    height?: number\n    start?: string\n    end?: string\n  }>(),\n  {\n    height: 18,\n    start: 'primary',\n    end: undefined,\n  },\n)\n\nconst colorsComputed = computed(() => {\n  return {\n    start: getColor(props.start),\n    end: getColor(props.end || props.start),\n  }\n})\n</script>\n"
  },
  {
    "path": "src/components/app-layout-navigation/AppLayoutNavigation.vue",
    "content": "<template>\n  <div class=\"flex gap-2\">\n    <VaIconMenuCollapsed\n      class=\"cursor-pointer\"\n      :class=\"{ 'x-flip': !isSidebarMinimized }\"\n      :color=\"collapseIconColor\"\n      @click=\"isSidebarMinimized = !isSidebarMinimized\"\n    />\n\n    <nav class=\"flex items-center\">\n      <VaBreadcrumbs>\n        <VaBreadcrumbsItem label=\"Home\" :to=\"{ name: 'dashboard' }\" />\n        <VaBreadcrumbsItem\n          v-for=\"item in items\"\n          :key=\"item.label\"\n          :label=\"item.label\"\n          @click=\"handleBreadcrumbClick(item)\"\n        />\n      </VaBreadcrumbs>\n    </nav>\n  </div>\n</template>\n\n<script setup lang=\"ts\">\nimport { computed } from 'vue'\nimport { useRoute, useRouter } from 'vue-router'\nimport { useI18n } from 'vue-i18n'\nimport { useColors } from 'vuestic-ui'\nimport VaIconMenuCollapsed from '../icons/VaIconMenuCollapsed.vue'\nimport { storeToRefs } from 'pinia'\nimport { useGlobalStore } from '../../stores/global-store'\nimport NavigationRoutes from '../sidebar/NavigationRoutes'\n\nconst { isSidebarMinimized } = storeToRefs(useGlobalStore())\n\nconst router = useRouter()\nconst route = useRoute()\nconst { t } = useI18n()\n\ntype BreadcrumbNavigationItem = {\n  label: string\n  to: string\n  hasChildren: boolean\n}\n\nconst findRouteName = (name: string) => {\n  const traverse = (routers: any[]): string => {\n    for (const router of routers) {\n      if (router.name === name) {\n        return router.displayName\n      }\n      if (router.children) {\n        const result = traverse(router.children)\n        if (result) {\n          return result\n        }\n      }\n    }\n    return ''\n  }\n\n  return traverse(NavigationRoutes.routes)\n}\n\nconst items = computed(() => {\n  const result: { label: string; to: string; hasChildren: boolean }[] = []\n  route.matched.forEach((route) => {\n    const labelKey = findRouteName(route.name as string)\n    if (!labelKey) {\n      return\n    }\n    result.push({\n      label: t(labelKey),\n      to: route.path,\n      hasChildren: route.children && route.children.length > 0,\n    })\n  })\n  return result\n})\n\nconst { getColor } = useColors()\n\nconst collapseIconColor = computed(() => getColor('secondary'))\n\nconst handleBreadcrumbClick = (item: BreadcrumbNavigationItem) => {\n  if (!item.hasChildren) {\n    router.push(item.to)\n  }\n}\n</script>\n\n<style lang=\"scss\" scoped>\n.x-flip {\n  transform: scaleX(-100%);\n}\n</style>\n"
  },
  {
    "path": "src/components/icons/VaIconCleanCode.vue",
    "content": "<template>\n  <svg class=\"va-icon-clean-code\" viewBox=\"0 0 56.02 50.34\" xmlns=\"http://www.w3.org/2000/svg\">\n    <defs />\n    <title>overview_icon_4</title>\n    <g id=\"Layer_2\" data-name=\"Layer 2\">\n      <g id=\"Layer_1-2\" data-name=\"Layer 1\">\n        <path class=\"cls-1\" d=\"M38.23,16.17a10,10,0,1,0-17.67,6.42V47.5l7.33-5,8,5V22.58A10,10,0,0,0,38.23,16.17Z\" />\n        <path\n          class=\"cls-2\"\n          d=\"M28.23,0a13.15,13.15,0,0,0-9.17,22.6V50.34l8.87-6,9.46,5.92V22.6A13.15,13.15,0,0,0,28.23,0ZM34.4,44.79l-6.54-4.08-5.8,4V24.79a13.11,13.11,0,0,0,12.33,0ZM28.23,23.33A10.17,10.17,0,1,1,38.4,13.17,10.18,10.18,0,0,1,28.23,23.33Z\"\n        />\n        <path\n          class=\"cls-2\"\n          d=\"M28.23,5.67a7.5,7.5,0,1,0,7.5,7.5A7.51,7.51,0,0,0,28.23,5.67Zm0,12a4.5,4.5,0,1,1,4.5-4.5A4.5,4.5,0,0,1,28.23,17.67Z\"\n        />\n        <polygon class=\"cls-2\" points=\"9.51 15.11 0 24.61 9.51 34.12 11.63 32 4.24 24.61 11.63 17.23 9.51 15.11\" />\n        <polygon\n          class=\"cls-2\"\n          points=\"46.52 15.11 44.39 17.23 51.78 24.61 44.39 32 46.52 34.12 56.02 24.61 46.52 15.11\"\n        />\n      </g>\n    </g>\n  </svg>\n</template>\n\n<style lang=\"scss\">\n.va-icon-clean-code {\n  display: inline-block;\n  width: 56px;\n  height: 50px;\n\n  .cls-1 {\n    fill: #4ae387;\n  }\n\n  .cls-2 {\n    fill: #34495e;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/icons/VaIconColor.vue",
    "content": "<template>\n  <svg\n    :fill=\"color\"\n    class=\"va-icon-color\"\n    height=\"24\"\n    viewBox=\"0 0 24 24\"\n    width=\"24\"\n    xmlns=\"http://www.w3.org/2000/svg\"\n  >\n    <path d=\"M0 0h24v24H0V0z\" fill=\"none\" />\n    <path\n      d=\"M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-.28 0-.5.22-.5.5 0 .12.05.23.13.33.41.47.64 1.06.64 1.67 0 1.38-1.12 2.5-2.5 2.5zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5 0-.16-.08-.28-.14-.35-.41-.46-.63-1.05-.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z\"\n    />\n    <circle cx=\"6.5\" cy=\"11.5\" r=\"1.5\" />\n    <circle cx=\"9.5\" cy=\"7.5\" r=\"1.5\" />\n    <circle cx=\"14.5\" cy=\"7.5\" r=\"1.5\" />\n    <circle cx=\"17.5\" cy=\"11.5\" r=\"1.5\" />\n  </svg>\n</template>\n\n<script lang=\"ts\" setup>\nwithDefaults(\n  defineProps<{\n    color?: string\n  }>(),\n  {\n    color: 'inherit',\n  },\n)\n</script>\n\n<style lang=\"scss\">\n.va-icon-color {\n  display: inline-block;\n  width: 24px;\n  height: 24px;\n}\n</style>\n"
  },
  {
    "path": "src/components/icons/VaIconDiscord.vue",
    "content": "<template>\n  <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n    <g clip-path=\"url(#clip0_1086_1040)\">\n      <path\n        d=\"M16.9308 3.64152C15.6342 3.04632 14.2658 2.62189 12.8599 2.37886C12.8471 2.37647 12.834 2.37818 12.8222 2.38373C12.8105 2.38928 12.8008 2.39839 12.7945 2.40977C12.6187 2.72252 12.4239 3.13044 12.2876 3.45102C10.7503 3.22086 9.22092 3.22086 7.71525 3.45102C7.57892 3.12327 7.37709 2.72252 7.2005 2.40977C7.19396 2.39865 7.18422 2.38976 7.17255 2.38426C7.16088 2.37876 7.14783 2.37691 7.13509 2.37894C5.72907 2.62141 4.36058 3.04581 3.06409 3.64144C3.05299 3.64618 3.04365 3.65424 3.03734 3.66452C0.444503 7.53819 -0.26583 11.3166 0.08267 15.0482C0.0836554 15.0573 0.0864643 15.0662 0.0909303 15.0742C0.0953964 15.0822 0.101429 15.0893 0.10867 15.0949C1.81934 16.3513 3.47642 17.1139 5.10275 17.6194C5.1154 17.6232 5.1289 17.623 5.14144 17.6189C5.15398 17.6148 5.16496 17.607 5.17292 17.5964C5.55759 17.0711 5.9005 16.5171 6.19459 15.9346C6.19863 15.9266 6.20094 15.9179 6.20136 15.909C6.20178 15.9 6.2003 15.8911 6.19703 15.8828C6.19375 15.8745 6.18875 15.8669 6.18236 15.8607C6.17596 15.8544 6.16831 15.8496 6.15992 15.8465C5.61592 15.6402 5.098 15.3886 4.59975 15.1029C4.59067 15.0976 4.58303 15.0901 4.57753 15.0811C4.57203 15.0721 4.56882 15.0619 4.56819 15.0514C4.56757 15.0409 4.56954 15.0304 4.57394 15.0208C4.57834 15.0112 4.58503 15.0029 4.59342 14.9965C4.69825 14.9179 4.80317 14.8363 4.90325 14.7537C4.91215 14.7464 4.92291 14.7416 4.93434 14.7401C4.94577 14.7386 4.9574 14.7402 4.96792 14.7449C8.24109 16.2394 11.7846 16.2394 15.0191 14.7449C15.0296 14.7399 15.0414 14.738 15.0529 14.7394C15.0645 14.7408 15.0755 14.7455 15.0845 14.7529C15.1847 14.8354 15.2895 14.9179 15.3952 14.9965C15.4036 15.0028 15.4103 15.0111 15.4148 15.0206C15.4192 15.0302 15.4213 15.0406 15.4207 15.0512C15.4202 15.0617 15.4171 15.0719 15.4117 15.0809C15.4062 15.0899 15.3987 15.0974 15.3897 15.1029C14.8912 15.394 14.3691 15.6425 13.8288 15.8457C13.8204 15.8489 13.8128 15.8538 13.8065 15.8602C13.8001 15.8665 13.7952 15.8742 13.792 15.8826C13.7888 15.891 13.7874 15.8999 13.7879 15.9089C13.7884 15.9179 13.7908 15.9266 13.7949 15.9346C14.0953 16.5163 14.4382 17.0703 14.8158 17.5956C14.8235 17.6064 14.8344 17.6146 14.847 17.6189C14.8596 17.6231 14.8732 17.6233 14.8859 17.6194C16.5201 17.1139 18.1772 16.3512 19.8878 15.0949C19.8952 15.0896 19.9013 15.0827 19.9058 15.0747C19.9103 15.0668 19.9131 15.058 19.9139 15.0489C20.3309 10.7348 19.2154 6.98736 16.9568 3.66527C16.9513 3.65448 16.9421 3.64611 16.9308 3.64152ZM6.68334 12.776C5.69792 12.776 4.88592 11.8713 4.88592 10.7602C4.88592 9.64919 5.68217 8.74444 6.68342 8.74444C7.69242 8.74444 8.4965 9.6571 8.48075 10.7603C8.48075 11.8713 7.6845 12.776 6.68334 12.776ZM13.329 12.776C12.3436 12.776 11.5316 11.8713 11.5316 10.7602C11.5316 9.64919 12.3278 8.74444 13.329 8.74444C14.338 8.74444 15.1421 9.6571 15.1263 10.7603C15.1263 11.8713 14.338 12.776 13.329 12.776Z\"\n        fill=\"currentColor\"\n      />\n    </g>\n    <defs>\n      <clipPath id=\"clip0_1086_1040\">\n        <rect width=\"20\" height=\"20\" fill=\"white\" />\n      </clipPath>\n    </defs>\n  </svg>\n</template>\n"
  },
  {
    "path": "src/components/icons/VaIconFaster.vue",
    "content": "<template>\n  <svg class=\"va-icon-faster\" version=\"1.1\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n    <!-- Generator: sketchtool 48.2 (47327) - http://www.bohemiancoding.com/sketch -->\n    <title>62EBC3B8-A55C-4B01-95A2-52FB8EDD4150</title>\n    <defs />\n    <g id=\"symbols\" fill=\"none\" fill-rule=\"evenodd\" stroke=\"none\" stroke-width=\"1\">\n      <g id=\"icon-faster\" fill=\"#34495E\">\n        <g>\n          <path\n            id=\"A\"\n            d=\"M17.748,19 L16.956,16.3 L12.942,16.3 L12.168,19 L8.928,19 L13.302,6.13 L16.614,6.13 L20.988,19 L17.748,19 Z M14.976,9.064 L14.94,9.064 C14.94,9.064 14.652,10.468 14.418,11.278 L13.68,13.78 L16.218,13.78 L15.498,11.278 C15.264,10.468 14.976,9.064 14.976,9.064 Z\"\n          />\n          <rect id=\"Rectangle-4\" height=\"2\" rx=\"1\" width=\"5\" x=\"3\" y=\"11\" />\n          <rect id=\"Rectangle-4-Copy\" height=\"2\" rx=\"1\" width=\"6\" x=\"4\" y=\"7\" />\n          <rect id=\"Rectangle-4\" height=\"2\" rx=\"1\" width=\"4\" x=\"2\" y=\"15\" />\n        </g>\n      </g>\n    </g>\n  </svg>\n</template>\n\n<style lang=\"scss\">\n.va-icon-faster {\n  width: 24px;\n  height: 24px;\n}\n</style>\n"
  },
  {
    "path": "src/components/icons/VaIconFree.vue",
    "content": "<template>\n  <svg class=\"va-icon-free\" viewBox=\"0 0 44.99 51.04\" xmlns=\"http://www.w3.org/2000/svg\">\n    <defs />\n    <title>overview_icon_2</title>\n    <g id=\"Layer_2\" data-name=\"Layer 2\">\n      <g id=\"Layer_1-2\" data-name=\"Layer 1\">\n        <path\n          class=\"cls-1\"\n          d=\"M1.08,28.21C1.08,13.62,8.38,6.29,19,6.29S37,13.69,37,28.21,29.66,50.54,19,50.54,1.08,42.8,1.08,28.21Zm23.56,0c0-11.3-2.58-16.9-5.62-16.9s-5.62,5.6-5.62,16.9S16,41.66,19,41.66,24.65,39.51,24.65,28.21Z\"\n        />\n        <line class=\"cls-2\" x1=\"39.83\" x2=\"39.83\" y1=\"47.62\" y2=\"50.96\" />\n        <path\n          class=\"cls-3\"\n          d=\"M18.73,9.64c-4.9,0-6.9,4.54-6.9,15.66,0,11.29,2.06,16.1,6.9,16.1s6.9-4.81,6.9-16.1C25.63,14.17,23.63,9.64,18.73,9.64Zm0,28.76c-1.07,0-3.9,0-3.9-13.1,0-12.66,2.64-12.66,3.9-12.66s3.9,0,3.9,12.66C22.63,38.4,19.8,38.4,18.73,38.4Z\"\n        />\n        <path\n          class=\"cls-3\"\n          d=\"M42.9,43.74A3.76,3.76,0,0,1,40.17,45c-1.95,0-3.24-1.57-3.24-4.4s1.53-4.35,3.29-4.35a3.67,3.67,0,0,1,2.5,1.11l2.08-2.55A6.8,6.8,0,0,0,41.33,33V31h-3v2.12a7.09,7.09,0,0,0-1.64.63,43.71,43.71,0,0,0,.77-8.41c0-15.84-7-25.3-18.73-25.3S0,9.46,0,25.3,7.18,51,18.73,51A16.4,16.4,0,0,0,33.12,43.1,6.77,6.77,0,0,0,40,48.46a6.35,6.35,0,0,0,5-2.22ZM18.73,48C8.88,48,3,39.54,3,25.3S8.73,3,18.73,3s15.73,8.13,15.73,22.3S28.58,48,18.73,48Z\"\n        />\n      </g>\n    </g>\n  </svg>\n</template>\n\n<style lang=\"scss\">\n.va-icon-free {\n  display: inline-block;\n  width: 55px;\n  height: 47.8px;\n\n  .cls-1 {\n    fill: #4ae387;\n  }\n\n  .cls-2 {\n    fill: none;\n    stroke: #34495e;\n    stroke-miterlimit: 10;\n    stroke-width: 3px;\n  }\n\n  .cls-3 {\n    fill: #34495e;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/icons/VaIconFresh.vue",
    "content": "<template>\n  <svg class=\"va-icon-fresh\" viewBox=\"0 0 50.98 47.66\" xmlns=\"http://www.w3.org/2000/svg\">\n    <defs />\n    <title>overview_icon_5</title>\n    <g id=\"Layer_2\" data-name=\"Layer 2\">\n      <g id=\"Layer_1-2\" data-name=\"Layer 1\">\n        <path\n          class=\"cls-1\"\n          d=\"M6,19C11,12.66,26.33,3,46.33,6c-3.67,17-8.67,26-8.67,26s-7,14-19.67-3.67C5.67,26.33,9,22.33,6,19Z\"\n        />\n        <path\n          class=\"cls-2\"\n          d=\"M48.33.49l-.77,0c-11.22-1.88-30.21,1.46-39,9-3.38,2.89-5,6.11-4.69,9.59a11.06,11.06,0,0,0,4.77,8,11,11,0,0,0,6.24,1.82q.53,0,1.09,0A55.51,55.51,0,0,0,13.2,39.21C9.48,33.07,2.35,30.83,0,30.83v3c.12,0,12.18,1.95,12.5,13.54h0c0,.1,0,.19,0,.29h3a50.57,50.57,0,0,1,3.12-17.21c2.48,5.09,6.36,8,10.91,8.13,5.3.07,10.1-3.85,11.91-9.81.94-3.12,1.88-6.37,2.78-9.51C46.32,11.9,48.31,5,49.62,2.76L51,.49ZM10.28,24.61a8.06,8.06,0,0,1-3.45-5.73c-.19-2.47,1-4.85,3.65-7.08,5.9-5,17.25-8.12,27-8.7-8.35,4-15.7,12.31-20.23,22.51l-.38.1h0A8.82,8.82,0,0,1,10.28,24.61Zm31-6.18c-.9,3.13-1.82,6.37-2.76,9.47-1.4,4.62-4.95,7.69-8.86,7.69h-.13c-4-.07-7.45-3.43-9.33-9.09C25.83,14.27,35.67,4.94,45.92,3.65,44.6,7,43.06,12.39,41.33,18.42Z\"\n        />\n      </g>\n    </g>\n  </svg>\n</template>\n\n<style lang=\"scss\">\n.va-icon-fresh {\n  display: inline-block;\n  width: 51px;\n  height: 48px;\n\n  .cls-1 {\n    fill: #4ae387;\n  }\n\n  .cls-2 {\n    fill: #34495e;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/icons/VaIconGitHub.vue",
    "content": "<template>\n  <svg viewBox=\"0 0 98 96\" xmlns=\"http://www.w3.org/2000/svg\">\n    <path\n      fill-rule=\"evenodd\"\n      clip-rule=\"evenodd\"\n      d=\"M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z\"\n      fill=\"currentColor\"\n    />\n  </svg>\n</template>\n"
  },
  {
    "path": "src/components/icons/VaIconHideSidebar.vue",
    "content": "<template>\n  <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\">\n    <path\n      d=\"M18.3516 2.8125H3.97663C3.53557 2.8125 3.17802 3.17005 3.17802 3.61111C3.17802 4.05217 3.53557 4.40972 3.97663 4.40972H18.3516C18.7927 4.40972 19.1502 4.05217 19.1502 3.61111C19.1502 3.17005 18.7927 2.8125 18.3516 2.8125Z\"\n      fill=\"#767C88\"\n    />\n    <path\n      d=\"M10.3655 9.20139H18.3516C18.5634 9.20139 18.7666 9.28553 18.9163 9.4353C19.0661 9.58506 19.1502 9.78819 19.1502 10C19.1502 10.2118 19.0661 10.4149 18.9163 10.5647C18.7666 10.7145 18.5634 10.7986 18.3516 10.7986H10.3655C10.1537 10.7986 9.95058 10.7145 9.80081 10.5647C9.65105 10.4149 9.56691 10.2118 9.56691 10C9.56691 9.78819 9.65105 9.58506 9.80081 9.4353C9.95058 9.28553 10.1537 9.20139 10.3655 9.20139ZM2.37941 9.20139H6.37246C6.58427 9.20139 6.7874 9.28553 6.93717 9.4353C7.08693 9.58506 7.17107 9.78819 7.17107 10C7.17107 10.2118 7.08693 10.4149 6.93717 10.5647C6.7874 10.7145 6.58427 10.7986 6.37246 10.7986H2.37941C2.1676 10.7986 1.96447 10.7145 1.8147 10.5647C1.66493 10.4149 1.5808 10.2118 1.5808 10C1.5808 9.78819 1.66493 9.58506 1.8147 9.4353C1.96447 9.28553 2.1676 9.20139 2.37941 9.20139Z\"\n      fill=\"#767C88\"\n    />\n    <path\n      d=\"M18.3516 15.5903H3.97663C3.53557 15.5903 3.17802 15.9478 3.17802 16.3889C3.17802 16.8299 3.53557 17.1875 3.97663 17.1875H18.3516C18.7927 17.1875 19.1502 16.8299 19.1502 16.3889C19.1502 15.9478 18.7927 15.5903 18.3516 15.5903Z\"\n      fill=\"#767C88\"\n    />\n    <path\n      fill-rule=\"evenodd\"\n      clip-rule=\"evenodd\"\n      d=\"M3.64583 7.60417C3.95771 7.29229 4.46336 7.29229 4.77524 7.60417C5.08712 7.91604 5.08712 8.4217 4.77524 8.73357L3.50881 10L4.77524 11.2664C5.08712 11.5783 5.08712 12.084 4.77524 12.3958C4.46336 12.7077 3.95771 12.7077 3.64583 12.3958L1.74342 10.4934C1.47091 10.2209 1.47091 9.77909 1.74342 9.50658L3.64583 7.60417Z\"\n      fill=\"#767C88\"\n    />\n  </svg>\n</template>\n"
  },
  {
    "path": "src/components/icons/VaIconMenu.vue",
    "content": "<template>\n  <svg class=\"va-icon-menu\" height=\"18\" viewBox=\"0 0 24 18\" width=\"23\" xmlns=\"http://www.w3.org/2000/svg\">\n    <g fill=\"none\" fill-rule=\"nonzero\" transform=\"translate(1 -3)\">\n      <path d=\"M0 0h24v24H0z\" />\n      <rect :fill=\"color\" height=\"2\" rx=\"1\" width=\"20\" x=\"2\" y=\"3\" />\n      <path :fill=\"color\" d=\"M11 11h10a1 1 0 0 1 0 2H11a1 1 0 0 1 0-2zM1 11h5a1 1 0 0 1 0 2H1a1 1 0 0 1 0-2z\" />\n      <rect :fill=\"color\" height=\"2\" rx=\"1\" width=\"20\" x=\"2\" y=\"19\" />\n      <path :stroke=\"color\" d=\"M4 9l-3 3 3 3\" stroke-width=\"2\" />\n    </g>\n  </svg>\n</template>\n\n<script lang=\"ts\" setup>\nwithDefaults(\n  defineProps<{\n    color?: string\n  }>(),\n  {\n    color: 'inherit',\n  },\n)\n</script>\n\n<style lang=\"scss\">\n.va-icon-menu {\n  display: inline-block;\n  width: 24px;\n  height: 24px;\n}\n</style>\n"
  },
  {
    "path": "src/components/icons/VaIconMenuCollapsed.vue",
    "content": "<template>\n  <svg class=\"va-icon-menu-collapsed\" height=\"24\" viewBox=\"0 0 24 24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\">\n    <g fill=\"none\" fill-rule=\"nonzero\">\n      <path d=\"M0 0h24v24H0z\" />\n      <rect :fill=\"color\" height=\"2\" rx=\"1\" width=\"20\" x=\"2\" y=\"3\" />\n      <path\n        :fill=\"color\"\n        d=\"M3 11h10a1 1 0 0 1 0 2H3a1 1 0 0 1 0-2zM20.993 11l-2.7-2.7-1.414 1.414L18.164 11H16a1 1 0 0 0 0 2h2.179l-1.3 1.3 1.414 1.414L21.007 13A1 1 0 0 0 21 11h-.007z\"\n      />\n      <rect :fill=\"color\" height=\"2\" rx=\"1\" width=\"20\" x=\"2\" y=\"19\" />\n    </g>\n  </svg>\n</template>\n\n<script lang=\"ts\" setup>\nwithDefaults(\n  defineProps<{\n    color?: string\n  }>(),\n  {\n    color: 'inherit',\n  },\n)\n</script>\n\n<style lang=\"scss\">\n.va-icon-menu-collapsed {\n  display: inline-block;\n  width: 24px;\n  height: 24px;\n}\n</style>\n"
  },
  {
    "path": "src/components/icons/VaIconMessage.vue",
    "content": "<template>\n  <svg :fill=\"color\" height=\"16\" viewBox=\"0 0 20 16\" width=\"20\" xmlns=\"http://www.w3.org/2000/svg\">\n    <path\n      d=\"M20 2c0-1.1-.9-2-2-2H2C.9 0 0 .9 0 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V2zm-2 0l-8 5-8-5h16zm0 12H2V4l8 5 8-5v10z\"\n      fill-rule=\"nonzero\"\n    />\n  </svg>\n</template>\n\n<script lang=\"ts\" setup>\nwithDefaults(\n  defineProps<{\n    color?: string\n  }>(),\n  {\n    color: 'inherit',\n  },\n)\n</script>\n\n<style lang=\"scss\">\n.va-icon-message {\n  display: inline-block;\n  width: 24px;\n  height: 24px;\n}\n</style>\n"
  },
  {
    "path": "src/components/icons/VaIconNotification.vue",
    "content": "<template>\n  <svg viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\">\n    <path\n      :fill=\"color\"\n      d=\"M10 20c1.1 0 2-.9 2-2H8c0 1.1.9 2 2 2zm6-6V9c0-3.07-1.63-5.64-4.5-6.32V2c0-.83-.67-1.5-1.5-1.5S8.5 1.17 8.5 2v.68C5.64 3.36 4 5.92 4 9v5l-2 2v1h16v-1l-2-2zm-2 1H6V9c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6zM5.58 2.08L4.15.65C1.75 2.48.17 5.3.03 8.5h2a8.445 8.445 0 0 1 3.55-6.42zM17.97 8.5h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43a8.495 8.495 0 0 1 3.54 6.42z\"\n    />\n  </svg>\n</template>\n\n<script lang=\"ts\" setup>\nwithDefaults(\n  defineProps<{\n    color?: string\n  }>(),\n  {\n    color: 'inherit',\n  },\n)\n</script>\n"
  },
  {
    "path": "src/components/icons/VaIconResponsive.vue",
    "content": "<template>\n  <svg class=\"va-icon-responsive\" viewBox=\"0 0 47.5 49\" xmlns=\"http://www.w3.org/2000/svg\">\n    <defs />\n    <title>overview_icon_3</title>\n    <g id=\"Layer_2\" data-name=\"Layer 2\">\n      <g id=\"Layer_1-2\" data-name=\"Layer 1\">\n        <polygon class=\"cls-1\" points=\"37 26 37 7 11 7 11 18 3 18 3 46 11 46 15 46 30 46 37 46 45 46 45 26 37 26\" />\n        <path class=\"cls-2\" d=\"M40,19V0H8V11H0V49H47.5V19ZM3,46V14H8V46Zm34,0H11V3H37Zm7.5,0H40V22h4.5Z\" />\n        <circle class=\"cls-2\" cx=\"24\" cy=\"41\" r=\"2.67\" />\n      </g>\n    </g>\n  </svg>\n</template>\n\n<style lang=\"scss\">\n.va-icon-responsive {\n  display: inline-block;\n  width: 47.5px;\n  height: 49px;\n\n  .cls-1 {\n    fill: #4ae387;\n  }\n\n  .cls-2 {\n    fill: #34495e;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/icons/VaIconRich.vue",
    "content": "<template>\n  <svg class=\"va-icon-rich\" viewBox=\"0 0 56.99 55\" xmlns=\"http://www.w3.org/2000/svg\">\n    <defs />\n    <title>overview_icon_6</title>\n    <g id=\"Layer_2\" data-name=\"Layer 2\">\n      <g id=\"Layer_1-2\" data-name=\"Layer 1\">\n        <rect class=\"cls-1\" height=\"23\" width=\"37.33\" x=\"10.31\" y=\"30.5\" />\n        <path\n          class=\"cls-2\"\n          d=\"M57,41.18l-7.85-16V24H8.81v1.11L0,41.11l2.63,1.45L8.81,31.33V55H49.15V32L54.3,42.5ZM46.15,52H11.81V27H46.15Z\"\n        />\n        <polygon class=\"cls-2\" points=\"35.3 1.8 32.9 0 28.12 6.39 26.16 4.63 24.16 6.87 28.56 10.8 35.3 1.8\" />\n        <polygon\n          class=\"cls-2\"\n          points=\"22.3 12.46 19.9 10.67 15.12 17.05 13.16 15.3 11.16 17.54 15.56 21.47 22.3 12.46\"\n        />\n        <polygon\n          class=\"cls-2\"\n          points=\"38.89 21.14 45.64 12.13 43.23 10.33 38.45 16.72 36.49 14.97 34.49 17.2 38.89 21.14\"\n        />\n      </g>\n    </g>\n  </svg>\n</template>\n\n<style lang=\"scss\">\n.va-icon-rich {\n  display: inline-block;\n  width: 57px;\n  height: 55px;\n\n  .cls-1 {\n    fill: #4ae387;\n  }\n\n  .cls-2 {\n    fill: #34495e;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/icons/VaIconSlower.vue",
    "content": "<template>\n  <svg class=\"va-icon-slower\" version=\"1.1\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n    <!-- Generator: sketchtool 48.2 (47327) - http://www.bohemiancoding.com/sketch -->\n    <title>67046716-A590-445C-AC65-1EEF69089C00</title>\n    <defs />\n    <g id=\"symbols\" fill=\"none\" fill-rule=\"evenodd\" stroke=\"none\" stroke-width=\"1\">\n      <g id=\"icon-slower\" fill=\"#34495E\">\n        <g>\n          <path\n            id=\"A\"\n            d=\"M16.82,18.87 L16.028,16.17 L12.014,16.17 L11.24,18.87 L8,18.87 L12.374,6 L15.686,6 L20.06,18.87 L16.82,18.87 Z M14.048,8.934 L14.012,8.934 C14.012,8.934 13.724,10.338 13.49,11.148 L12.752,13.65 L15.29,13.65 L14.57,11.148 C14.336,10.338 14.048,8.934 14.048,8.934 Z\"\n          />\n          <rect id=\"Rectangle-4\" height=\"2\" rx=\"1\" width=\"2\" x=\"5\" y=\"11\" />\n          <rect id=\"Rectangle-4-Copy\" height=\"2\" rx=\"1\" width=\"3\" x=\"6\" y=\"7\" />\n          <rect id=\"Rectangle-4\" height=\"2\" rx=\"1\" width=\"2\" x=\"4\" y=\"15\" />\n        </g>\n      </g>\n    </g>\n  </svg>\n</template>\n\n<style lang=\"scss\">\n.va-icon-slower {\n  width: 24px;\n  height: 24px;\n}\n</style>\n"
  },
  {
    "path": "src/components/icons/VaIconVue.vue",
    "content": "<template>\n  <svg class=\"va-icon-vue\" viewBox=\"0 0 55.05 47.8\" xmlns=\"http://www.w3.org/2000/svg\">\n    <defs />\n    <title>overview_icon_1</title>\n    <g id=\"Layer_2\" data-name=\"Layer 2\">\n      <g id=\"Layer_1-2\" data-name=\"Layer 1\">\n        <polygon\n          class=\"cls-1\"\n          points=\"27.75 21.19 18.48 6.18 4.78 6.18 27.75 42.92 50.89 6.18 36.13 6.18 27.75 21.19\"\n        />\n        <path\n          class=\"cls-2\"\n          d=\"M33.08,0,27.44,9.76,21.84,0H0L27.43,47.8,55,0ZM27.43,15.77,34.81,3h4.6l-12,20.72L15.55,3h4.55ZM5.18,3h6.91L27.43,29.73,42.88,3h7L27.44,41.78Z\"\n        />\n      </g>\n    </g>\n  </svg>\n</template>\n\n<style lang=\"scss\">\n.va-icon-vue {\n  display: inline-block;\n  width: 55px;\n  height: 47.8px;\n\n  .cls-1 {\n    fill: #4ae387;\n  }\n\n  .cls-2 {\n    fill: #34495e;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/icons/VaIconVuestic.vue",
    "content": "<template>\n  <svg class=\"va-icon-vuestic\" height=\"31\" viewBox=\"0 0 304 31\" width=\"304\" xmlns=\"http://www.w3.org/2000/svg\">\n    <defs>\n      <linearGradient :id=\"'ORIGINAL'\" x1=\"0%\" y1=\"50%\" y2=\"50%\">\n        <stop offset=\"0%\" stop-color=\"#4AE387\" />\n        <stop offset=\"100%\" stop-color=\"#C8EA13\" />\n      </linearGradient>\n      <linearGradient :id=\"'CORPORATE'\" x1=\"0%\" y1=\"50%\" y2=\"50%\">\n        <stop offset=\"0%\" stop-color=\"#74BBFF\" />\n        <stop offset=\"100%\" stop-color=\"#6E85E8\" />\n      </linearGradient>\n    </defs>\n    <g fill=\"none\" fill-rule=\"evenodd\" transform=\"scale(2)\">\n      <path\n        :fill=\"`url(#${themeGradientId})`\"\n        d=\"M6.36,15.36 L-7.10542736e-15,0.48 L3.672,0.48 L6.576,7.416 L9.48,0.48 L13.152,0.48 L6.792,15.36 L6.36,15.36 Z M21.744,10.032 L21.744,0.48 L25.248,0.48 L25.248,9.504 C25.248,11.424 26.16,12.096 27.384,12.096 C28.728,12.096 29.568,11.424 29.568,9.504 L29.568,0.48 L33.096,0.48 L33.096,10.032 C33.096,13.44 30.552,15.36 27.384,15.36 C24.096,15.36 21.744,13.344 21.744,10.032 Z M42.6,14.88 L42.6,0.48 L52.128,0.48 L52.128,3.6 L46.128,3.6 L46.128,6.192 L51.672,6.192 L51.672,9.264 L46.128,9.264 L46.128,11.856 L52.392,11.856 L52.392,14.88 L42.6,14.88 Z M61.224,10.656 L64.656,10.656 C64.656,11.496 65.328,12.168 66.144,12.168 C67.032,12.168 67.584,11.664 67.584,10.92 C67.584,9.84 66.168,9.528 64.992,9.12 C62.568,8.256 61.224,7.128 61.224,4.656 C61.224,2.112 63.408,7.10542736e-15 66.12,7.10542736e-15 C69.312,7.10542736e-15 70.824,2.04 71.016,4.704 L67.704,4.704 C67.704,3.888 67.2,3.216 66.216,3.216 C65.448,3.216 64.704,3.672 64.704,4.608 C64.704,5.688 66.024,5.88 67.248,6.24 C69.816,7.008 71.016,8.448 71.016,10.704 C71.016,13.248 68.856,15.36 66.144,15.36 C63,15.36 61.224,13.248 61.224,10.656 Z M82.896,14.88 L82.896,3.6 L79.68,3.6 L79.68,0.48 L89.712,0.48 L89.712,3.6 L86.448,3.6 L86.448,14.88 L82.896,14.88 Z M98.544,14.88 L98.544,0.48 L102.072,0.48 L102.072,14.88 L98.544,14.88 Z M111.72,7.68 C111.72,3.384 114.96,7.10542736e-15 119.52,7.10542736e-15 C122.256,7.10542736e-15 124.152,1.032 125.688,2.64 L123.264,4.944 C122.256,3.96 120.96,3.336 119.52,3.336 C116.952,3.336 115.296,5.256 115.296,7.68 C115.296,10.104 116.952,12.024 119.52,12.024 C120.96,12.024 122.256,11.4 123.264,10.416 L125.616,12.72 C124.176,14.232 122.184,15.36 119.52,15.36 C114.96,15.36 111.72,11.976 111.72,7.68 Z\"\n        fill-rule=\"nonzero\"\n      />\n      <path\n        :fill=\"textColor\"\n        d=\"M139.712,7.88 L139.712,6.152 L138.44,6.152 C138.272,6.152 138.066,6.162 137.822,6.182 C137.578,6.202 137.36,6.224 137.168,6.248 C137.424,5.984 137.682,5.704 137.942,5.408 C138.202,5.112 138.436,4.808 138.644,4.496 C138.852,4.184 139.022,3.87 139.154,3.554 C139.286,3.238 139.352,2.928 139.352,2.624 C139.352,2.248 139.288,1.906 139.16,1.598 C139.032,1.29 138.852,1.028 138.62,0.812 C138.388,0.596 138.112,0.428 137.792,0.308 C137.472,0.188 137.12,0.128 136.736,0.128 C136.456,0.128 136.198,0.152 135.962,0.2 C135.726,0.248 135.502,0.322 135.29,0.422 C135.078,0.522 134.876,0.65 134.684,0.806 C134.492,0.962 134.296,1.144 134.096,1.352 L134.096,1.352 L135.2,2.456 C135.384,2.272 135.574,2.106 135.77,1.958 C135.966,1.81 136.192,1.736 136.448,1.736 C136.728,1.736 136.954,1.818 137.126,1.982 C137.298,2.146 137.384,2.4 137.384,2.744 C137.384,3 137.302,3.274 137.138,3.566 C136.974,3.858 136.748,4.166 136.46,4.49 C136.172,4.814 135.834,5.16 135.446,5.528 C135.058,5.896 134.64,6.288 134.192,6.704 L134.192,6.704 L134.192,7.88 L139.712,7.88 Z M142.56,8.024 C142.912,8.024 143.2,7.904 143.424,7.664 C143.648,7.424 143.76,7.128 143.76,6.776 C143.76,6.424 143.648,6.128 143.424,5.888 C143.2,5.648 142.912,5.528 142.56,5.528 C142.208,5.528 141.92,5.648 141.696,5.888 C141.472,6.128 141.36,6.424 141.36,6.776 C141.36,7.128 141.472,7.424 141.696,7.664 C141.92,7.904 142.208,8.024 142.56,8.024 Z M150.736,7.88 L150.736,6.224 L149.368,6.224 L149.368,0.272 L147.856,0.272 C147.568,0.456 147.272,0.604 146.968,0.716 C146.664,0.828 146.296,0.928 145.864,1.016 L145.864,1.016 L145.864,2.288 L147.304,2.288 L147.304,6.224 L145.672,6.224 L145.672,7.88 L150.736,7.88 Z\"\n      />\n    </g>\n  </svg>\n</template>\n<script>\nexport default {\n  name: 'VaIconVuestic',\n  inject: ['contextConfig'],\n  computed: {\n    themeGradientId() {\n      return this.contextConfig.invertedColor ? 'CORPORATE' : 'ORIGINAL'\n    },\n    textColor() {\n      return this.contextConfig.invertedColor ? '#6E85E8' : '#E4FF32'\n    },\n  },\n}\n</script>\n\n<style lang=\"scss\">\n.va-icon-vuestic {\n  .st0 {\n    fill: #4ae387;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/navbar/AppNavbar.vue",
    "content": "<template>\n  <VaNavbar class=\"app-layout-navbar py-2 px-0\">\n    <template #left>\n      <div class=\"left\">\n        <Transition v-if=\"isMobile\" name=\"icon-fade\" mode=\"out-in\">\n          <VaIcon\n            color=\"primary\"\n            :name=\"isSidebarMinimized ? 'menu' : 'close'\"\n            size=\"24px\"\n            style=\"margin-top: 3px\"\n            @click=\"isSidebarMinimized = !isSidebarMinimized\"\n          />\n        </Transition>\n        <RouterLink to=\"/\" aria-label=\"Visit home page\">\n          <VuesticLogo />\n        </RouterLink>\n      </div>\n    </template>\n    <template #right>\n      <AppNavbarActions class=\"app-navbar__actions\" :is-mobile=\"isMobile\" />\n    </template>\n  </VaNavbar>\n</template>\n\n<script setup lang=\"ts\">\nimport { storeToRefs } from 'pinia'\nimport { useGlobalStore } from '../../stores/global-store'\nimport AppNavbarActions from './components/AppNavbarActions.vue'\nimport VuesticLogo from '../VuesticLogo.vue'\n\ndefineProps({\n  isMobile: { type: Boolean, default: false },\n})\n\nconst GlobalStore = useGlobalStore()\n\nconst { isSidebarMinimized } = storeToRefs(GlobalStore)\n</script>\n\n<style lang=\"scss\" scoped>\n.va-navbar {\n  z-index: 2;\n\n  @media screen and (max-width: 950px) {\n    .left {\n      width: 100%;\n    }\n\n    .app-navbar__actions {\n      display: flex;\n      justify-content: space-between;\n    }\n  }\n}\n\n.left {\n  display: flex;\n  align-items: center;\n  margin-left: 1rem;\n\n  & > * {\n    margin-right: 1rem;\n  }\n\n  & > *:last-child {\n    margin-right: 0;\n  }\n}\n\n.icon-fade-enter-active,\n.icon-fade-leave-active {\n  transition: transform 0.5s ease;\n}\n\n.icon-fade-enter,\n.icon-fade-leave-to {\n  transform: scale(0.5);\n}\n</style>\n"
  },
  {
    "path": "src/components/navbar/components/AppNavbarActions.vue",
    "content": "<template>\n  <div class=\"app-navbar-actions\">\n    <VaButton\n      v-if=\"!isMobile\"\n      preset=\"secondary\"\n      href=\"https://ui.vuestic.dev/support/consulting\"\n      target=\"_blank\"\n      color=\"textPrimary\"\n      class=\"app-navbar-actions__item flex-shrink-0 mx-0\"\n    >\n      <VaIcon size=\"large\" class=\"material-symbols-outlined mr-1\">support_agent</VaIcon>\n      {{ t('supportAndConsulting') }}\n    </VaButton>\n    <VaButton\n      v-if=\"!isMobile\"\n      preset=\"secondary\"\n      href=\"https://admin.vuestic.dev/\"\n      target=\"_blank\"\n      color=\"textPrimary\"\n      class=\"app-navbar-actions__item flex-shrink-0 mx-0\"\n    >\n      <VaIcon size=\"large\" class=\"material-symbols-outlined mr-1\">info</VaIcon>\n      {{ t('aboutVuesticAdmin') }}\n    </VaButton>\n    <GithubButton v-if=\"!isMobile\" class=\"app-navbar-actions__item\" />\n    <VaButton\n      v-if=\"!isMobile\"\n      preset=\"secondary\"\n      href=\"https://discord.gg/u7fQdqQt8c\"\n      target=\"_blank\"\n      color=\"textPrimary\"\n      class=\"app-navbar-actions__item flex-shrink-0 mx-0\"\n    >\n      <VaIcon :component=\"VaIconDiscord\" />\n    </VaButton>\n    <NotificationDropdown class=\"app-navbar-actions__item\" />\n    <ProfileDropdown class=\"app-navbar-actions__item app-navbar-actions__item--profile mr-1\" />\n  </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport ProfileDropdown from './dropdowns/ProfileDropdown.vue'\nimport NotificationDropdown from './dropdowns/NotificationDropdown.vue'\nimport GithubButton from './GitHubButton.vue'\nimport VaIconDiscord from '../../icons/VaIconDiscord.vue'\n\ndefineProps({\n  isMobile: { type: Boolean, default: false },\n})\n\nimport { useI18n } from 'vue-i18n'\nconst { t } = useI18n()\n</script>\n\n<style lang=\"scss\">\n.app-navbar-actions {\n  display: flex;\n  align-items: center;\n\n  .va-dropdown__anchor {\n    color: var(--va-primary);\n    fill: var(--va-primary);\n  }\n\n  &__item {\n    padding: 0;\n    margin-left: 0.25rem;\n    margin-right: 0.25rem;\n\n    svg {\n      height: 20px;\n    }\n\n    &--profile {\n      display: flex;\n      justify-content: center;\n    }\n\n    .va-dropdown-content {\n      background-color: var(--va-white);\n    }\n\n    @media screen and (max-width: 640px) {\n      margin-left: 0;\n      margin-right: 0;\n\n      &:first-of-type {\n        margin-left: 0;\n      }\n    }\n  }\n\n  .fa-github {\n    color: var(--va-on-background-primary);\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/navbar/components/GitHubButton.vue",
    "content": "<template>\n  <VaButton\n    preset=\"secondary\"\n    color=\"textPrimary\"\n    href=\"https://github.com/epicmaxco/vuestic-admin\"\n    target=\"_blank\"\n    aria-label=\"Visit github\"\n  >\n    <VaIcon :component=\"VaIconGitHub\" />\n  </VaButton>\n</template>\n\n<script lang=\"ts\" setup>\nimport VaIconGitHub from '../../icons/VaIconGitHub.vue'\n</script>\n"
  },
  {
    "path": "src/components/navbar/components/dropdowns/NotificationDropdown.vue",
    "content": "<template>\n  <VaDropdown :offset=\"[13, 0]\" class=\"notification-dropdown\" stick-to-edges :close-on-content-click=\"false\">\n    <template #anchor>\n      <VaButton preset=\"secondary\" color=\"textPrimary\">\n        <VaBadge overlap>\n          <template #text> 2+</template>\n          <VaIconNotification class=\"notification-dropdown__icon\" />\n        </VaBadge>\n      </VaButton>\n    </template>\n    <VaDropdownContent class=\"h-full sm:max-w-[420px] sm:h-auto\">\n      <section class=\"sm:max-h-[320px] p-4 overflow-auto\">\n        <VaList class=\"space-y-1 mb-2\">\n          <template v-for=\"(item, index) in notificationsWithRelativeTime\" :key=\"item.id\">\n            <VaListItem class=\"text-base\">\n              <VaListItemSection icon class=\"mx-0 p-0\">\n                <VaIcon :name=\"item.icon\" color=\"secondary\" />\n              </VaListItemSection>\n              <VaListItemSection>\n                {{ item.message }}\n              </VaListItemSection>\n              <VaListItemSection icon class=\"mx-1\">\n                {{ item.updateTimestamp }}\n              </VaListItemSection>\n            </VaListItem>\n            <VaListSeparator v-if=\"item.separator && index !== notificationsWithRelativeTime.length - 1\" class=\"mx-3\" />\n          </template>\n        </VaList>\n\n        <VaButton preset=\"primary\" class=\"w-full\" @click=\"displayAllNotifications = !displayAllNotifications\"\n          >{{ displayAllNotifications ? t('notifications.less') : t('notifications.all') }}\n        </VaButton>\n      </section>\n    </VaDropdownContent>\n  </VaDropdown>\n</template>\n\n<script setup lang=\"ts\">\nimport { ref, computed } from 'vue'\nimport { useI18n } from 'vue-i18n'\nimport VaIconNotification from '../../../icons/VaIconNotification.vue'\n\nconst { t, locale } = useI18n()\n\nconst baseNumberOfVisibleNotifications = 4\nconst rtf = new Intl.RelativeTimeFormat(locale.value, { style: 'short' })\nconst displayAllNotifications = ref(false)\n\ninterface INotification {\n  message: string\n  icon: string\n  id: number\n  separator?: boolean\n  updateTimestamp: Date\n}\n\nconst makeDateFromNow = (timeFromNow: number) => {\n  const date = new Date()\n  date.setTime(date.getTime() + timeFromNow)\n  return date\n}\n\nconst notifications: INotification[] = [\n  {\n    message: '4 pending requests',\n    icon: 'favorite_outline',\n    id: 1,\n    separator: true,\n    updateTimestamp: makeDateFromNow(-3 * 60 * 1000),\n  },\n  {\n    message: '3 new reports',\n    icon: 'calendar_today',\n    id: 2,\n    separator: true,\n    updateTimestamp: makeDateFromNow(-12 * 60 * 60 * 1000),\n  },\n  {\n    message: 'Whoops! Your trial period has expired.',\n    icon: 'error_outline',\n    id: 3,\n    separator: true,\n    updateTimestamp: makeDateFromNow(-2 * 24 * 60 * 60 * 1000),\n  },\n  {\n    message: 'It looks like your timezone is set incorrectly, please change it to avoid issues with Memory.',\n    icon: 'schedule',\n    id: 4,\n    updateTimestamp: makeDateFromNow(-2 * 7 * 24 * 60 * 60 * 1000),\n  },\n  {\n    message: '2 new team members added',\n    icon: 'group_add',\n    id: 5,\n    separator: false,\n    updateTimestamp: makeDateFromNow(-3 * 60 * 1000),\n  },\n  {\n    message: 'Monthly budget exceeded by 10%',\n    icon: 'trending_up',\n    id: 6,\n    separator: true,\n    updateTimestamp: makeDateFromNow(-3 * 24 * 60 * 60 * 1000),\n  },\n  {\n    message: '7 tasks are approaching their deadlines',\n    icon: 'alarm',\n    id: 7,\n    separator: false,\n    updateTimestamp: makeDateFromNow(-5 * 60 * 60 * 1000),\n  },\n  {\n    message: 'New software update available',\n    icon: 'system_update',\n    id: 8,\n    separator: true,\n    updateTimestamp: makeDateFromNow(-1 * 24 * 60 * 60 * 1000),\n  },\n].sort((a, b) => new Date(b.updateTimestamp).getTime() - new Date(a.updateTimestamp).getTime())\n\nconst TIME_NAMES = {\n  second: 1000,\n  minute: 1000 * 60,\n  hour: 1000 * 60 * 60,\n  day: 1000 * 60 * 60 * 24,\n  week: 1000 * 60 * 60 * 24 * 7,\n  month: 1000 * 60 * 60 * 24 * 30,\n  year: 1000 * 60 * 60 * 24 * 365,\n}\n\nconst getTimeName = (differenceTime: number) => {\n  return Object.keys(TIME_NAMES).reduce(\n    (acc, key) => (TIME_NAMES[key as keyof typeof TIME_NAMES] < differenceTime ? key : acc),\n    'month',\n  ) as keyof typeof TIME_NAMES\n}\n\nconst notificationsWithRelativeTime = computed(() => {\n  const list = displayAllNotifications.value ? notifications : notifications.slice(0, baseNumberOfVisibleNotifications)\n\n  return list.map((item, index) => {\n    const timeDifference = Math.round(new Date().getTime() - new Date(item.updateTimestamp).getTime())\n    const timeName = getTimeName(timeDifference)\n\n    let separator = false\n\n    const nextItem = list[index + 1]\n    if (nextItem) {\n      const nextItemDifference = Math.round(new Date().getTime() - new Date(nextItem.updateTimestamp).getTime())\n      const nextItemTimeName = getTimeName(nextItemDifference)\n\n      if (timeName !== nextItemTimeName) {\n        separator = true\n      }\n    }\n\n    return {\n      ...item,\n      updateTimestamp: rtf.format(-1 * Math.round(timeDifference / TIME_NAMES[timeName]), timeName),\n      separator,\n    }\n  })\n})\n</script>\n\n<style lang=\"scss\" scoped>\n.notification-dropdown {\n  cursor: pointer;\n\n  .notification-dropdown__icon {\n    position: relative;\n    display: flex;\n    align-items: center;\n  }\n\n  .va-dropdown__anchor {\n    display: inline-block;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/navbar/components/dropdowns/ProfileDropdown.vue",
    "content": "<template>\n  <div class=\"profile-dropdown-wrapper\">\n    <VaDropdown v-model=\"isShown\" :offset=\"[9, 0]\" class=\"profile-dropdown\" stick-to-edges>\n      <template #anchor>\n        <VaButton preset=\"secondary\" color=\"textPrimary\">\n          <span class=\"profile-dropdown__anchor min-w-max\">\n            <slot />\n            <VaAvatar :size=\"32\" color=\"warning\"> 😍 </VaAvatar>\n          </span>\n        </VaButton>\n      </template>\n      <VaDropdownContent\n        class=\"profile-dropdown__content md:w-60 px-0 py-4 w-full\"\n        :style=\"{ '--hover-color': hoverColor }\"\n      >\n        <VaList v-for=\"group in options\" :key=\"group.name\">\n          <header v-if=\"group.name\" class=\"uppercase text-[var(--va-secondary)] opacity-80 font-bold text-xs px-4\">\n            {{ t(`user.${group.name}`) }}\n          </header>\n          <VaListItem\n            v-for=\"item in group.list\"\n            :key=\"item.name\"\n            class=\"menu-item px-4 text-base cursor-pointer h-8\"\n            v-bind=\"resolveLinkAttribute(item)\"\n          >\n            <VaIcon :name=\"item.icon\" class=\"pr-1\" color=\"secondary\" />\n            {{ t(`user.${item.name}`) }}\n          </VaListItem>\n          <VaListSeparator v-if=\"group.separator\" class=\"mx-3 my-2\" />\n        </VaList>\n      </VaDropdownContent>\n    </VaDropdown>\n  </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { ref, computed } from 'vue'\nimport { useI18n } from 'vue-i18n'\nimport { useColors } from 'vuestic-ui'\n\nconst { colors, setHSLAColor } = useColors()\nconst hoverColor = computed(() => setHSLAColor(colors.focus, { a: 0.1 }))\n\nconst { t } = useI18n()\n\ntype ProfileListItem = {\n  name: string\n  to?: string\n  href?: string\n  icon: string\n}\n\ntype ProfileOptions = {\n  name: string\n  separator: boolean\n  list: ProfileListItem[]\n}\n\nwithDefaults(\n  defineProps<{\n    options?: ProfileOptions[]\n  }>(),\n  {\n    options: () => [\n      {\n        name: 'account',\n        separator: true,\n        list: [\n          {\n            name: 'profile',\n            to: 'preferences',\n            icon: 'mso-account_circle',\n          },\n          {\n            name: 'settings',\n            to: 'settings',\n            icon: 'mso-settings',\n          },\n          {\n            name: 'billing',\n            to: 'billing',\n            icon: 'mso-receipt_long',\n          },\n          {\n            name: 'projects',\n            to: 'projects',\n            icon: 'mso-favorite',\n          },\n        ],\n      },\n      {\n        name: 'explore',\n        separator: true,\n        list: [\n          {\n            name: 'faq',\n            to: 'faq',\n            icon: 'mso-quiz',\n          },\n          {\n            name: 'helpAndSupport',\n            href: 'https://discord.gg/u7fQdqQt8c',\n            icon: 'mso-error',\n          },\n        ],\n      },\n      {\n        name: '',\n        separator: false,\n        list: [\n          {\n            name: 'logout',\n            to: 'login',\n            icon: 'mso-logout',\n          },\n        ],\n      },\n    ],\n  },\n)\n\nconst isShown = ref(false)\n\nconst resolveLinkAttribute = (item: ProfileListItem) => {\n  return item.to ? { to: { name: item.to } } : item.href ? { href: item.href, target: '_blank' } : {}\n}\n</script>\n\n<style lang=\"scss\">\n.profile-dropdown {\n  cursor: pointer;\n\n  &__content {\n    .menu-item:hover {\n      background: var(--hover-color);\n    }\n  }\n\n  &__anchor {\n    display: inline-block;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/sidebar/AppSidebar.vue",
    "content": "<template>\n  <VaSidebar v-model=\"writableVisible\" :width=\"sidebarWidth\" :color=\"color\" minimized-width=\"0\">\n    <VaAccordion v-model=\"value\" multiple>\n      <VaCollapse v-for=\"(route, index) in navigationRoutes.routes\" :key=\"index\">\n        <template #header=\"{ value: isCollapsed }\">\n          <VaSidebarItem\n            :to=\"route.children ? undefined : { name: route.name }\"\n            :active=\"routeHasActiveChild(route)\"\n            :active-color=\"activeColor\"\n            :text-color=\"textColor(route)\"\n            :aria-label=\"`${route.children ? 'Open category ' : 'Visit'} ${t(route.displayName)}`\"\n            role=\"button\"\n            hover-opacity=\"0.10\"\n          >\n            <VaSidebarItemContent class=\"py-3 pr-2 pl-4\">\n              <VaIcon\n                v-if=\"route.meta.icon\"\n                aria-hidden=\"true\"\n                :name=\"route.meta.icon\"\n                size=\"20px\"\n                :color=\"iconColor(route)\"\n              />\n              <VaSidebarItemTitle class=\"flex justify-between items-center leading-5 font-semibold\">\n                {{ t(route.displayName) }}\n                <VaIcon v-if=\"route.children\" :name=\"arrowDirection(isCollapsed)\" size=\"20px\" />\n              </VaSidebarItemTitle>\n            </VaSidebarItemContent>\n          </VaSidebarItem>\n        </template>\n        <template #body>\n          <div v-for=\"(childRoute, index2) in route.children\" :key=\"index2\">\n            <VaSidebarItem\n              :to=\"{ name: childRoute.name }\"\n              :active=\"isActiveChildRoute(childRoute)\"\n              :active-color=\"activeColor\"\n              :text-color=\"textColor(childRoute)\"\n              :aria-label=\"`Visit ${t(route.displayName)}`\"\n              hover-opacity=\"0.10\"\n            >\n              <VaSidebarItemContent class=\"py-3 pr-2 pl-11\">\n                <VaSidebarItemTitle class=\"leading-5 font-semibold\">\n                  {{ t(childRoute.displayName) }}\n                </VaSidebarItemTitle>\n              </VaSidebarItemContent>\n            </VaSidebarItem>\n          </div>\n        </template>\n      </VaCollapse>\n    </VaAccordion>\n  </VaSidebar>\n</template>\n<script lang=\"ts\">\nimport { defineComponent, watch, ref, computed } from 'vue'\nimport { useRoute } from 'vue-router'\n\nimport { useI18n } from 'vue-i18n'\nimport { useColors } from 'vuestic-ui'\n\nimport navigationRoutes, { type INavigationRoute } from './NavigationRoutes'\n\nexport default defineComponent({\n  name: 'Sidebar',\n  props: {\n    visible: { type: Boolean, default: true },\n    mobile: { type: Boolean, default: false },\n  },\n  emits: ['update:visible'],\n\n  setup: (props, { emit }) => {\n    const { getColor, colorToRgba } = useColors()\n    const route = useRoute()\n    const { t } = useI18n()\n\n    const value = ref<boolean[]>([])\n\n    const writableVisible = computed({\n      get: () => props.visible,\n      set: (v: boolean) => emit('update:visible', v),\n    })\n\n    const isActiveChildRoute = (child: INavigationRoute) => route.name === child.name\n\n    const routeHasActiveChild = (section: INavigationRoute) => {\n      if (!section.children) {\n        return route.path.endsWith(`${section.name}`)\n      }\n\n      return section.children.some(({ name }) => route.path.endsWith(`${name}`))\n    }\n\n    const setActiveExpand = () =>\n      (value.value = navigationRoutes.routes.map((route: INavigationRoute) => routeHasActiveChild(route)))\n\n    const sidebarWidth = computed(() => (props.mobile ? '100vw' : '280px'))\n    const color = computed(() => getColor('background-secondary'))\n    const activeColor = computed(() => colorToRgba(getColor('focus'), 0.1))\n\n    const iconColor = (route: INavigationRoute) => (routeHasActiveChild(route) ? 'primary' : 'secondary')\n    const textColor = (route: INavigationRoute) => (routeHasActiveChild(route) ? 'primary' : 'textPrimary')\n    const arrowDirection = (state: boolean) => (state ? 'va-arrow-up' : 'va-arrow-down')\n\n    watch(() => route.fullPath, setActiveExpand, { immediate: true })\n\n    return {\n      writableVisible,\n      sidebarWidth,\n      value,\n      color,\n      activeColor,\n      navigationRoutes,\n      routeHasActiveChild,\n      isActiveChildRoute,\n      t,\n      iconColor,\n      textColor,\n      arrowDirection,\n    }\n  },\n})\n</script>\n"
  },
  {
    "path": "src/components/sidebar/NavigationRoutes.ts",
    "content": "export interface INavigationRoute {\n  name: string\n  displayName: string\n  meta: { icon: string }\n  children?: INavigationRoute[]\n}\n\nexport default {\n  root: {\n    name: '/',\n    displayName: 'navigationRoutes.home',\n  },\n  routes: [\n    {\n      name: 'dashboard',\n      displayName: 'menu.dashboard',\n      meta: {\n        icon: 'vuestic-iconset-dashboard',\n      },\n    },\n    {\n      name: 'users',\n      displayName: 'menu.users',\n      meta: {\n        icon: 'group',\n      },\n    },\n    {\n      name: 'projects',\n      displayName: 'menu.projects',\n      meta: {\n        icon: 'folder_shared',\n      },\n    },\n    {\n      name: 'payments',\n      displayName: 'menu.payments',\n      meta: {\n        icon: 'credit_card',\n      },\n      children: [\n        {\n          name: 'payment-methods',\n          displayName: 'menu.payment-methods',\n        },\n        {\n          name: 'pricing-plans',\n          displayName: 'menu.pricing-plans',\n        },\n        {\n          name: 'billing',\n          displayName: 'menu.billing',\n        },\n      ],\n    },\n    {\n      name: 'auth',\n      displayName: 'menu.auth',\n      meta: {\n        icon: 'login',\n      },\n      children: [\n        {\n          name: 'login',\n          displayName: 'menu.login',\n        },\n        {\n          name: 'signup',\n          displayName: 'menu.signup',\n        },\n        {\n          name: 'recover-password',\n          displayName: 'menu.recover-password',\n        },\n      ],\n    },\n\n    {\n      name: 'faq',\n      displayName: 'menu.faq',\n      meta: {\n        icon: 'quiz',\n      },\n    },\n    {\n      name: '404',\n      displayName: 'menu.404',\n      meta: {\n        icon: 'vuestic-iconset-files',\n      },\n    },\n    {\n      name: 'preferences',\n      displayName: 'menu.preferences',\n      meta: {\n        icon: 'manage_accounts',\n      },\n    },\n    {\n      name: 'settings',\n      displayName: 'menu.settings',\n      meta: {\n        icon: 'settings',\n      },\n    },\n  ] as INavigationRoute[],\n}\n"
  },
  {
    "path": "src/components/typography/Typography.stories.ts",
    "content": "import Typography from './Typography.vue'\n\nexport default {\n  title: 'Typography',\n  component: Typography,\n  tags: ['autodocs'],\n}\n\nexport const Default = () => ({\n  components: { Typography },\n  template: `\n    <Typography/>\n  `,\n})\n"
  },
  {
    "path": "src/components/typography/Typography.vue",
    "content": "<template>\n  <VaContent class=\"typography content\">\n    <div class=\"grid grid-cols-12 gap-6\">\n      <VaCard class=\"col-span-12\">\n        <VaCardTitle>Primary text styles</VaCardTitle>\n        <VaCardContent>\n          <div class=\"mb-8\">\n            <h1>Display 1 Heading</h1>\n            <p>\n              Of all of the celestial bodies that capture our attention and fascination as astronomers, none has a\n              greater influence on life on planet Earth than it’s own satellite, the moon. When you think about it.\n            </p>\n          </div>\n          <div class=\"mb-8\">\n            <h2>Display 2 Heading</h2>\n            <p>\n              None has a greater influence on life on planet Earth than it’s own satellite, the moon. When you think\n              about it.\n            </p>\n          </div>\n          <div class=\"mb-8\">\n            <h3>Display 3 Heading</h3>\n            <p>\n              Let’s talk about meat fondue recipes and what you need to know first. Meat fondue also known as oil fondue\n              is a method of cooking all kinds of meats, poultry, and seafood in a pot of heated oil.\n            </p>\n          </div>\n          <div class=\"mb-8\">\n            <h4>Display 4 Heading</h4>\n            <p>\n              There is something about parenthood that gives us a sense of history and a deeply rooted desire to send on\n              into the next generation the great things we have discovered about life.\n            </p>\n          </div>\n          <div class=\"mb-8\">\n            <h5>Display 5 Heading</h5>\n            <p>\n              There is a moment in the life of any aspiring astronomer that it is time to buy that first telescope. It’s\n              exciting to think about setting up your own viewing station.\n            </p>\n          </div>\n          <div class=\"mb-8\">\n            <p>\n              Of all of the celestial bodies that capture our attention and fascination as astronomers, none has a\n              greater influence on life on planet Earth than it’s own satellite, the moon. When you think about it.\n            </p>\n          </div>\n          <div class=\"mb-8\">\n            <div class=\"text--secondary\">\n              Of all of the celestial bodies that capture our attention and fascination as astronomers, none has a\n              greater influence on life on planet Earth than it’s own satellite, the moon. When you think about it.\n            </div>\n          </div>\n          <div class=\"mb-8\">\n            <pre class=\"code-snippet\">\n    &lt;p class=“code-snippet”>\n      This is a wonderful example.\n      &lt;a href=“#” onClick=“”>Read more&lt;/a>\n    &lt;/p></pre\n            >\n            <p>\n              Of all of the celestial bodies that capture our attention and fascination as astronomers,\n              <span class=\"text--code\">currentColor</span> none has a greater influence on life on planet Earth than\n              it’s own satellite, the moon.\n            </p>\n          </div>\n        </VaCardContent>\n      </VaCard>\n\n      <VaCard class=\"col-span-12\">\n        <VaCardTitle>Secondary text styles</VaCardTitle>\n        <VaCardContent>\n          <p class=\"va-h3\">Lists</p>\n          <ol class=\"va-ordered\">\n            <li>\n              Of all of the celestial bodies that capture our attention and fascination as astronomers, none has a\n              greater influence.\n            </li>\n            <li>Earth than it’s own satellite, the moon. When you think about it.</li>\n            <li>Attention and fascination as.</li>\n          </ol>\n          <ol class=\"va-ordered\">\n            <li>Coffee</li>\n            <li>\n              Tea\n              <ol class=\"va-ordered\">\n                <li>\n                  Black tea\n                  <ol class=\"va-ordered\">\n                    <li>Brooke Bond</li>\n                    <li>Lipton</li>\n                  </ol>\n                </li>\n                <li>\n                  Green tea\n                  <ol class=\"va-ordered\">\n                    <li>Greenfield</li>\n                    <li>Tess</li>\n                  </ol>\n                </li>\n              </ol>\n            </li>\n            <li>Milk</li>\n          </ol>\n          <ul class=\"va-unordered\">\n            <li>\n              Of all of the celestial bodies that capture our attention and fascination as astronomers, none has a\n              greater influence.\n            </li>\n            <li>Earth than it’s own satellite, the moon. When you think about it.</li>\n            <li>Attention and fascination as .</li>\n          </ul>\n          <ul class=\"va-unordered\">\n            <li>Coffee</li>\n            <li>\n              Tea\n              <ul class=\"va-unordered\">\n                <li>\n                  Black tea\n                  <ul class=\"va-unordered\">\n                    <li>Brooke Bond</li>\n                    <li>Lipton</li>\n                  </ul>\n                </li>\n                <li>\n                  Green tea\n                  <ul class=\"va-unordered\">\n                    <li>Greenfield</li>\n                    <li>Tess</li>\n                  </ul>\n                </li>\n              </ul>\n            </li>\n            <li>Milk</li>\n          </ul>\n          <p class=\"va-h3\">Links</p>\n          <div class=\"mb-8\">\n            <a class=\"link mr-8\" href=\"/default\" @click.prevent> Default Link </a>\n            <a class=\"link-secondary\" href=\"/secondary\" @click.prevent> Secondary Link </a>\n          </div>\n          <div class=\"mb-8\">\n            <p class=\"va-h3\">Other Elements</p>\n            <p>\n              None has a greater influence on\n              <span class=\"text--highlighted\">highlighted text</span>\n              life on planet Earth than it’s own satellite, the selected chunk of text. When you think about it.\n            </p>\n          </div>\n          <div class=\"mb-8\">\n            <blockquote class=\"va-blockquote border-primary\">\n              <p>\n                BQ: Let’s talk about meat fondue recipes and what you need to know first. Meat fondue also known as oil\n                fondue is a method of cooking all kinds.\n              </p>\n              <p>\n                <i>— Mister Lebowski</i>\n              </p>\n            </blockquote>\n          </div>\n          <div class=\"mb-8\">\n            <div class=\"text-block\">\n              <p class=\"va-h3\">va-h3 Heading</p>\n              <span\n                >Of all of the celestial bodies that capture our attention and fascination as astronomers, none has a\n                greater influence on life on planet Earth than it’s own satellite, the moon. When you think about\n                it.</span\n              >\n            </div>\n          </div>\n          <div class=\"mb-8\">\n            <table class=\"va-table\">\n              <thead>\n                <tr>\n                  <th v-for=\"(data, index) in tableData[0]\" :key=\"index\">{{ data }}</th>\n                </tr>\n              </thead>\n              <tbody>\n                <tr v-for=\"(rowData, rowIndex) in tableData.slice(1)\" :key=\"rowIndex\">\n                  <td v-for=\"(itemData, colIndex) in rowData\" :key=\"colIndex\">\n                    {{ itemData }}\n                  </td>\n                </tr>\n              </tbody>\n            </table>\n          </div>\n        </VaCardContent>\n      </VaCard>\n    </div>\n  </VaContent>\n</template>\n\n<script lang=\"ts\" setup>\nimport { computed } from 'vue'\n// import { useI18n } from 'vue-i18n'\n//\n// const { t } = useI18n()\n\nconst tableData = computed(() => [\n  ['Id', 'FooBar type', 'Actions'],\n  ['1', 'Zebra', 'Delete'],\n  ['2', 'Not Zebra', 'Remove'],\n  ['3', 'Very Zebra', 'Eradicate'],\n])\n</script>\n\n<style lang=\"scss\" scoped>\n.text--secondary {\n  color: var(--va-secondary);\n}\n</style>\n"
  },
  {
    "path": "src/components/va-charts/VaChart.vue",
    "content": "<template>\n  <component :is=\"chartComponent\" :chart-data=\"data\" :data=\"data\" :options=\"chartOptions\" class=\"va-chart\" />\n</template>\n\n<script lang=\"ts\" setup generic=\"T extends 'line' | 'bar' | 'bubble' | 'doughnut' | 'pie'\">\nimport { computed } from 'vue'\nimport type { ChartOptions, ChartData, ChartComponent } from 'chart.js'\nimport { defaultConfig, chartTypesMap } from './vaChartConfigs'\n\ndefineOptions({\n  name: 'VaChart',\n})\n\nconst props = defineProps<{\n  data: ChartData<T>\n  options?: ChartOptions<T>\n  type: T\n}>()\n\nconst chartComponent = chartTypesMap[props.type] as unknown as ChartComponent\n\nconst chartOptions = computed<ChartOptions<T>>(() => ({\n  ...(defaultConfig as any),\n  ...props.options,\n}))\n</script>\n\n<style lang=\"scss\">\n.va-chart {\n  min-width: 100%;\n  min-height: 100%;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n\n  > * {\n    height: 100%;\n    width: 100%;\n  }\n\n  canvas {\n    width: 100%;\n    height: auto;\n    min-height: 20px;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/va-charts/chart-types/BarChart.vue",
    "content": "<template>\n  <Bar :data=\"data\" :options=\"options\" />\n</template>\n\n<script lang=\"ts\" setup>\nimport { Bar } from 'vue-chartjs'\nimport type { ChartOptions } from 'chart.js'\nimport { Chart as ChartJS, Title, Tooltip, Legend, BarElement, LinearScale, CategoryScale } from 'chart.js'\n\nChartJS.register(Title, Tooltip, Legend, BarElement, LinearScale, CategoryScale)\n\ndefineProps<{\n  data: any\n  options?: ChartOptions<'bar'>\n}>()\n</script>\n"
  },
  {
    "path": "src/components/va-charts/chart-types/BubbleChart.vue",
    "content": "<template>\n  <Bubble :data=\"props.data\" :options=\"options\" />\n</template>\n\n<script lang=\"ts\" setup>\nimport { Bubble } from 'vue-chartjs'\nimport type { ChartOptions } from 'chart.js'\nimport { Chart as ChartJS, Title, Tooltip, Legend, PointElement, LinearScale } from 'chart.js'\nimport { TBubbleChartData } from '../../../data/types'\n\nChartJS.register(Title, Tooltip, Legend, PointElement, LinearScale)\n\nconst props = defineProps<{\n  data: TBubbleChartData\n  options?: ChartOptions<'bubble'>\n}>()\n</script>\n"
  },
  {
    "path": "src/components/va-charts/chart-types/DoughnutChart.vue",
    "content": "<template>\n  <Doughnut :data=\"props.data\" :options=\"options\" />\n</template>\n\n<script lang=\"ts\" setup>\nimport { Doughnut } from 'vue-chartjs'\nimport type { ChartOptions } from 'chart.js'\nimport { Chart as ChartJS, Title, Tooltip, Legend, ArcElement, CategoryScale } from 'chart.js'\nimport { TDoughnutChartData } from '../../../data/types'\n\nChartJS.register(Title, Tooltip, Legend, ArcElement, CategoryScale)\n\nconst props = defineProps<{\n  data: TDoughnutChartData\n  options?: ChartOptions<'doughnut'>\n}>()\n</script>\n"
  },
  {
    "path": "src/components/va-charts/chart-types/HorizontalBarChart.vue",
    "content": "<template>\n  <Bar :data=\"props.data\" :options=\"{ ...options, ...horizontalBarOptions }\" />\n</template>\n\n<script lang=\"ts\" setup>\nimport { Bar } from 'vue-chartjs'\nimport type { ChartOptions } from 'chart.js'\nimport { Chart as ChartJS, Title, Tooltip, Legend, BarElement, LinearScale, CategoryScale } from 'chart.js'\nimport { TBarChartData } from '../../../data/types'\n\nChartJS.register(Title, Tooltip, Legend, BarElement, LinearScale, CategoryScale)\n\nconst horizontalBarOptions = {\n  indexAxis: 'y' as 'x' | 'y',\n  elements: {\n    bar: {\n      borderWidth: 1,\n    },\n  },\n}\n\nconst props = defineProps<{\n  data: TBarChartData\n  options?: ChartOptions<'bar'>\n}>()\n</script>\n"
  },
  {
    "path": "src/components/va-charts/chart-types/LineChart.vue",
    "content": "<template>\n  <Line ref=\"chart\" :data=\"computedChartData\" :options=\"options\" />\n</template>\n\n<script lang=\"ts\" setup>\nimport { ref } from 'vue'\nimport { Line } from 'vue-chartjs'\nimport type { ChartOptions } from 'chart.js'\nimport {\n  Chart as ChartJS,\n  Title,\n  Tooltip,\n  Legend,\n  LineElement,\n  LinearScale,\n  PointElement,\n  CategoryScale,\n  Filler,\n} from 'chart.js'\nimport { TLineChartData } from '../../../data/types'\nimport { computed } from 'vue'\nimport { useColors } from 'vuestic-ui'\n\nChartJS.register(Title, Tooltip, Legend, LineElement, LinearScale, PointElement, CategoryScale, Filler)\n\nconst chart = ref<typeof Line>()\n\nconst props = defineProps<{\n  data: TLineChartData\n  options?: ChartOptions<'line'>\n}>()\n\nconst ctx = computed(() => {\n  if (!chart.value) {\n    return null\n  }\n\n  return chart.value.chart?.ctx ?? null\n})\n\nconst { setHSLAColor, getColor } = useColors()\n\nconst colors = ['primary', 'success', 'danger', 'warning']\n\nconst computedChartData = computed<TLineChartData>(() => {\n  if (!ctx.value) {\n    return props.data\n  }\n\n  const makeGradient = (bg: string) => {\n    const gradient = ctx.value!.createLinearGradient(0, 0, 0, 90)\n    gradient.addColorStop(0, setHSLAColor(bg, { a: 0.4 }))\n    gradient.addColorStop(1, setHSLAColor(bg, { a: 0.0 }))\n    return gradient\n  }\n\n  const datasets = props.data.datasets.map((dataset, index) => {\n    const color = getColor(colors[index % colors.length])\n\n    return {\n      ...dataset,\n      fill: true,\n      backgroundColor: makeGradient(color),\n      borderColor: color,\n      pointRadius: 0,\n      borderWidth: 2,\n    }\n  })\n\n  return { ...props.data, datasets }\n})\n</script>\n"
  },
  {
    "path": "src/components/va-charts/chart-types/Map.vue",
    "content": "<template>\n  <canvas ref=\"canvas\" style=\"max-width: 100%\" />\n</template>\n\n<script lang=\"ts\" setup>\nimport { ref } from 'vue'\nimport { Chart as ChartJS, Title, Tooltip, Legend, ArcElement, CategoryScale, ChartOptions } from 'chart.js'\nimport { ChoroplethController, ProjectionScale, ColorScale, GeoFeature } from 'chartjs-chart-geo'\nimport { watchEffect } from 'vue'\nimport { ChartData } from 'chart.js'\n\nChartJS.register(\n  Title,\n  Tooltip,\n  Legend,\n  ArcElement,\n  CategoryScale,\n  ChoroplethController,\n  ProjectionScale,\n  ColorScale,\n  GeoFeature,\n)\n\nconst canvas = ref<HTMLCanvasElement | null>(null)\n\nfunction getColor(revenue: number) {\n  return revenue >= 0.9 ? '#63A6F8' : revenue > 0.4 ? '#8FC0FA' : '#EDF0F1'\n}\n\nconst props = defineProps<{\n  options?: ChartOptions<'choropleth'>\n  data: ChartData<'choropleth', { feature: any; value: number }[], string>\n}>()\n\nwatchEffect(() => {\n  if (canvas.value === null) {\n    return\n  }\n\n  new ChartJS(canvas.value.getContext('2d')!, {\n    type: 'choropleth',\n    data: props.data,\n    options: {\n      plugins: {\n        legend: {\n          display: false,\n        },\n      },\n      scales: {\n        projection: {\n          axis: 'x',\n          projection: 'mercator',\n          projectionScale: 1.6,\n        },\n        color: {\n          axis: 'x',\n          quantize: 5,\n          display: false,\n          interpolate: getColor,\n        },\n      },\n      animation: false,\n    },\n  })\n})\n</script>\n"
  },
  {
    "path": "src/components/va-charts/chart-types/PieChart.vue",
    "content": "<template>\n  <Pie :data=\"props.data\" :options=\"options\" />\n</template>\n\n<script lang=\"ts\" setup>\nimport { Pie } from 'vue-chartjs'\nimport type { ChartOptions } from 'chart.js'\nimport { Chart as ChartJS, Title, Tooltip, Legend, ArcElement, CategoryScale } from 'chart.js'\nimport { TPieChartData } from '../../../data/types'\n\nChartJS.register(Title, Tooltip, Legend, ArcElement, CategoryScale)\n\nconst props = defineProps<{\n  data: TPieChartData\n  options?: ChartOptions<'pie'>\n}>()\n</script>\n"
  },
  {
    "path": "src/components/va-charts/external-tooltip.ts",
    "content": "import { Chart, TooltipModel } from 'chart.js'\nimport { computePosition, flip, shift } from '@floating-ui/dom'\n\nconst getOrCreateTooltip = (chart: Chart) => {\n  let tooltipEl = chart.canvas.parentNode?.querySelector('div')\n\n  if (!tooltipEl) {\n    tooltipEl = document.createElement('div')\n    tooltipEl.style.background = 'rgba(0, 0, 0, 0.7)'\n    tooltipEl.style.borderRadius = '3px'\n    tooltipEl.style.color = 'white'\n    tooltipEl.style.opacity = '1'\n    tooltipEl.style.pointerEvents = 'none'\n    tooltipEl.style.position = 'absolute'\n    // tooltipEl.style.transform = 'translate(-50%, 0)'\n    tooltipEl.style.left = '0'\n    tooltipEl.style.top = '0'\n    tooltipEl.style.transition = 'all .1s ease'\n    tooltipEl.style.height = 'min-content'\n    tooltipEl.style.maxWidth = '200px'\n    tooltipEl.style.zIndex = '9999'\n\n    const table = document.createElement('table')\n    table.style.margin = '0px'\n\n    tooltipEl.appendChild(table)\n    chart.canvas.parentNode?.appendChild(tooltipEl)\n  }\n\n  return tooltipEl\n}\n\nexport const externalTooltipHandler = (context: { chart: Chart; tooltip: TooltipModel<any> }) => {\n  // Tooltip Element\n  const { chart, tooltip } = context\n  const tooltipEl = getOrCreateTooltip(chart)\n\n  // Hide if no tooltip\n  if (tooltip.opacity === 0) {\n    tooltipEl.style.opacity = '0'\n    return\n  }\n\n  // Set Text\n  if (tooltip.body) {\n    const titleLines = tooltip.title || []\n    const bodyLines = tooltip.body.map((b) => b.lines)\n\n    const tableHead = document.createElement('thead')\n\n    titleLines.forEach((title) => {\n      const tr = document.createElement('tr')\n      tr.style.borderWidth = '0'\n\n      const th = document.createElement('th')\n      th.style.borderWidth = '0'\n      const text = document.createTextNode(title)\n\n      th.appendChild(text)\n      tr.appendChild(th)\n      tableHead.appendChild(tr)\n    })\n\n    const tableBody = document.createElement('tbody')\n    bodyLines.forEach((body, i) => {\n      const colors = tooltip.labelColors[i]\n\n      const span = document.createElement('span')\n      span.style.background = String(colors.backgroundColor)\n      span.style.borderColor = String(colors.borderColor)\n      span.style.borderWidth = '2px'\n      span.style.marginRight = '10px'\n      span.style.height = '10px'\n      span.style.width = '10px'\n      span.style.display = 'inline-block'\n\n      const tr = document.createElement('tr')\n      tr.style.backgroundColor = 'inherit'\n      tr.style.borderWidth = '0'\n\n      const td = document.createElement('td')\n      td.style.borderWidth = '0'\n\n      const text = document.createTextNode(body as any)\n\n      td.appendChild(span)\n      td.appendChild(text)\n      tr.appendChild(td)\n      tableBody.appendChild(tr)\n    })\n\n    const tableRoot = tooltipEl.querySelector('table')\n\n    // Remove old children\n    while (tableRoot?.firstChild) {\n      tableRoot.firstChild.remove()\n    }\n\n    // Add new children\n    tableRoot?.appendChild(tableHead)\n    tableRoot?.appendChild(tableBody)\n  }\n\n  // Display, position, and set styles for font\n  tooltipEl.style.opacity = '1'\n  tooltipEl.style.padding = tooltip.options.padding + 'px ' + tooltip.options.padding + 'px'\n\n  computePosition(chart.canvas.parentNode! as HTMLElement, tooltipEl!, {\n    placement: 'top',\n    middleware: [flip(), shift()],\n  }).then(({ x, y }) => {\n    Object.assign(tooltipEl!.style, {\n      left: `${x}px`,\n      top: `${y}px`,\n    })\n  })\n}\n"
  },
  {
    "path": "src/components/va-charts/vaChartConfigs.js",
    "content": "import { defineAsyncComponent, markRaw } from 'vue'\n\nconst DEFAULT_FONT_FAMILY = \"'Inter', sans-serif\"\n\nexport const defaultConfig = {\n  scales: {\n    x: {\n      ticks: {\n        font: {\n          family: DEFAULT_FONT_FAMILY,\n        },\n      },\n    },\n    y: {\n      ticks: {\n        font: {\n          family: DEFAULT_FONT_FAMILY,\n        },\n      },\n    },\n  },\n  plugins: {\n    legend: {\n      position: 'bottom',\n      labels: {\n        font: {\n          color: '#34495e',\n          family: DEFAULT_FONT_FAMILY,\n          size: 14,\n        },\n        usePointStyle: true,\n      },\n    },\n    tooltip: {\n      bodyFont: {\n        size: 14,\n        family: DEFAULT_FONT_FAMILY,\n      },\n      boxPadding: 4,\n    },\n  },\n  datasets: {\n    line: {\n      fill: 'origin',\n      tension: 0.3,\n      borderColor: 'transparent',\n    },\n    bubble: {\n      borderColor: 'transparent',\n    },\n    bar: {\n      borderColor: 'transparent',\n    },\n  },\n  maintainAspectRatio: false,\n  animation: true,\n}\n\nexport const doughnutConfig = {\n  cutout: '80%',\n  scales: {\n    x: {\n      display: false,\n      grid: {\n        display: false, // Disable X-axis grid lines (\"net\")\n      },\n    },\n    y: {\n      display: false,\n      grid: {\n        display: false, // Disable Y-axis grid lines (\"net\")\n      },\n      ticks: {\n        display: false, // Hide Y-axis values\n      },\n    },\n  },\n  plugins: {\n    legend: {\n      display: false,\n    },\n  },\n  datasets: {\n    line: {\n      fill: 'origin',\n      tension: 0.3,\n      borderColor: 'transparent',\n    },\n    bubble: {\n      borderColor: 'transparent',\n    },\n    bar: {\n      borderColor: 'transparent',\n    },\n  },\n  maintainAspectRatio: false,\n  animation: true,\n}\n\nexport const chartTypesMap = {\n  pie: markRaw(defineAsyncComponent(() => import('./chart-types/PieChart.vue'))),\n  doughnut: markRaw(defineAsyncComponent(() => import('./chart-types/DoughnutChart.vue'))),\n  bubble: markRaw(defineAsyncComponent(() => import('./chart-types/BubbleChart.vue'))),\n  line: markRaw(defineAsyncComponent(() => import('./chart-types/LineChart.vue'))),\n  bar: markRaw(defineAsyncComponent(() => import('./chart-types/BarChart.vue'))),\n  'horizontal-bar': markRaw(defineAsyncComponent(() => import('./chart-types/HorizontalBarChart.vue'))),\n}\n"
  },
  {
    "path": "src/components/va-medium-editor/VaMediumEditor.vue",
    "content": "<template>\n  <div ref=\"editorElement\" class=\"va-medium-editor content\">\n    <slot />\n  </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { ref, Ref, onMounted, onBeforeUnmount } from 'vue'\nimport MediumEditor from 'medium-editor'\n\nconst props = withDefaults(\n  defineProps<{\n    editorOptions?: {\n      buttonLabels: string\n      autoLink: boolean\n      toolbar: {\n        buttons: string[]\n      }\n    }\n  }>(),\n  {\n    editorOptions: () => ({\n      buttonLabels: 'fontawesome',\n      autoLink: true,\n      toolbar: {\n        buttons: ['bold', 'italic', 'underline', 'anchor', 'h1', 'h2', 'h3'],\n      },\n    }),\n  },\n)\n\nconst emit = defineEmits<{\n  (e: 'initialized', editor: typeof MediumEditor): void\n}>()\n\nconst editorElement: Ref<null | HTMLElement> = ref(null)\nlet editor: typeof MediumEditor | null = null\n\nonMounted(() => {\n  if (!editorElement.value) {\n    return\n  }\n\n  editor = new MediumEditor(editorElement.value, props.editorOptions)\n  emit('initialized', editor)\n})\n\nonBeforeUnmount(() => {\n  if (editor) {\n    editor.destroy()\n  }\n})\n</script>\n\n<style lang=\"scss\">\n@import 'medium-editor/src/sass/medium-editor';\n@import 'variables';\n\n$medium-editor-shadow: var(--va-box-shadow);\n$medium-editor-background-color: var(--va-background-primary);\n$medium-editor-text-color: var(--va-dark);\n$medium-editor-active-background-color: var(--va-primary);\n$medium-editor-active-text-color: var(--va-white);\n\n.va-medium-editor {\n  margin-bottom: var(--va-medium-editor-margin-bottom);\n  min-width: var(--va-medium-editor-min-width);\n  max-width: var(--va-medium-editor-max-width);\n\n  &:focus {\n    outline: none;\n  }\n\n  &.content {\n    i {\n      font-style: italic;\n    }\n  }\n}\n\n// isn't a part of the .va-medium-editor, so can't be places inside it\n.medium-editor-toolbar,\n.medium-editor-toolbar-form,\n.medium-editor-toolbar-actions,\n.medium-editor-toolbar-anchor-preview {\n  box-shadow: $medium-editor-shadow;\n  background-color: $medium-editor-background-color;\n  border-radius: 1.5rem;\n  height: 44px;\n  line-height: 42px;\n}\n\n.medium-editor-toolbar-anchor-preview {\n  a {\n    padding: 0 2rem;\n    margin: 0;\n    line-height: 44px;\n  }\n}\n\n.medium-editor-toolbar {\n  box-shadow: $medium-editor-shadow;\n\n  .medium-editor-toolbar-actions {\n    overflow: hidden;\n    height: 44px;\n  }\n\n  .medium-editor-action {\n    margin: 0;\n    border: 0;\n    padding: 0.375rem 1rem;\n    height: 44px;\n    background-color: $medium-editor-background-color;\n    box-shadow: none;\n    border-radius: 0;\n\n    i {\n      color: $medium-editor-text-color;\n    }\n\n    &.medium-editor-button-active {\n      background-color: $medium-editor-active-background-color;\n      color: $medium-editor-active-text-color;\n\n      i {\n        color: $medium-editor-active-text-color;\n      }\n    }\n  }\n\n  & > .medium-editor-action:not(:last-child) {\n    border-top-right-radius: 0;\n    border-bottom-right-radius: 0;\n    border-right: 0;\n  }\n\n  & > .medium-editor-action + .medium-editor-action {\n    border-top-left-radius: 0;\n    border-bottom-left-radius: 0;\n    border-left: 0;\n  }\n}\n\n.medium-editor-toolbar-form {\n  color: $medium-editor-text-color;\n  overflow: hidden;\n\n  a {\n    color: $medium-editor-text-color;\n    transform: translateY(1px);\n  }\n\n  input {\n    margin-left: 4px !important;\n    transform: translateY(-2px);\n    border-radius: 13px;\n  }\n\n  .medium-editor-toolbar-close {\n    margin-right: 1rem;\n  }\n}\n\n.medium-toolbar-arrow-under::after {\n  border-color: $medium-editor-background-color transparent transparent transparent;\n  top: 100%;\n}\n\n.medium-toolbar-arrow-over::before {\n  border-color: transparent transparent var(--va-primary) transparent;\n}\n\n.medium-editor-toolbar-anchor-preview {\n  // @include va-button($btn-padding-y-nrm, $btn-padding-x-nrm, $btn-font-size-nrm, $btn-line-height-nrm, $btn-border-radius-nrm);\n\n  .medium-editor-toolbar-anchor-preview {\n    margin: 0;\n  }\n}\n\n.medium-editor-anchor-preview {\n  max-width: 50%;\n\n  a {\n    color: $medium-editor-text-color;\n    text-decoration: none;\n  }\n}\n</style>\n"
  },
  {
    "path": "src/components/va-medium-editor/_variables.scss",
    "content": ":root {\n  --va-medium-editor-margin-bottom: 2.25rem;\n  --va-medium-editor-min-width: 6rem;\n  --va-medium-editor-max-width: 600px;\n\n  /* Toolbar */\n  --va-medium-editor-toolbar-max-width: 90%;\n  --va-medium-editor-toolbar-box-shadow: none;\n}\n"
  },
  {
    "path": "src/components/va-timeline-item.vue",
    "content": "<template>\n  <tr class=\"va-timeline-item\">\n    <td class=\"va-timeline-item__icon-cell\">\n      <div class=\"va-timeline-item__icon\">\n        <VaIcon name=\"schedule\" size=\"22px\" color=\"backgroundBorder\" />\n      </div>\n    </td>\n    <td class=\"va-timeline-item__content-cell\">\n      <div class=\"va-timeline-item__content\">\n        <slot />\n      </div>\n    </td>\n    <td class=\"va-timeline-item__date-cell\">\n      <slot name=\"date\">\n        {{ $props.date }}\n      </slot>\n    </td>\n  </tr>\n</template>\n\n<script setup lang=\"ts\">\ndefineProps({\n  date: {\n    type: String,\n    default: '',\n  },\n})\n</script>\n\n<style lang=\"scss\" scoped>\n.va-timeline-item {\n  display: table-row;\n\n  &__icon-cell {\n    vertical-align: top;\n    height: 1px;\n    padding-right: 1rem;\n  }\n\n  &__icon {\n    width: 24px;\n    position: relative;\n    display: inline-flex;\n    justify-content: center;\n    flex-direction: column;\n    align-items: center;\n    height: 100%;\n\n    &::after {\n      content: '';\n      width: 2px;\n      height: 100%;\n      background: var(--va-background-border);\n    }\n  }\n\n  &__content {\n    margin-bottom: 1rem;\n  }\n\n  &__content-cell {\n    width: 100%;\n  }\n\n  &__date-cell {\n    vertical-align: top;\n    color: var(--va-secondary);\n    text-wrap: nowrap;\n    white-space: nowrap;\n    padding-left: 0.5rem;\n    text-align: end;\n  }\n\n  &:last-child {\n    .va-timeline-item__icon {\n      &::after {\n        background: transparent;\n      }\n    }\n  }\n}\n</style>\n"
  },
  {
    "path": "src/data/CountriesList.ts",
    "content": "export default [\n  'Afghanistan',\n  'Albania',\n  'Algeria',\n  'American Samoa',\n  'Andorra',\n  'Angola',\n  'Anguilla',\n  'Antarctica',\n  'Antigua and Barbuda',\n  'Argentina',\n  'Armenia',\n  'Aruba',\n  'Australia',\n  'Austria',\n  'Azerbaijan',\n  'Bahamas',\n  'Bahrain',\n  'Bangladesh',\n  'Barbados',\n  'Belarus',\n  'Belgium',\n  'Belize',\n  'Benin',\n  'Bermuda',\n  'Bhutan',\n  'Bolivia',\n  'Bosnia and Herzegowina',\n  'Botswana',\n  'Bouvet Island',\n  'Brazil',\n  'British Indian Ocean Territory',\n  'Brunei Darussalam',\n  'Bulgaria',\n  'Burkina Faso',\n  'Burundi',\n  'Cambodia',\n  'Cameroon',\n  'Canada',\n  'Cape Verde',\n  'Cayman Islands',\n  'Central African Republic',\n  'Chad',\n  'Chile',\n  'China',\n  'Christmas Island',\n  'Cocos (Keeling) Islands',\n  'Colombia',\n  'Comoros',\n  'Congo',\n  'Congo, the Democratic Republic of the',\n  'Cook Islands',\n  'Costa Rica',\n  \"Cote d'Ivoire\",\n  'Croatia (Hrvatska)',\n  'Cuba',\n  'Cyprus',\n  'Czech Republic',\n  'Denmark',\n  'Djibouti',\n  'Dominica',\n  'Dominican Republic',\n  'East Timor',\n  'Ecuador',\n  'Egypt',\n  'El Salvador',\n  'Equatorial Guinea',\n  'Eritrea',\n  'Estonia',\n  'Ethiopia',\n  'Falkland Islands (Malvinas)',\n  'Faroe Islands',\n  'Fiji',\n  'Finland',\n  'France',\n  'France Metropolitan',\n  'French Guiana',\n  'French Polynesia',\n  'French Southern Territories',\n  'Gabon',\n  'Gambia',\n  'Georgia',\n  'Germany',\n  'Ghana',\n  'Gibraltar',\n  'Greece',\n  'Greenland',\n  'Grenada',\n  'Guadeloupe',\n  'Guam',\n  'Guatemala',\n  'Guinea',\n  'Guinea-Bissau',\n  'Guyana',\n  'Haiti',\n  'Heard and Mc Donald Islands',\n  'Holy See (Vatican City State)',\n  'Honduras',\n  'Hong Kong',\n  'Hungary',\n  'Iceland',\n  'India',\n  'Indonesia',\n  'Iran (Islamic Republic of)',\n  'Iraq',\n  'Ireland',\n  'Israel',\n  'Italy',\n  'Jamaica',\n  'Japan',\n  'Jordan',\n  'Kazakhstan',\n  'Kenya',\n  'Kiribati',\n  \"Korea, Democratic People's Republic of\",\n  'Korea, Republic of',\n  'Kuwait',\n  'Kyrgyzstan',\n  \"Lao, People's Democratic Republic\",\n  'Latvia',\n  'Lebanon',\n  'Lesotho',\n  'Liberia',\n  'Libyan Arab Jamahiriya',\n  'Liechtenstein',\n  'Lithuania',\n  'Luxembourg',\n  'Macau',\n  'Macedonia, The Former Yugoslav Republic of',\n  'Madagascar',\n  'Malawi',\n  'Malaysia',\n  'Maldives',\n  'Mali',\n  'Malta',\n  'Marshall Islands',\n  'Martinique',\n  'Mauritania',\n  'Mauritius',\n  'Mayotte',\n  'Mexico',\n  'Micronesia, Federated States of',\n  'Moldova, Republic of',\n  'Monaco',\n  'Mongolia',\n  'Montserrat',\n  'Morocco',\n  'Mozambique',\n  'Myanmar',\n  'Namibia',\n  'Nauru',\n  'Nepal',\n  'Netherlands',\n  'Netherlands Antilles',\n  'New Caledonia',\n  'New Zealand',\n  'Nicaragua',\n  'Niger',\n  'Nigeria',\n  'Niue',\n  'Norfolk Island',\n  'Northern Mariana Islands',\n  'Norway',\n  'Oman',\n  'Pakistan',\n  'Palau',\n  'Panama',\n  'Papua New Guinea',\n  'Paraguay',\n  'Peru',\n  'Philippines',\n  'Pitcairn',\n  'Poland',\n  'Portugal',\n  'Puerto Rico',\n  'Qatar',\n  'Reunion',\n  'Romania',\n  'Russian Federation',\n  'Rwanda',\n  'Saint Kitts and Nevis',\n  'Saint Lucia',\n  'Saint Vincent and the Grenadines',\n  'Samoa',\n  'San Marino',\n  'Sao Tome and Principe',\n  'Saudi Arabia',\n  'Senegal',\n  'Serbia',\n  'Seychelles',\n  'Sierra Leone',\n  'Singapore',\n  'Slovakia (Slovak Republic)',\n  'Slovenia',\n  'Solomon Islands',\n  'Somalia',\n  'South Africa',\n  'South Georgia and the South Sandwich Islands',\n  'Spain',\n  'Sri Lanka',\n  'St. Helena',\n  'St. Pierre and Miquelon',\n  'Sudan',\n  'Suriname',\n  'Svalbard and Jan Mayen Islands',\n  'Swaziland',\n  'Sweden',\n  'Switzerland',\n  'Syrian Arab Republic',\n  'Taiwan, Province of China',\n  'Tajikistan',\n  'Tanzania, United Republic of',\n  'United States of America',\n  'Thailand',\n  'Togo',\n  'Tokelau',\n  'Tonga',\n  'Trinidad and Tobago',\n  'Tunisia',\n  'Turkey',\n  'Turkmenistan',\n  'Turks and Caicos Islands',\n  'Tuvalu',\n  'Uganda',\n  'Ukraine',\n  'United Arab Emirates',\n  'United Kingdom',\n  'United States',\n  'United States Minor Outlying Islands',\n  'Uruguay',\n  'Uzbekistan',\n  'Vanuatu',\n  'Venezuela',\n  'Vietnam',\n  'Virgin Islands (British)',\n  'Virgin Islands (U.S.)',\n  'Wallis and Futuna Islands',\n  'Western Sahara',\n  'Yemen',\n  'Yugoslavia',\n  'Zambia',\n  'Zimbabwe',\n]\n"
  },
  {
    "path": "src/data/charts/barChartData.ts",
    "content": "import { TBarChartData } from '../types'\n\nexport const barChartData: TBarChartData = {\n  labels: [\n    'January',\n    'February',\n    'March',\n    'April',\n    'May',\n    'June',\n    'July',\n    'August',\n    'September',\n    'October',\n    'November',\n    'December',\n  ],\n  datasets: [\n    {\n      label: 'Last year',\n      backgroundColor: 'primary',\n      data: [50, 20, 12, 39, 10, 40, 39, 80, 40, 20, 12, 11],\n    },\n    {\n      label: 'Current year',\n      backgroundColor: 'info',\n      data: [50, 10, 22, 39, 15, 20, 85, 32, 60, 50, 20, 30],\n    },\n  ],\n}\n"
  },
  {
    "path": "src/data/charts/bubbleChartData.ts",
    "content": "import { TBubbleChartData } from '../types'\n\nexport const bubbleChartData: TBubbleChartData = {\n  datasets: [\n    {\n      label: 'USA',\n      backgroundColor: 'danger',\n      data: [\n        {\n          x: 23,\n          y: 25,\n          r: 15,\n        },\n        {\n          x: 40,\n          y: 10,\n          r: 10,\n        },\n        {\n          x: 30,\n          y: 22,\n          r: 30,\n        },\n        {\n          x: 7,\n          y: 43,\n          r: 40,\n        },\n        {\n          x: 23,\n          y: 27,\n          r: 12,\n        },\n        {\n          x: 20,\n          y: 15,\n          r: 11,\n        },\n        {\n          x: 7,\n          y: 10,\n          r: 35,\n        },\n        {\n          x: 10,\n          y: 20,\n          r: 40,\n        },\n      ],\n    },\n    {\n      label: 'Russia',\n      backgroundColor: 'primary',\n      data: [\n        {\n          x: 0,\n          y: 30,\n          r: 15,\n        },\n        {\n          x: 20,\n          y: 20,\n          r: 20,\n        },\n        {\n          x: 15,\n          y: 15,\n          r: 50,\n        },\n        {\n          x: 31,\n          y: 46,\n          r: 30,\n        },\n        {\n          x: 20,\n          y: 14,\n          r: 25,\n        },\n        {\n          x: 34,\n          y: 17,\n          r: 30,\n        },\n        {\n          x: 44,\n          y: 44,\n          r: 10,\n        },\n        {\n          x: 39,\n          y: 25,\n          r: 35,\n        },\n      ],\n    },\n    {\n      label: 'Canada',\n      backgroundColor: 'warning',\n      data: [\n        {\n          x: 10,\n          y: 30,\n          r: 45,\n        },\n        {\n          x: 10,\n          y: 50,\n          r: 20,\n        },\n        {\n          x: 5,\n          y: 5,\n          r: 30,\n        },\n        {\n          x: 40,\n          y: 30,\n          r: 20,\n        },\n        {\n          x: 33,\n          y: 15,\n          r: 18,\n        },\n        {\n          x: 40,\n          y: 20,\n          r: 40,\n        },\n        {\n          x: 33,\n          y: 33,\n          r: 40,\n        },\n      ],\n    },\n    {\n      label: 'Belarus',\n      backgroundColor: 'info',\n      data: [\n        {\n          x: 35,\n          y: 30,\n          r: 45,\n        },\n        {\n          x: 25,\n          y: 40,\n          r: 35,\n        },\n        {\n          x: 5,\n          y: 5,\n          r: 30,\n        },\n        {\n          x: 5,\n          y: 20,\n          r: 40,\n        },\n        {\n          x: 10,\n          y: 40,\n          r: 15,\n        },\n        {\n          x: 3,\n          y: 10,\n          r: 10,\n        },\n        {\n          x: 15,\n          y: 40,\n          r: 40,\n        },\n        {\n          x: 7,\n          y: 15,\n          r: 10,\n        },\n      ],\n    },\n    {\n      label: 'Ukraine',\n      backgroundColor: 'success',\n      data: [\n        {\n          x: 25,\n          y: 10,\n          r: 40,\n        },\n        {\n          x: 17,\n          y: 40,\n          r: 40,\n        },\n        {\n          x: 35,\n          y: 10,\n          r: 20,\n        },\n        {\n          x: 3,\n          y: 40,\n          r: 10,\n        },\n        {\n          x: 40,\n          y: 40,\n          r: 40,\n        },\n        {\n          x: 20,\n          y: 10,\n          r: 10,\n        },\n        {\n          x: 10,\n          y: 27,\n          r: 35,\n        },\n        {\n          x: 7,\n          y: 26,\n          r: 40,\n        },\n      ],\n    },\n  ],\n}\n"
  },
  {
    "path": "src/data/charts/composables/useChartColors.ts",
    "content": "import { computed, ref, watch } from 'vue'\nimport { useColors, useGlobalConfig } from 'vuestic-ui'\n\ntype chartColors = string | string[]\n\nexport function useChartColors(chartColors = [] as chartColors, alfa = 0.6) {\n  const { getGlobalConfig } = useGlobalConfig()\n  const { setHSLAColor, getColor } = useColors()\n\n  const generateHSLAColors = (colors: chartColors) =>\n    typeof colors === 'string'\n      ? setHSLAColor(getColor(colors), { a: alfa })\n      : colors.map((color) => setHSLAColor(getColor(color), { a: alfa }))\n\n  const generateColors = (colors: chartColors) =>\n    typeof colors === 'string' ? getColor(colors) : colors.map((color) => getColor(color))\n\n  const generatedHSLAColors = ref(generateHSLAColors(chartColors))\n  const generatedColors = ref(generateColors(chartColors))\n\n  const theme = computed(() => getGlobalConfig().colors!)\n\n  watch(theme, () => {\n    generatedHSLAColors.value = generateHSLAColors(chartColors)\n    generatedColors.value = generateColors(chartColors)\n  })\n\n  return {\n    generateHSLAColors,\n    generateColors,\n    generatedColors,\n    generatedHSLAColors,\n  }\n}\n"
  },
  {
    "path": "src/data/charts/composables/useChartData.ts",
    "content": "import { computed, ComputedRef } from 'vue'\nimport { useChartColors } from './useChartColors'\nimport { TChartData } from '../../types'\n\nexport function useChartData<T extends TChartData>(data: T, alfa?: number): ComputedRef<T> {\n  const datasetsColors = data.datasets.map((dataset) => dataset.backgroundColor as string)\n\n  const datasetsThemesColors = datasetsColors.map(\n    (colors) => useChartColors(colors, alfa)[alfa ? 'generatedHSLAColors' : 'generatedColors'],\n  )\n\n  return computed(() => {\n    const datasets = data.datasets.map((dataset, idx) => ({\n      ...dataset,\n      backgroundColor: datasetsThemesColors[idx].value,\n    }))\n\n    return { ...data, datasets } as T\n  })\n}\n"
  },
  {
    "path": "src/data/charts/doughnutChartData.ts",
    "content": "import { TDoughnutChartData } from '../types'\n\nexport const profitBackground = '#154EC1'\nexport const expensesBackground = '#fff'\nexport const earningsBackground = '#ECF0F1'\n\nexport const doughnutChartData: TDoughnutChartData = {\n  labels: ['Profit', 'Expenses'],\n  datasets: [\n    {\n      label: 'Yearly Breakdown',\n      backgroundColor: [profitBackground, earningsBackground],\n      data: [432, 167],\n    },\n  ],\n}\n"
  },
  {
    "path": "src/data/charts/horizontalBarChartData.ts",
    "content": "import { TBarChartData } from '../types'\n\nexport const horizontalBarChartData: TBarChartData = {\n  labels: [\n    'January',\n    'February',\n    'March',\n    'April',\n    'May',\n    'June',\n    'July',\n    'August',\n    'September',\n    'October',\n    'November',\n    'December',\n  ],\n  datasets: [\n    {\n      label: 'Vuestic Satisfaction Score',\n      backgroundColor: 'primary',\n      data: [80, 90, 50, 70, 60, 90, 50, 90, 80, 40, 72, 93],\n    },\n    {\n      label: 'Bulma Satisfaction Score',\n      backgroundColor: 'danger',\n      data: [20, 30, 20, 40, 50, 40, 15, 60, 30, 20, 42, 53],\n    },\n  ],\n}\n"
  },
  {
    "path": "src/data/charts/index.ts",
    "content": "export { bubbleChartData } from './bubbleChartData'\nexport { doughnutChartData } from './doughnutChartData'\nexport { barChartData } from './barChartData'\nexport { horizontalBarChartData } from './horizontalBarChartData'\nexport { lineChartData } from './lineChartData'\nexport { pieChartData } from './pieChartData'\n\n// TODO: clean up charts data, after dashboard rework\n"
  },
  {
    "path": "src/data/charts/lineChartData.ts",
    "content": "import { TLineChartData } from '../types'\n\nexport const lineChartData: TLineChartData = {\n  labels: [\n    'January',\n    'February',\n    'March',\n    'April',\n    'May',\n    'June',\n    'July',\n    'August',\n    'September',\n    'October',\n    'November',\n    'December',\n  ],\n  datasets: [\n    {\n      label: 'Monthly Earnings',\n      backgroundColor: 'rgba(75,192,192,0.4)',\n      data: [10, 35, 14, 17, 12, 40, 75, 55, 30, 51, 25, 7], // Random values\n    },\n  ],\n}\n"
  },
  {
    "path": "src/data/charts/pieChartData.ts",
    "content": "import { TLineChartData } from '../types'\n\nexport const pieChartData: TLineChartData = {\n  labels: ['Africa', 'Asia', 'Europe'],\n  datasets: [\n    {\n      label: 'Population (millions)',\n      backgroundColor: ['primary', 'warning', 'danger'],\n      data: [2478, 5267, 734],\n    },\n  ],\n}\n"
  },
  {
    "path": "src/data/charts/revenueChartData.ts",
    "content": "export const earningsColor = '#49A8FF'\nexport const expensesColor = '#154EC1'\n\nexport const months: string[] = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']\n\nexport type Revenues = {\n  month: string\n  earning: number\n  expenses: number\n}\n\nexport const generateRevenues = (months: string[]): Revenues[] => {\n  return months.map((month: string) => {\n    const earning = Math.floor(Math.random() * 100000 + 10000)\n    return {\n      month,\n      earning,\n      expenses: Math.floor(earning * Math.random()),\n    }\n  })\n}\n\nexport const getRevenuePerMonth = (month: string, revenues: Revenues[]): Revenues => {\n  const revenue = revenues.find((revenue) => revenue.month === month)\n  return revenue || { month, earning: 0, expenses: 0 }\n}\n\nexport const formatMoney = (amount: number, currency = 'USD'): string => {\n  return new Intl.NumberFormat('en-US', {\n    style: 'currency',\n    currency,\n  }).format(amount)\n}\n"
  },
  {
    "path": "src/data/geo.json",
    "content": "{\n  \"type\": \"FeatureCollection\",\n  \"features\": [\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Costa Rica\",\n        \"sov_a3\": \"CRI\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Costa Rica\",\n        \"adm0_a3\": \"CRI\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Costa Rica\",\n        \"gu_a3\": \"CRI\",\n        \"su_dif\": 0,\n        \"subunit\": \"Costa Rica\",\n        \"su_a3\": \"CRI\",\n        \"brk_diff\": 0,\n        \"name\": \"Costa Rica\",\n        \"name_long\": \"Costa Rica\",\n        \"brk_a3\": \"CRI\",\n        \"brk_name\": \"Costa Rica\",\n        \"brk_group\": null,\n        \"abbrev\": \"C.R.\",\n        \"postal\": \"CR\",\n        \"formal_en\": \"Republic of Costa Rica\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Costa Rica\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Costa Rica\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 2,\n        \"pop_est\": 5047561,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 61801,\n        \"gdp_year\": 2019,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"CS\",\n        \"iso_a2\": \"CR\",\n        \"iso_a2_eh\": \"CR\",\n        \"iso_a3\": \"CRI\",\n        \"iso_a3_eh\": \"CRI\",\n        \"iso_n3\": \"188\",\n        \"iso_n3_eh\": \"188\",\n        \"un_a3\": \"188\",\n        \"wb_a2\": \"CR\",\n        \"wb_a3\": \"CRI\",\n        \"woe_id\": 23424791,\n        \"woe_id_eh\": 23424791,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"CRI\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"CRI\",\n        \"adm0_a3_us\": \"CRI\",\n        \"adm0_a3_fr\": \"CRI\",\n        \"adm0_a3_ru\": \"CRI\",\n        \"adm0_a3_es\": \"CRI\",\n        \"adm0_a3_cn\": \"CRI\",\n        \"adm0_a3_tw\": \"CRI\",\n        \"adm0_a3_in\": \"CRI\",\n        \"adm0_a3_np\": \"CRI\",\n        \"adm0_a3_pk\": \"CRI\",\n        \"adm0_a3_de\": \"CRI\",\n        \"adm0_a3_gb\": \"CRI\",\n        \"adm0_a3_br\": \"CRI\",\n        \"adm0_a3_il\": \"CRI\",\n        \"adm0_a3_ps\": \"CRI\",\n        \"adm0_a3_sa\": \"CRI\",\n        \"adm0_a3_eg\": \"CRI\",\n        \"adm0_a3_ma\": \"CRI\",\n        \"adm0_a3_pt\": \"CRI\",\n        \"adm0_a3_ar\": \"CRI\",\n        \"adm0_a3_jp\": \"CRI\",\n        \"adm0_a3_ko\": \"CRI\",\n        \"adm0_a3_vn\": \"CRI\",\n        \"adm0_a3_tr\": \"CRI\",\n        \"adm0_a3_id\": \"CRI\",\n        \"adm0_a3_pl\": \"CRI\",\n        \"adm0_a3_gr\": \"CRI\",\n        \"adm0_a3_it\": \"CRI\",\n        \"adm0_a3_nl\": \"CRI\",\n        \"adm0_a3_se\": \"CRI\",\n        \"adm0_a3_bd\": \"CRI\",\n        \"adm0_a3_ua\": \"CRI\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"North America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"Central America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 10,\n        \"long_len\": 10,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.5,\n        \"max_label\": 8,\n        \"label_x\": -84.077922,\n        \"label_y\": 10.0651,\n        \"ne_id\": 1159320525,\n        \"wikidataid\": \"Q800\",\n        \"name_ar\": \"كوستاريكا\",\n        \"name_bn\": \"কোস্টা রিকা\",\n        \"name_de\": \"Costa Rica\",\n        \"name_en\": \"Costa Rica\",\n        \"name_es\": \"Costa Rica\",\n        \"name_fa\": \"کاستاریکا\",\n        \"name_fr\": \"Costa Rica\",\n        \"name_el\": \"Κόστα Ρίκα\",\n        \"name_he\": \"קוסטה ריקה\",\n        \"name_hi\": \"कोस्टा रीका\",\n        \"name_hu\": \"Costa Rica\",\n        \"name_id\": \"Kosta Rika\",\n        \"name_it\": \"Costa Rica\",\n        \"name_ja\": \"コスタリカ\",\n        \"name_ko\": \"코스타리카\",\n        \"name_nl\": \"Costa Rica\",\n        \"name_pl\": \"Kostaryka\",\n        \"name_pt\": \"Costa Rica\",\n        \"name_ru\": \"Коста-Рика\",\n        \"name_sv\": \"Costa Rica\",\n        \"name_tr\": \"Kosta Rika\",\n        \"name_uk\": \"Коста-Рика\",\n        \"name_ur\": \"کوسٹاریکا\",\n        \"name_vi\": \"Costa Rica\",\n        \"name_zh\": \"哥斯达黎加\",\n        \"name_zht\": \"哥斯大黎加\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"CRI.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-82.54619625520348, 9.566134751824677],\n            [-82.93289099804358, 9.476812038608173],\n            [-82.92715491405916, 9.074330145702916],\n            [-82.71918311230053, 8.925708726431495],\n            [-82.86865719270477, 8.807266343618522],\n            [-82.82977067740516, 8.62629547773237],\n            [-82.91317643912421, 8.42351715741907],\n            [-82.96578304719736, 8.225027980985985],\n            [-83.50843726269431, 8.446926581247283],\n            [-83.71147396516908, 8.656836249216866],\n            [-83.59631303580665, 8.830443223501419],\n            [-83.63264156770784, 9.051385809765321],\n            [-83.90988562695374, 9.29080272057358],\n            [-84.30340165885636, 9.487354030795714],\n            [-84.64764421256866, 9.61553742109571],\n            [-84.71335079622777, 9.908051866083852],\n            [-84.97566036654133, 10.086723130733006],\n            [-84.91137488477024, 9.795991522658923],\n            [-85.11092342806532, 9.55703969974131],\n            [-85.33948828809227, 9.83454214114866],\n            [-85.66078650586698, 9.933347479690724],\n            [-85.79744483106285, 10.134885565629034],\n            [-85.79170874707843, 10.439337266476613],\n            [-85.65931372754667, 10.75433095951172],\n            [-85.94172543002176, 10.895278428587801],\n            [-85.7125404528073, 11.088444932494824],\n            [-85.5618519762442, 11.217119248901597],\n            [-84.90300330273895, 10.952303371621896],\n            [-84.67306901725627, 11.082657172078143],\n            [-84.35593075228104, 10.999225572142905],\n            [-84.19017859570485, 10.793450018756674],\n            [-83.89505449088595, 10.726839097532446],\n            [-83.65561174186158, 10.938764146361422],\n            [-83.40231970898296, 10.395438137244653],\n            [-83.01567664257517, 9.992982082555557],\n            [-82.54619625520348, 9.566134751824677]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Nicaragua\",\n        \"sov_a3\": \"NIC\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Nicaragua\",\n        \"adm0_a3\": \"NIC\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Nicaragua\",\n        \"gu_a3\": \"NIC\",\n        \"su_dif\": 0,\n        \"subunit\": \"Nicaragua\",\n        \"su_a3\": \"NIC\",\n        \"brk_diff\": 0,\n        \"name\": \"Nicaragua\",\n        \"name_long\": \"Nicaragua\",\n        \"brk_a3\": \"NIC\",\n        \"brk_name\": \"Nicaragua\",\n        \"brk_group\": null,\n        \"abbrev\": \"Nic.\",\n        \"postal\": \"NI\",\n        \"formal_en\": \"Republic of Nicaragua\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Nicaragua\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Nicaragua\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 9,\n        \"pop_est\": 6545502,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 12520,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"NU\",\n        \"iso_a2\": \"NI\",\n        \"iso_a2_eh\": \"NI\",\n        \"iso_a3\": \"NIC\",\n        \"iso_a3_eh\": \"NIC\",\n        \"iso_n3\": \"558\",\n        \"iso_n3_eh\": \"558\",\n        \"un_a3\": \"558\",\n        \"wb_a2\": \"NI\",\n        \"wb_a3\": \"NIC\",\n        \"woe_id\": 23424915,\n        \"woe_id_eh\": 23424915,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"NIC\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"NIC\",\n        \"adm0_a3_us\": \"NIC\",\n        \"adm0_a3_fr\": \"NIC\",\n        \"adm0_a3_ru\": \"NIC\",\n        \"adm0_a3_es\": \"NIC\",\n        \"adm0_a3_cn\": \"NIC\",\n        \"adm0_a3_tw\": \"NIC\",\n        \"adm0_a3_in\": \"NIC\",\n        \"adm0_a3_np\": \"NIC\",\n        \"adm0_a3_pk\": \"NIC\",\n        \"adm0_a3_de\": \"NIC\",\n        \"adm0_a3_gb\": \"NIC\",\n        \"adm0_a3_br\": \"NIC\",\n        \"adm0_a3_il\": \"NIC\",\n        \"adm0_a3_ps\": \"NIC\",\n        \"adm0_a3_sa\": \"NIC\",\n        \"adm0_a3_eg\": \"NIC\",\n        \"adm0_a3_ma\": \"NIC\",\n        \"adm0_a3_pt\": \"NIC\",\n        \"adm0_a3_ar\": \"NIC\",\n        \"adm0_a3_jp\": \"NIC\",\n        \"adm0_a3_ko\": \"NIC\",\n        \"adm0_a3_vn\": \"NIC\",\n        \"adm0_a3_tr\": \"NIC\",\n        \"adm0_a3_id\": \"NIC\",\n        \"adm0_a3_pl\": \"NIC\",\n        \"adm0_a3_gr\": \"NIC\",\n        \"adm0_a3_it\": \"NIC\",\n        \"adm0_a3_nl\": \"NIC\",\n        \"adm0_a3_se\": \"NIC\",\n        \"adm0_a3_bd\": \"NIC\",\n        \"adm0_a3_ua\": \"NIC\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"North America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"Central America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 9,\n        \"long_len\": 9,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": -85.069347,\n        \"label_y\": 12.670697,\n        \"ne_id\": 1159321091,\n        \"wikidataid\": \"Q811\",\n        \"name_ar\": \"نيكاراغوا\",\n        \"name_bn\": \"নিকারাগুয়া\",\n        \"name_de\": \"Nicaragua\",\n        \"name_en\": \"Nicaragua\",\n        \"name_es\": \"Nicaragua\",\n        \"name_fa\": \"نیکاراگوئه\",\n        \"name_fr\": \"Nicaragua\",\n        \"name_el\": \"Νικαράγουα\",\n        \"name_he\": \"ניקרגואה\",\n        \"name_hi\": \"निकारागुआ\",\n        \"name_hu\": \"Nicaragua\",\n        \"name_id\": \"Nikaragua\",\n        \"name_it\": \"Nicaragua\",\n        \"name_ja\": \"ニカラグア\",\n        \"name_ko\": \"니카라과\",\n        \"name_nl\": \"Nicaragua\",\n        \"name_pl\": \"Nikaragua\",\n        \"name_pt\": \"Nicarágua\",\n        \"name_ru\": \"Никарагуа\",\n        \"name_sv\": \"Nicaragua\",\n        \"name_tr\": \"Nikaragua\",\n        \"name_uk\": \"Нікарагуа\",\n        \"name_ur\": \"نکاراگوا\",\n        \"name_vi\": \"Nicaragua\",\n        \"name_zh\": \"尼加拉瓜\",\n        \"name_zht\": \"尼加拉瓜\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"NIC.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.65561174186158, 10.938764146361422],\n            [-83.89505449088595, 10.726839097532446],\n            [-84.19017859570485, 10.793450018756674],\n            [-84.35593075228104, 10.999225572142905],\n            [-84.67306901725627, 11.082657172078143],\n            [-84.90300330273895, 10.952303371621896],\n            [-85.5618519762442, 11.217119248901597],\n            [-85.7125404528073, 11.088444932494824],\n            [-86.05848832878526, 11.403438625529944],\n            [-86.52584998243296, 11.806876532432597],\n            [-86.74599158399633, 12.143961900272487],\n            [-87.16751624220116, 12.458257961471658],\n            [-87.66849341505471, 12.909909979702633],\n            [-87.55746660027562, 13.064551703336065],\n            [-87.39238623731923, 12.914018256069838],\n            [-87.31665442579549, 12.984685777228975],\n            [-87.00576900912758, 13.025794379117158],\n            [-86.88055701368438, 13.254204209847217],\n            [-86.7338217841916, 13.263092556201443],\n            [-86.75508663607971, 13.754845485890913],\n            [-86.52070817741992, 13.778487453664468],\n            [-86.31214209668993, 13.77135610600817],\n            [-86.09626380079061, 14.038187364147234],\n            [-85.80129472526859, 13.83605499923759],\n            [-85.69866533073696, 13.960078436738002],\n            [-85.51441301140028, 14.079011745657908],\n            [-85.16536454948482, 14.354369615125051],\n            [-85.14875057650296, 14.560196844943617],\n            [-85.05278744173694, 14.551541042534723],\n            [-84.9245006985724, 14.79049286545235],\n            [-84.82003679069436, 14.81958669683267],\n            [-84.64958207877964, 14.666805324761867],\n            [-84.4493359036486, 14.621614284722511],\n            [-84.22834164095241, 14.74876414637663],\n            [-83.97572140169359, 14.749435939996488],\n            [-83.62858496777292, 14.880073960830302],\n            [-83.48998877636612, 15.016267198135537],\n            [-83.14721900097413, 14.99582916916411],\n            [-83.23323442252394, 14.899866034398102],\n            [-83.2841615465476, 14.6766238468972],\n            [-83.18212643098728, 14.31070302983845],\n            [-83.41249996614445, 13.970077826386557],\n            [-83.51983191601468, 13.567699286345883],\n            [-83.55220720084554, 13.127054348193086],\n            [-83.49851538769427, 12.869292303921227],\n            [-83.47332312695198, 12.419087225794428],\n            [-83.62610449902292, 12.320850328007566],\n            [-83.71961300325506, 11.893124497927728],\n            [-83.65085751009072, 11.62903209070012],\n            [-83.8554703437504, 11.373311265503787],\n            [-83.80893571647155, 11.103043524617275],\n            [-83.65561174186158, 10.938764146361422]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Haiti\",\n        \"sov_a3\": \"HTI\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Haiti\",\n        \"adm0_a3\": \"HTI\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Haiti\",\n        \"gu_a3\": \"HTI\",\n        \"su_dif\": 0,\n        \"subunit\": \"Haiti\",\n        \"su_a3\": \"HTI\",\n        \"brk_diff\": 0,\n        \"name\": \"Haiti\",\n        \"name_long\": \"Haiti\",\n        \"brk_a3\": \"HTI\",\n        \"brk_name\": \"Haiti\",\n        \"brk_group\": null,\n        \"abbrev\": \"Haiti\",\n        \"postal\": \"HT\",\n        \"formal_en\": \"Republic of Haiti\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Haiti\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Haiti\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 7,\n        \"mapcolor13\": 2,\n        \"pop_est\": 11263077,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 14332,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"HA\",\n        \"iso_a2\": \"HT\",\n        \"iso_a2_eh\": \"HT\",\n        \"iso_a3\": \"HTI\",\n        \"iso_a3_eh\": \"HTI\",\n        \"iso_n3\": \"332\",\n        \"iso_n3_eh\": \"332\",\n        \"un_a3\": \"332\",\n        \"wb_a2\": \"HT\",\n        \"wb_a3\": \"HTI\",\n        \"woe_id\": 23424839,\n        \"woe_id_eh\": 23424839,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"HTI\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"HTI\",\n        \"adm0_a3_us\": \"HTI\",\n        \"adm0_a3_fr\": \"HTI\",\n        \"adm0_a3_ru\": \"HTI\",\n        \"adm0_a3_es\": \"HTI\",\n        \"adm0_a3_cn\": \"HTI\",\n        \"adm0_a3_tw\": \"HTI\",\n        \"adm0_a3_in\": \"HTI\",\n        \"adm0_a3_np\": \"HTI\",\n        \"adm0_a3_pk\": \"HTI\",\n        \"adm0_a3_de\": \"HTI\",\n        \"adm0_a3_gb\": \"HTI\",\n        \"adm0_a3_br\": \"HTI\",\n        \"adm0_a3_il\": \"HTI\",\n        \"adm0_a3_ps\": \"HTI\",\n        \"adm0_a3_sa\": \"HTI\",\n        \"adm0_a3_eg\": \"HTI\",\n        \"adm0_a3_ma\": \"HTI\",\n        \"adm0_a3_pt\": \"HTI\",\n        \"adm0_a3_ar\": \"HTI\",\n        \"adm0_a3_jp\": \"HTI\",\n        \"adm0_a3_ko\": \"HTI\",\n        \"adm0_a3_vn\": \"HTI\",\n        \"adm0_a3_tr\": \"HTI\",\n        \"adm0_a3_id\": \"HTI\",\n        \"adm0_a3_pl\": \"HTI\",\n        \"adm0_a3_gr\": \"HTI\",\n        \"adm0_a3_it\": \"HTI\",\n        \"adm0_a3_nl\": \"HTI\",\n        \"adm0_a3_se\": \"HTI\",\n        \"adm0_a3_bd\": \"HTI\",\n        \"adm0_a3_ua\": \"HTI\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"North America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"Caribbean\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": -72.224051,\n        \"label_y\": 19.263784,\n        \"ne_id\": 1159320839,\n        \"wikidataid\": \"Q790\",\n        \"name_ar\": \"هايتي\",\n        \"name_bn\": \"হাইতি\",\n        \"name_de\": \"Haiti\",\n        \"name_en\": \"Haiti\",\n        \"name_es\": \"Haití\",\n        \"name_fa\": \"هائیتی\",\n        \"name_fr\": \"Haïti\",\n        \"name_el\": \"Αϊτή\",\n        \"name_he\": \"האיטי\",\n        \"name_hi\": \"हैती\",\n        \"name_hu\": \"Haiti\",\n        \"name_id\": \"Haiti\",\n        \"name_it\": \"Haiti\",\n        \"name_ja\": \"ハイチ\",\n        \"name_ko\": \"아이티\",\n        \"name_nl\": \"Haïti\",\n        \"name_pl\": \"Haiti\",\n        \"name_pt\": \"Haiti\",\n        \"name_ru\": \"Республика Гаити\",\n        \"name_sv\": \"Haiti\",\n        \"name_tr\": \"Haiti\",\n        \"name_uk\": \"Гаїті\",\n        \"name_ur\": \"ہیٹی\",\n        \"name_vi\": \"Haiti\",\n        \"name_zh\": \"海地\",\n        \"name_zht\": \"海地\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"HTI.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-71.71236141629296, 19.714455878167357],\n            [-71.62487321642283, 19.169837958243306],\n            [-71.7013026597825, 18.785416978424053],\n            [-71.94511206733556, 18.61690013272026],\n            [-71.68773759630588, 18.31666006110447],\n            [-71.70830481635805, 18.044997056546094],\n            [-72.37247616238935, 18.21496084235406],\n            [-72.84441118029488, 18.145611070218365],\n            [-73.45455481636503, 18.2179063989947],\n            [-73.92243323433566, 18.030992743395004],\n            [-74.45803361682478, 18.342549953682706],\n            [-74.36992529976713, 18.66490753831941],\n            [-73.44954220243272, 18.526052964751145],\n            [-72.69493709989064, 18.445799465401862],\n            [-72.334881557897, 18.668421535715254],\n            [-72.79164954292489, 19.10162506761803],\n            [-72.78410478381028, 19.48359141690341],\n            [-73.41502234566175, 19.639550889560283],\n            [-73.18979061551762, 19.915683905511912],\n            [-72.57967281766362, 19.871500555902358],\n            [-71.71236141629296, 19.714455878167357]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Dominican Republic\",\n        \"sov_a3\": \"DOM\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Dominican Republic\",\n        \"adm0_a3\": \"DOM\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Dominican Republic\",\n        \"gu_a3\": \"DOM\",\n        \"su_dif\": 0,\n        \"subunit\": \"Dominican Republic\",\n        \"su_a3\": \"DOM\",\n        \"brk_diff\": 0,\n        \"name\": \"Dominican Rep.\",\n        \"name_long\": \"Dominican Republic\",\n        \"brk_a3\": \"DOM\",\n        \"brk_name\": \"Dominican Rep.\",\n        \"brk_group\": null,\n        \"abbrev\": \"Dom. Rep.\",\n        \"postal\": \"DO\",\n        \"formal_en\": \"Dominican Republic\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Dominican Republic\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Dominican Republic\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 7,\n        \"pop_est\": 10738958,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 88941,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"DR\",\n        \"iso_a2\": \"DO\",\n        \"iso_a2_eh\": \"DO\",\n        \"iso_a3\": \"DOM\",\n        \"iso_a3_eh\": \"DOM\",\n        \"iso_n3\": \"214\",\n        \"iso_n3_eh\": \"214\",\n        \"un_a3\": \"214\",\n        \"wb_a2\": \"DO\",\n        \"wb_a3\": \"DOM\",\n        \"woe_id\": 23424800,\n        \"woe_id_eh\": 23424800,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"DOM\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"DOM\",\n        \"adm0_a3_us\": \"DOM\",\n        \"adm0_a3_fr\": \"DOM\",\n        \"adm0_a3_ru\": \"DOM\",\n        \"adm0_a3_es\": \"DOM\",\n        \"adm0_a3_cn\": \"DOM\",\n        \"adm0_a3_tw\": \"DOM\",\n        \"adm0_a3_in\": \"DOM\",\n        \"adm0_a3_np\": \"DOM\",\n        \"adm0_a3_pk\": \"DOM\",\n        \"adm0_a3_de\": \"DOM\",\n        \"adm0_a3_gb\": \"DOM\",\n        \"adm0_a3_br\": \"DOM\",\n        \"adm0_a3_il\": \"DOM\",\n        \"adm0_a3_ps\": \"DOM\",\n        \"adm0_a3_sa\": \"DOM\",\n        \"adm0_a3_eg\": \"DOM\",\n        \"adm0_a3_ma\": \"DOM\",\n        \"adm0_a3_pt\": \"DOM\",\n        \"adm0_a3_ar\": \"DOM\",\n        \"adm0_a3_jp\": \"DOM\",\n        \"adm0_a3_ko\": \"DOM\",\n        \"adm0_a3_vn\": \"DOM\",\n        \"adm0_a3_tr\": \"DOM\",\n        \"adm0_a3_id\": \"DOM\",\n        \"adm0_a3_pl\": \"DOM\",\n        \"adm0_a3_gr\": \"DOM\",\n        \"adm0_a3_it\": \"DOM\",\n        \"adm0_a3_nl\": \"DOM\",\n        \"adm0_a3_se\": \"DOM\",\n        \"adm0_a3_bd\": \"DOM\",\n        \"adm0_a3_ua\": \"DOM\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"North America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"Caribbean\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 14,\n        \"long_len\": 18,\n        \"abbrev_len\": 9,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4.5,\n        \"max_label\": 9.5,\n        \"label_x\": -70.653998,\n        \"label_y\": 19.104137,\n        \"ne_id\": 1159320563,\n        \"wikidataid\": \"Q786\",\n        \"name_ar\": \"جمهورية الدومينيكان\",\n        \"name_bn\": \"ডোমিনিকান প্রজাতন্ত্র\",\n        \"name_de\": \"Dominikanische Republik\",\n        \"name_en\": \"Dominican Republic\",\n        \"name_es\": \"República Dominicana\",\n        \"name_fa\": \"جمهوری دومینیکن\",\n        \"name_fr\": \"République dominicaine\",\n        \"name_el\": \"Δομινικανή Δημοκρατία\",\n        \"name_he\": \"הרפובליקה הדומיניקנית\",\n        \"name_hi\": \"डोमिनिकन गणराज्य\",\n        \"name_hu\": \"Dominikai Köztársaság\",\n        \"name_id\": \"Republik Dominika\",\n        \"name_it\": \"Repubblica Dominicana\",\n        \"name_ja\": \"ドミニカ共和国\",\n        \"name_ko\": \"도미니카 공화국\",\n        \"name_nl\": \"Dominicaanse Republiek\",\n        \"name_pl\": \"Dominikana\",\n        \"name_pt\": \"República Dominicana\",\n        \"name_ru\": \"Доминиканская Республика\",\n        \"name_sv\": \"Dominikanska republiken\",\n        \"name_tr\": \"Dominik Cumhuriyeti\",\n        \"name_uk\": \"Домініканська Республіка\",\n        \"name_ur\": \"جمہوریہ ڈومینیکن\",\n        \"name_vi\": \"Cộng hòa Dominica\",\n        \"name_zh\": \"多米尼加\",\n        \"name_zht\": \"多明尼加\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"DOM.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-71.70830481635805, 18.044997056546094],\n            [-71.68773759630588, 18.31666006110447],\n            [-71.94511206733556, 18.61690013272026],\n            [-71.7013026597825, 18.785416978424053],\n            [-71.62487321642283, 19.169837958243306],\n            [-71.71236141629296, 19.714455878167357],\n            [-71.58730445014663, 19.8849105900821],\n            [-70.80670610216174, 19.880285549391985],\n            [-70.21436499701613, 19.62288524014616],\n            [-69.95081519232758, 19.64799998624001],\n            [-69.76925004747008, 19.29326711677244],\n            [-69.22212582057988, 19.313214219637103],\n            [-69.25434607611385, 19.015196234609874],\n            [-68.80941199408083, 18.979074408437853],\n            [-68.31794328476897, 18.612197577381693],\n            [-68.68931596543452, 18.205142320218613],\n            [-69.16494584824892, 18.42264842373511],\n            [-69.62398759629764, 18.38071299893025],\n            [-69.95293392605154, 18.42830699307106],\n            [-70.1332329983179, 18.245915025296895],\n            [-70.51713721381422, 18.184290879788833],\n            [-70.66929846869763, 18.426885891183034],\n            [-70.99995012071719, 18.283328762276213],\n            [-71.4002099270339, 17.5985643579766],\n            [-71.65766191271202, 17.7575727401387],\n            [-71.70830481635805, 18.044997056546094]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"El Salvador\",\n        \"sov_a3\": \"SLV\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"El Salvador\",\n        \"adm0_a3\": \"SLV\",\n        \"geou_dif\": 0,\n        \"geounit\": \"El Salvador\",\n        \"gu_a3\": \"SLV\",\n        \"su_dif\": 0,\n        \"subunit\": \"El Salvador\",\n        \"su_a3\": \"SLV\",\n        \"brk_diff\": 0,\n        \"name\": \"El Salvador\",\n        \"name_long\": \"El Salvador\",\n        \"brk_a3\": \"SLV\",\n        \"brk_name\": \"El Salvador\",\n        \"brk_group\": null,\n        \"abbrev\": \"El. S.\",\n        \"postal\": \"SV\",\n        \"formal_en\": \"Republic of El Salvador\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"El Salvador\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"El Salvador\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 6,\n        \"mapcolor13\": 8,\n        \"pop_est\": 6453553,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 27022,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"ES\",\n        \"iso_a2\": \"SV\",\n        \"iso_a2_eh\": \"SV\",\n        \"iso_a3\": \"SLV\",\n        \"iso_a3_eh\": \"SLV\",\n        \"iso_n3\": \"222\",\n        \"iso_n3_eh\": \"222\",\n        \"un_a3\": \"222\",\n        \"wb_a2\": \"SV\",\n        \"wb_a3\": \"SLV\",\n        \"woe_id\": 23424807,\n        \"woe_id_eh\": 23424807,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"SLV\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"SLV\",\n        \"adm0_a3_us\": \"SLV\",\n        \"adm0_a3_fr\": \"SLV\",\n        \"adm0_a3_ru\": \"SLV\",\n        \"adm0_a3_es\": \"SLV\",\n        \"adm0_a3_cn\": \"SLV\",\n        \"adm0_a3_tw\": \"SLV\",\n        \"adm0_a3_in\": \"SLV\",\n        \"adm0_a3_np\": \"SLV\",\n        \"adm0_a3_pk\": \"SLV\",\n        \"adm0_a3_de\": \"SLV\",\n        \"adm0_a3_gb\": \"SLV\",\n        \"adm0_a3_br\": \"SLV\",\n        \"adm0_a3_il\": \"SLV\",\n        \"adm0_a3_ps\": \"SLV\",\n        \"adm0_a3_sa\": \"SLV\",\n        \"adm0_a3_eg\": \"SLV\",\n        \"adm0_a3_ma\": \"SLV\",\n        \"adm0_a3_pt\": \"SLV\",\n        \"adm0_a3_ar\": \"SLV\",\n        \"adm0_a3_jp\": \"SLV\",\n        \"adm0_a3_ko\": \"SLV\",\n        \"adm0_a3_vn\": \"SLV\",\n        \"adm0_a3_tr\": \"SLV\",\n        \"adm0_a3_id\": \"SLV\",\n        \"adm0_a3_pl\": \"SLV\",\n        \"adm0_a3_gr\": \"SLV\",\n        \"adm0_a3_it\": \"SLV\",\n        \"adm0_a3_nl\": \"SLV\",\n        \"adm0_a3_se\": \"SLV\",\n        \"adm0_a3_bd\": \"SLV\",\n        \"adm0_a3_ua\": \"SLV\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"North America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"Central America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 11,\n        \"long_len\": 11,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 5,\n        \"max_label\": 10,\n        \"label_x\": -88.890124,\n        \"label_y\": 13.685371,\n        \"ne_id\": 1159321253,\n        \"wikidataid\": \"Q792\",\n        \"name_ar\": \"السلفادور\",\n        \"name_bn\": \"এল সালভাদোর\",\n        \"name_de\": \"El Salvador\",\n        \"name_en\": \"El Salvador\",\n        \"name_es\": \"El Salvador\",\n        \"name_fa\": \"السالوادور\",\n        \"name_fr\": \"Salvador\",\n        \"name_el\": \"Ελ Σαλβαδόρ\",\n        \"name_he\": \"אל סלוודור\",\n        \"name_hi\": \"अल साल्वाडोर\",\n        \"name_hu\": \"Salvador\",\n        \"name_id\": \"El Salvador\",\n        \"name_it\": \"El Salvador\",\n        \"name_ja\": \"エルサルバドル\",\n        \"name_ko\": \"엘살바도르\",\n        \"name_nl\": \"El Salvador\",\n        \"name_pl\": \"Salwador\",\n        \"name_pt\": \"El Salvador\",\n        \"name_ru\": \"Сальвадор\",\n        \"name_sv\": \"El Salvador\",\n        \"name_tr\": \"El Salvador\",\n        \"name_uk\": \"Сальвадор\",\n        \"name_ur\": \"ایل سیلواڈور\",\n        \"name_vi\": \"El Salvador\",\n        \"name_zh\": \"萨尔瓦多\",\n        \"name_zht\": \"薩爾瓦多\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"SLV.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.35332597528281, 14.424132798719086],\n            [-89.05851192905766, 14.340029405164087],\n            [-88.84307288283284, 14.14050670008517],\n            [-88.541230841816, 13.980154730683479],\n            [-88.50399797234971, 13.845485948130857],\n            [-88.06534257684014, 13.964625962779778],\n            [-87.85951534702161, 13.893312486217098],\n            [-87.7235029772294, 13.785050360565506],\n            [-87.79311113152657, 13.384480495655055],\n            [-87.90411210808952, 13.149016831917137],\n            [-88.48330156121682, 13.163951320849492],\n            [-88.84322791212972, 13.259733588102478],\n            [-89.2567427233293, 13.458532823129303],\n            [-89.81239356154767, 13.520622056527998],\n            [-90.09555457229098, 13.735337632700734],\n            [-90.0646779039966, 13.881969509328925],\n            [-89.72193396682073, 14.134228013561696],\n            [-89.53421932652051, 14.244815578666305],\n            [-89.58734269891656, 14.36258616785949],\n            [-89.35332597528281, 14.424132798719086]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Guatemala\",\n        \"sov_a3\": \"GTM\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Guatemala\",\n        \"adm0_a3\": \"GTM\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Guatemala\",\n        \"gu_a3\": \"GTM\",\n        \"su_dif\": 0,\n        \"subunit\": \"Guatemala\",\n        \"su_a3\": \"GTM\",\n        \"brk_diff\": 0,\n        \"name\": \"Guatemala\",\n        \"name_long\": \"Guatemala\",\n        \"brk_a3\": \"GTM\",\n        \"brk_name\": \"Guatemala\",\n        \"brk_group\": null,\n        \"abbrev\": \"Guat.\",\n        \"postal\": \"GT\",\n        \"formal_en\": \"Republic of Guatemala\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Guatemala\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Guatemala\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 6,\n        \"pop_est\": 16604026,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 76710,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"GT\",\n        \"iso_a2\": \"GT\",\n        \"iso_a2_eh\": \"GT\",\n        \"iso_a3\": \"GTM\",\n        \"iso_a3_eh\": \"GTM\",\n        \"iso_n3\": \"320\",\n        \"iso_n3_eh\": \"320\",\n        \"un_a3\": \"320\",\n        \"wb_a2\": \"GT\",\n        \"wb_a3\": \"GTM\",\n        \"woe_id\": 23424834,\n        \"woe_id_eh\": 23424834,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"GTM\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"GTM\",\n        \"adm0_a3_us\": \"GTM\",\n        \"adm0_a3_fr\": \"GTM\",\n        \"adm0_a3_ru\": \"GTM\",\n        \"adm0_a3_es\": \"GTM\",\n        \"adm0_a3_cn\": \"GTM\",\n        \"adm0_a3_tw\": \"GTM\",\n        \"adm0_a3_in\": \"GTM\",\n        \"adm0_a3_np\": \"GTM\",\n        \"adm0_a3_pk\": \"GTM\",\n        \"adm0_a3_de\": \"GTM\",\n        \"adm0_a3_gb\": \"GTM\",\n        \"adm0_a3_br\": \"GTM\",\n        \"adm0_a3_il\": \"GTM\",\n        \"adm0_a3_ps\": \"GTM\",\n        \"adm0_a3_sa\": \"GTM\",\n        \"adm0_a3_eg\": \"GTM\",\n        \"adm0_a3_ma\": \"GTM\",\n        \"adm0_a3_pt\": \"GTM\",\n        \"adm0_a3_ar\": \"GTM\",\n        \"adm0_a3_jp\": \"GTM\",\n        \"adm0_a3_ko\": \"GTM\",\n        \"adm0_a3_vn\": \"GTM\",\n        \"adm0_a3_tr\": \"GTM\",\n        \"adm0_a3_id\": \"GTM\",\n        \"adm0_a3_pl\": \"GTM\",\n        \"adm0_a3_gr\": \"GTM\",\n        \"adm0_a3_it\": \"GTM\",\n        \"adm0_a3_nl\": \"GTM\",\n        \"adm0_a3_se\": \"GTM\",\n        \"adm0_a3_bd\": \"GTM\",\n        \"adm0_a3_ua\": \"GTM\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"North America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"Central America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 9,\n        \"long_len\": 9,\n        \"abbrev_len\": 5,\n        \"tiny\": 4,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": -90.497134,\n        \"label_y\": 14.982133,\n        \"ne_id\": 1159320815,\n        \"wikidataid\": \"Q774\",\n        \"name_ar\": \"غواتيمالا\",\n        \"name_bn\": \"গুয়াতেমালা\",\n        \"name_de\": \"Guatemala\",\n        \"name_en\": \"Guatemala\",\n        \"name_es\": \"Guatemala\",\n        \"name_fa\": \"گواتمالا\",\n        \"name_fr\": \"Guatemala\",\n        \"name_el\": \"Γουατεμάλα\",\n        \"name_he\": \"גואטמלה\",\n        \"name_hi\": \"ग्वाटेमाला\",\n        \"name_hu\": \"Guatemala\",\n        \"name_id\": \"Guatemala\",\n        \"name_it\": \"Guatemala\",\n        \"name_ja\": \"グアテマラ\",\n        \"name_ko\": \"과테말라\",\n        \"name_nl\": \"Guatemala\",\n        \"name_pl\": \"Gwatemala\",\n        \"name_pt\": \"Guatemala\",\n        \"name_ru\": \"Гватемала\",\n        \"name_sv\": \"Guatemala\",\n        \"name_tr\": \"Guatemala\",\n        \"name_uk\": \"Гватемала\",\n        \"name_ur\": \"گواتیمالا\",\n        \"name_vi\": \"Guatemala\",\n        \"name_zh\": \"危地马拉\",\n        \"name_zht\": \"瓜地馬拉\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"GTM.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-92.22775000686983, 14.538828640190928],\n            [-92.20322953974733, 14.830102850804069],\n            [-92.08721594925207, 15.064584662328441],\n            [-92.2292486234063, 15.251446641495875],\n            [-91.74796017125595, 16.066564846251765],\n            [-90.46447262242266, 16.069562079324655],\n            [-90.43886695022204, 16.410109768128095],\n            [-90.60084672724093, 16.47077789963879],\n            [-90.71182186558772, 16.687483018454728],\n            [-91.08167009150065, 16.918476670799407],\n            [-91.45392127151516, 17.252177232324172],\n            [-91.00226925328421, 17.25465770107418],\n            [-91.00151994501596, 17.81759491624571],\n            [-90.06793351923098, 17.819326076727478],\n            [-89.14308041050333, 17.808318996649405],\n            [-89.15080603713095, 17.015576687075836],\n            [-89.22912167026928, 15.886937567605171],\n            [-88.93061275913527, 15.887273464415076],\n            [-88.60458614780585, 15.70638011317736],\n            [-88.51836402052686, 15.855389105690975],\n            [-88.22502275262202, 15.727722479713904],\n            [-88.68067969435563, 15.346247056535304],\n            [-89.15481096063357, 15.06641917567481],\n            [-89.22522009963127, 14.874286200413621],\n            [-89.14553504103719, 14.678019110569153],\n            [-89.35332597528281, 14.424132798719086],\n            [-89.58734269891656, 14.36258616785949],\n            [-89.53421932652051, 14.244815578666305],\n            [-89.72193396682073, 14.134228013561696],\n            [-90.0646779039966, 13.881969509328925],\n            [-90.09555457229098, 13.735337632700734],\n            [-90.60862403030085, 13.909771429901951],\n            [-91.23241024449605, 13.927832342987957],\n            [-91.68974667027913, 14.126218166556455],\n            [-92.22775000686983, 14.538828640190928]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Cuba\",\n        \"sov_a3\": \"CU1\",\n        \"adm0_dif\": 1,\n        \"level\": 1,\n        \"type\": \"Sovereignty\",\n        \"tlc\": \"1\",\n        \"admin\": \"Cuba\",\n        \"adm0_a3\": \"CUB\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Cuba\",\n        \"gu_a3\": \"CUB\",\n        \"su_dif\": 0,\n        \"subunit\": \"Cuba\",\n        \"su_a3\": \"CUB\",\n        \"brk_diff\": 0,\n        \"name\": \"Cuba\",\n        \"name_long\": \"Cuba\",\n        \"brk_a3\": \"CUB\",\n        \"brk_name\": \"Cuba\",\n        \"brk_group\": null,\n        \"abbrev\": \"Cuba\",\n        \"postal\": \"CU\",\n        \"formal_en\": \"Republic of Cuba\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Cuba\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Cuba\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 4,\n        \"pop_est\": 11333483,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 100023,\n        \"gdp_year\": 2018,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"CU\",\n        \"iso_a2\": \"CU\",\n        \"iso_a2_eh\": \"CU\",\n        \"iso_a3\": \"CUB\",\n        \"iso_a3_eh\": \"CUB\",\n        \"iso_n3\": \"192\",\n        \"iso_n3_eh\": \"192\",\n        \"un_a3\": \"192\",\n        \"wb_a2\": \"CU\",\n        \"wb_a3\": \"CUB\",\n        \"woe_id\": 23424793,\n        \"woe_id_eh\": 23424793,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"CUB\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"CUB\",\n        \"adm0_a3_us\": \"CUB\",\n        \"adm0_a3_fr\": \"CUB\",\n        \"adm0_a3_ru\": \"CUB\",\n        \"adm0_a3_es\": \"CUB\",\n        \"adm0_a3_cn\": \"CUB\",\n        \"adm0_a3_tw\": \"CUB\",\n        \"adm0_a3_in\": \"CUB\",\n        \"adm0_a3_np\": \"CUB\",\n        \"adm0_a3_pk\": \"CUB\",\n        \"adm0_a3_de\": \"CUB\",\n        \"adm0_a3_gb\": \"CUB\",\n        \"adm0_a3_br\": \"CUB\",\n        \"adm0_a3_il\": \"CUB\",\n        \"adm0_a3_ps\": \"CUB\",\n        \"adm0_a3_sa\": \"CUB\",\n        \"adm0_a3_eg\": \"CUB\",\n        \"adm0_a3_ma\": \"CUB\",\n        \"adm0_a3_pt\": \"CUB\",\n        \"adm0_a3_ar\": \"CUB\",\n        \"adm0_a3_jp\": \"CUB\",\n        \"adm0_a3_ko\": \"CUB\",\n        \"adm0_a3_vn\": \"CUB\",\n        \"adm0_a3_tr\": \"CUB\",\n        \"adm0_a3_id\": \"CUB\",\n        \"adm0_a3_pl\": \"CUB\",\n        \"adm0_a3_gr\": \"CUB\",\n        \"adm0_a3_it\": \"CUB\",\n        \"adm0_a3_nl\": \"CUB\",\n        \"adm0_a3_se\": \"CUB\",\n        \"adm0_a3_bd\": \"CUB\",\n        \"adm0_a3_ua\": \"CUB\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"North America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"Caribbean\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 4,\n        \"long_len\": 4,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.7,\n        \"max_label\": 8,\n        \"label_x\": -77.975855,\n        \"label_y\": 21.334024,\n        \"ne_id\": 1159320527,\n        \"wikidataid\": \"Q241\",\n        \"name_ar\": \"كوبا\",\n        \"name_bn\": \"কিউবা\",\n        \"name_de\": \"Kuba\",\n        \"name_en\": \"Cuba\",\n        \"name_es\": \"Cuba\",\n        \"name_fa\": \"کوبا\",\n        \"name_fr\": \"Cuba\",\n        \"name_el\": \"Κούβα\",\n        \"name_he\": \"קובה\",\n        \"name_hi\": \"क्यूबा\",\n        \"name_hu\": \"Kuba\",\n        \"name_id\": \"Kuba\",\n        \"name_it\": \"Cuba\",\n        \"name_ja\": \"キューバ\",\n        \"name_ko\": \"쿠바\",\n        \"name_nl\": \"Cuba\",\n        \"name_pl\": \"Kuba\",\n        \"name_pt\": \"Cuba\",\n        \"name_ru\": \"Куба\",\n        \"name_sv\": \"Kuba\",\n        \"name_tr\": \"Küba\",\n        \"name_uk\": \"Куба\",\n        \"name_ur\": \"کیوبا\",\n        \"name_vi\": \"Cuba\",\n        \"name_zh\": \"古巴\",\n        \"name_zht\": \"古巴\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"CUB.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-82.26815121125706, 23.188610744717707],\n            [-81.40445716014683, 23.117271429938782],\n            [-80.6187686835812, 23.105980129483],\n            [-79.67952368846025, 22.76530324959883],\n            [-79.28148596873208, 22.399201565027056],\n            [-78.34743445505649, 22.512166246017088],\n            [-77.99329586456028, 22.277193508385935],\n            [-77.14642249216105, 21.657851467367834],\n            [-76.52382483590856, 21.206819566324373],\n            [-76.19462012399319, 21.220565497314013],\n            [-75.59822241891267, 21.016624457274133],\n            [-75.67106035022806, 20.735091254148003],\n            [-74.9338960435845, 20.693905137611385],\n            [-74.17802486845126, 20.28462779385974],\n            [-74.29664811877726, 20.05037852628068],\n            [-74.96159461129294, 19.92343537035569],\n            [-75.63468014189459, 19.873774318923196],\n            [-76.323656175426, 19.95289093676206],\n            [-77.75548092315307, 19.855480861891877],\n            [-77.08510840524674, 20.413353786698792],\n            [-77.49265458851661, 20.673105373613893],\n            [-78.13729224314159, 20.739948838783434],\n            [-78.48282670766119, 21.02861338956585],\n            [-78.71986650258401, 21.598113511638434],\n            [-79.28499996612794, 21.5591753199065],\n            [-80.21747534861865, 21.827324327069036],\n            [-80.51753455272141, 22.03707896574176],\n            [-81.82094336620318, 22.19205658618507],\n            [-82.16999182811864, 22.387109279870753],\n            [-81.79500179719267, 22.636964830001958],\n            [-82.77589799674085, 22.688150336187064],\n            [-83.49445878775936, 22.16851797127613],\n            [-83.90880042187563, 22.154565334557333],\n            [-84.05215084505326, 21.910575059491254],\n            [-84.54703019889638, 21.801227728761646],\n            [-84.97491105827311, 21.89602814380109],\n            [-84.44706214062776, 22.204949856041907],\n            [-84.23035702181178, 22.565754706303764],\n            [-83.7782399156902, 22.788118394455694],\n            [-83.26754757356575, 22.983041897060644],\n            [-82.51043616405751, 23.078746649665188],\n            [-82.26815121125706, 23.188610744717707]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Honduras\",\n        \"sov_a3\": \"HND\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Honduras\",\n        \"adm0_a3\": \"HND\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Honduras\",\n        \"gu_a3\": \"HND\",\n        \"su_dif\": 0,\n        \"subunit\": \"Honduras\",\n        \"su_a3\": \"HND\",\n        \"brk_diff\": 0,\n        \"name\": \"Honduras\",\n        \"name_long\": \"Honduras\",\n        \"brk_a3\": \"HND\",\n        \"brk_name\": \"Honduras\",\n        \"brk_group\": null,\n        \"abbrev\": \"Hond.\",\n        \"postal\": \"HN\",\n        \"formal_en\": \"Republic of Honduras\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Honduras\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Honduras\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 5,\n        \"pop_est\": 9746117,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 25095,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"HO\",\n        \"iso_a2\": \"HN\",\n        \"iso_a2_eh\": \"HN\",\n        \"iso_a3\": \"HND\",\n        \"iso_a3_eh\": \"HND\",\n        \"iso_n3\": \"340\",\n        \"iso_n3_eh\": \"340\",\n        \"un_a3\": \"340\",\n        \"wb_a2\": \"HN\",\n        \"wb_a3\": \"HND\",\n        \"woe_id\": 23424841,\n        \"woe_id_eh\": 23424841,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"HND\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"HND\",\n        \"adm0_a3_us\": \"HND\",\n        \"adm0_a3_fr\": \"HND\",\n        \"adm0_a3_ru\": \"HND\",\n        \"adm0_a3_es\": \"HND\",\n        \"adm0_a3_cn\": \"HND\",\n        \"adm0_a3_tw\": \"HND\",\n        \"adm0_a3_in\": \"HND\",\n        \"adm0_a3_np\": \"HND\",\n        \"adm0_a3_pk\": \"HND\",\n        \"adm0_a3_de\": \"HND\",\n        \"adm0_a3_gb\": \"HND\",\n        \"adm0_a3_br\": \"HND\",\n        \"adm0_a3_il\": \"HND\",\n        \"adm0_a3_ps\": \"HND\",\n        \"adm0_a3_sa\": \"HND\",\n        \"adm0_a3_eg\": \"HND\",\n        \"adm0_a3_ma\": \"HND\",\n        \"adm0_a3_pt\": \"HND\",\n        \"adm0_a3_ar\": \"HND\",\n        \"adm0_a3_jp\": \"HND\",\n        \"adm0_a3_ko\": \"HND\",\n        \"adm0_a3_vn\": \"HND\",\n        \"adm0_a3_tr\": \"HND\",\n        \"adm0_a3_id\": \"HND\",\n        \"adm0_a3_pl\": \"HND\",\n        \"adm0_a3_gr\": \"HND\",\n        \"adm0_a3_it\": \"HND\",\n        \"adm0_a3_nl\": \"HND\",\n        \"adm0_a3_se\": \"HND\",\n        \"adm0_a3_bd\": \"HND\",\n        \"adm0_a3_ua\": \"HND\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"North America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"Central America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4.5,\n        \"max_label\": 9.5,\n        \"label_x\": -86.887604,\n        \"label_y\": 14.794801,\n        \"ne_id\": 1159320827,\n        \"wikidataid\": \"Q783\",\n        \"name_ar\": \"هندوراس\",\n        \"name_bn\": \"হন্ডুরাস\",\n        \"name_de\": \"Honduras\",\n        \"name_en\": \"Honduras\",\n        \"name_es\": \"Honduras\",\n        \"name_fa\": \"هندوراس\",\n        \"name_fr\": \"Honduras\",\n        \"name_el\": \"Ονδούρα\",\n        \"name_he\": \"הונדורס\",\n        \"name_hi\": \"हौण्डुरस\",\n        \"name_hu\": \"Honduras\",\n        \"name_id\": \"Honduras\",\n        \"name_it\": \"Honduras\",\n        \"name_ja\": \"ホンジュラス\",\n        \"name_ko\": \"온두라스\",\n        \"name_nl\": \"Honduras\",\n        \"name_pl\": \"Honduras\",\n        \"name_pt\": \"Honduras\",\n        \"name_ru\": \"Гондурас\",\n        \"name_sv\": \"Honduras\",\n        \"name_tr\": \"Honduras\",\n        \"name_uk\": \"Гондурас\",\n        \"name_ur\": \"ہونڈوراس\",\n        \"name_vi\": \"Honduras\",\n        \"name_zh\": \"洪都拉斯\",\n        \"name_zht\": \"宏都拉斯\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"HND.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-83.14721900097413, 14.99582916916411],\n            [-83.48998877636612, 15.016267198135537],\n            [-83.62858496777292, 14.880073960830302],\n            [-83.97572140169359, 14.749435939996488],\n            [-84.22834164095241, 14.74876414637663],\n            [-84.4493359036486, 14.621614284722511],\n            [-84.64958207877964, 14.666805324761867],\n            [-84.82003679069436, 14.81958669683267],\n            [-84.9245006985724, 14.79049286545235],\n            [-85.05278744173694, 14.551541042534723],\n            [-85.14875057650296, 14.560196844943617],\n            [-85.16536454948482, 14.354369615125051],\n            [-85.51441301140028, 14.079011745657908],\n            [-85.69866533073696, 13.960078436738002],\n            [-85.80129472526859, 13.83605499923759],\n            [-86.09626380079061, 14.038187364147234],\n            [-86.31214209668993, 13.77135610600817],\n            [-86.52070817741992, 13.778487453664468],\n            [-86.75508663607971, 13.754845485890913],\n            [-86.7338217841916, 13.263092556201443],\n            [-86.88055701368438, 13.254204209847217],\n            [-87.00576900912758, 13.025794379117158],\n            [-87.31665442579549, 12.984685777228975],\n            [-87.48940873894713, 13.297534898323931],\n            [-87.79311113152657, 13.384480495655055],\n            [-87.7235029772294, 13.785050360565506],\n            [-87.85951534702161, 13.893312486217098],\n            [-88.06534257684014, 13.964625962779778],\n            [-88.50399797234971, 13.845485948130857],\n            [-88.541230841816, 13.980154730683479],\n            [-88.84307288283284, 14.14050670008517],\n            [-89.05851192905766, 14.340029405164087],\n            [-89.35332597528281, 14.424132798719086],\n            [-89.14553504103719, 14.678019110569153],\n            [-89.22522009963127, 14.874286200413621],\n            [-89.15481096063357, 15.06641917567481],\n            [-88.68067969435563, 15.346247056535304],\n            [-88.22502275262202, 15.727722479713904],\n            [-88.12115312371537, 15.688655096901357],\n            [-87.90181250685242, 15.864458319558196],\n            [-87.61568010125234, 15.878798529519202],\n            [-87.52292090528846, 15.797278957578783],\n            [-87.36776241733213, 15.846940009011291],\n            [-86.90319129102818, 15.75671295822957],\n            [-86.44094560417739, 15.782835394753192],\n            [-86.11923397494434, 15.893448798073962],\n            [-86.00195431185784, 16.00540578863439],\n            [-85.68331743034628, 15.953651841693954],\n            [-85.44400387240256, 15.885749009662447],\n            [-85.18244361035721, 15.909158433490632],\n            [-84.98372188997882, 15.995923163308703],\n            [-84.52697974316715, 15.857223619037427],\n            [-84.36825558138258, 15.835157782448732],\n            [-84.06305457226682, 15.648244126849136],\n            [-83.77397661002612, 15.424071763566872],\n            [-83.41038123242038, 15.270902818253774],\n            [-83.14721900097413, 14.99582916916411]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"United States of America\",\n        \"sov_a3\": \"US1\",\n        \"adm0_dif\": 1,\n        \"level\": 2,\n        \"type\": \"Country\",\n        \"tlc\": \"1\",\n        \"admin\": \"United States of America\",\n        \"adm0_a3\": \"USA\",\n        \"geou_dif\": 0,\n        \"geounit\": \"United States of America\",\n        \"gu_a3\": \"USA\",\n        \"su_dif\": 0,\n        \"subunit\": \"United States\",\n        \"su_a3\": \"USA\",\n        \"brk_diff\": 0,\n        \"name\": \"United States of America\",\n        \"name_long\": \"United States\",\n        \"brk_a3\": \"USA\",\n        \"brk_name\": \"United States\",\n        \"brk_group\": null,\n        \"abbrev\": \"U.S.A.\",\n        \"postal\": \"US\",\n        \"formal_en\": \"United States of America\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"United States\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"United States of America\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 1,\n        \"pop_est\": 328239523,\n        \"pop_rank\": 17,\n        \"pop_year\": 2019,\n        \"gdp_md\": 21433226,\n        \"gdp_year\": 2019,\n        \"economy\": \"1. Developed region: G7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"US\",\n        \"iso_a2\": \"US\",\n        \"iso_a2_eh\": \"US\",\n        \"iso_a3\": \"USA\",\n        \"iso_a3_eh\": \"USA\",\n        \"iso_n3\": \"840\",\n        \"iso_n3_eh\": \"840\",\n        \"un_a3\": \"840\",\n        \"wb_a2\": \"US\",\n        \"wb_a3\": \"USA\",\n        \"woe_id\": 23424977,\n        \"woe_id_eh\": 23424977,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"USA\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"USA\",\n        \"adm0_a3_us\": \"USA\",\n        \"adm0_a3_fr\": \"USA\",\n        \"adm0_a3_ru\": \"USA\",\n        \"adm0_a3_es\": \"USA\",\n        \"adm0_a3_cn\": \"USA\",\n        \"adm0_a3_tw\": \"USA\",\n        \"adm0_a3_in\": \"USA\",\n        \"adm0_a3_np\": \"USA\",\n        \"adm0_a3_pk\": \"USA\",\n        \"adm0_a3_de\": \"USA\",\n        \"adm0_a3_gb\": \"USA\",\n        \"adm0_a3_br\": \"USA\",\n        \"adm0_a3_il\": \"USA\",\n        \"adm0_a3_ps\": \"USA\",\n        \"adm0_a3_sa\": \"USA\",\n        \"adm0_a3_eg\": \"USA\",\n        \"adm0_a3_ma\": \"USA\",\n        \"adm0_a3_pt\": \"USA\",\n        \"adm0_a3_ar\": \"USA\",\n        \"adm0_a3_jp\": \"USA\",\n        \"adm0_a3_ko\": \"USA\",\n        \"adm0_a3_vn\": \"USA\",\n        \"adm0_a3_tr\": \"USA\",\n        \"adm0_a3_id\": \"USA\",\n        \"adm0_a3_pl\": \"USA\",\n        \"adm0_a3_gr\": \"USA\",\n        \"adm0_a3_it\": \"USA\",\n        \"adm0_a3_nl\": \"USA\",\n        \"adm0_a3_se\": \"USA\",\n        \"adm0_a3_bd\": \"USA\",\n        \"adm0_a3_ua\": \"USA\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"North America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"Northern America\",\n        \"region_wb\": \"North America\",\n        \"name_len\": 24,\n        \"long_len\": 13,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 5.7,\n        \"label_x\": -97.482602,\n        \"label_y\": 39.538479,\n        \"ne_id\": 1159321369,\n        \"wikidataid\": \"Q30\",\n        \"name_ar\": \"الولايات المتحدة\",\n        \"name_bn\": \"মার্কিন যুক্তরাষ্ট্র\",\n        \"name_de\": \"Vereinigte Staaten\",\n        \"name_en\": \"United States of America\",\n        \"name_es\": \"Estados Unidos\",\n        \"name_fa\": \"ایالات متحده آمریکا\",\n        \"name_fr\": \"États-Unis\",\n        \"name_el\": \"Ηνωμένες Πολιτείες Αμερικής\",\n        \"name_he\": \"ארצות הברית\",\n        \"name_hi\": \"संयुक्त राज्य अमेरिका\",\n        \"name_hu\": \"Amerikai Egyesült Államok\",\n        \"name_id\": \"Amerika Serikat\",\n        \"name_it\": \"Stati Uniti d'America\",\n        \"name_ja\": \"アメリカ合衆国\",\n        \"name_ko\": \"미국\",\n        \"name_nl\": \"Verenigde Staten van Amerika\",\n        \"name_pl\": \"Stany Zjednoczone\",\n        \"name_pt\": \"Estados Unidos\",\n        \"name_ru\": \"США\",\n        \"name_sv\": \"USA\",\n        \"name_tr\": \"Amerika Birleşik Devletleri\",\n        \"name_uk\": \"Сполучені Штати Америки\",\n        \"name_ur\": \"ریاستہائے متحدہ امریکا\",\n        \"name_vi\": \"Hoa Kỳ\",\n        \"name_zh\": \"美国\",\n        \"name_zht\": \"美國\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"USA.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-122.84, 49.000000000000114],\n              [-120, 49.000000000000114],\n              [-117.03121, 49],\n              [-116.04818, 49],\n              [-113, 49],\n              [-110.05, 49],\n              [-107.05, 49],\n              [-104.04826, 48.99986],\n              [-100.65, 49.000000000000114],\n              [-97.2287200000048, 49.0007],\n              [-95.15906950917206, 49],\n              [-95.15609, 49.38425],\n              [-94.81758, 49.38905],\n              [-94.64, 48.84],\n              [-94.32914, 48.67074],\n              [-93.63087, 48.60926],\n              [-92.61, 48.45],\n              [-91.64, 48.14],\n              [-90.83, 48.27],\n              [-89.6, 48.010000000000105],\n              [-89.27291744663665, 48.01980825458281],\n              [-88.37811418328671, 48.302917588893706],\n              [-87.43979262330028, 47.94],\n              [-86.46199083122826, 47.553338019392],\n              [-85.65236324740341, 47.22021881773051],\n              [-84.8760798815149, 46.90008331968238],\n              [-84.77923824739992, 46.63710195574902],\n              [-84.54374874544584, 46.538684190449146],\n              [-84.6049, 46.4396],\n              [-84.3367, 46.40877],\n              [-84.1421195136734, 46.51222585711571],\n              [-84.0918512641615, 46.27541860613826],\n              [-83.89076534700574, 46.116926988299014],\n              [-83.61613094759059, 46.116926988299014],\n              [-83.46955074739469, 45.994686387712534],\n              [-83.59285071484311, 45.81689362241252],\n              [-82.55092464875821, 45.34751658790543],\n              [-82.33776312543114, 44.44],\n              [-82.13764238150395, 43.57108755143997],\n              [-82.43, 42.98],\n              [-82.9, 42.43],\n              [-83.12, 42.08],\n              [-83.14199968131264, 41.975681057292874],\n              [-83.029810146807, 41.83279572200598],\n              [-82.69008928092023, 41.675105088867326],\n              [-82.4392777167916, 41.675105088867326],\n              [-81.27774654816716, 42.209025987306816],\n              [-80.24744767934794, 42.36619985612255],\n              [-78.93936214874375, 42.86361135514798],\n              [-78.92, 42.965],\n              [-79.01, 43.27],\n              [-79.17167355011186, 43.46633942318426],\n              [-78.72027991404235, 43.62508942318493],\n              [-77.7378850979577, 43.62905558936328],\n              [-76.82003414580558, 43.628784288093755],\n              [-76.5, 44.01845889375865],\n              [-76.375, 44.09631],\n              [-75.31821, 44.81645],\n              [-74.867, 45.00048],\n              [-73.34783, 45.00738],\n              [-71.50506, 45.0082],\n              [-71.405, 45.255],\n              [-71.08482, 45.30524000000014],\n              [-70.66, 45.46],\n              [-70.305, 45.915],\n              [-69.99997, 46.69307],\n              [-69.237216, 47.447781],\n              [-68.905, 47.185],\n              [-68.23444, 47.35486],\n              [-67.79046, 47.06636],\n              [-67.79134, 45.70281],\n              [-67.13741, 45.13753],\n              [-66.96466, 44.809700000000134],\n              [-68.03252, 44.3252],\n              [-69.06, 43.98],\n              [-70.11617, 43.68405000000013],\n              [-70.64547563341102, 43.09023834896402],\n              [-70.81489, 42.8653],\n              [-70.825, 42.335],\n              [-70.495, 41.805],\n              [-70.08, 41.78],\n              [-70.185, 42.145],\n              [-69.88497, 41.92283],\n              [-69.96503, 41.63717000000014],\n              [-70.64, 41.475],\n              [-71.12039, 41.49445000000014],\n              [-71.86, 41.32],\n              [-72.295, 41.27],\n              [-72.87643, 41.22065],\n              [-73.71, 40.93110235165449],\n              [-72.24126, 41.119480000000124],\n              [-71.94499999999988, 40.93],\n              [-73.345, 40.63],\n              [-73.982, 40.628],\n              [-73.952325, 40.75075],\n              [-74.25671, 40.47351],\n              [-73.96244, 40.42763],\n              [-74.17838, 39.70926],\n              [-74.90604, 38.93954],\n              [-74.98041, 39.1964],\n              [-75.20002, 39.248450000000105],\n              [-75.52805, 39.4985],\n              [-75.32, 38.96],\n              [-75.07183476478986, 38.782032230179254],\n              [-75.05673, 38.40412],\n              [-75.37747, 38.01551],\n              [-75.94023, 37.21689],\n              [-76.03127, 37.2566],\n              [-75.72204999999985, 37.93705000000011],\n              [-76.23287, 38.319215],\n              [-76.35, 39.15],\n              [-76.542725, 38.717615],\n              [-76.32933, 38.08326],\n              [-76.98999793161352, 38.23999176691336],\n              [-76.30162, 37.917945],\n              [-76.25874, 36.9664],\n              [-75.9718, 36.89726],\n              [-75.8680399999999, 36.55125],\n              [-75.72749, 35.55074000000013],\n              [-76.36318, 34.80854000000011],\n              [-77.397635, 34.51201],\n              [-78.05496, 33.92547],\n              [-78.55434999999989, 33.86133000000012],\n              [-79.06067, 33.49395],\n              [-79.20357, 33.15839],\n              [-80.301325, 32.509355],\n              [-80.86498, 32.0333],\n              [-81.33629, 31.44049],\n              [-81.49042, 30.7299900000001],\n              [-81.31371, 30.03552],\n              [-80.98, 29.18000000000012],\n              [-80.535585, 28.47213],\n              [-80.52999999999986, 28.04],\n              [-80.05653928497759, 26.88000000000011],\n              [-80.088015, 26.205765],\n              [-80.13156, 25.816775],\n              [-80.38103, 25.20616],\n              [-80.68, 25.08],\n              [-81.17213, 25.201260000000104],\n              [-81.33, 25.64],\n              [-81.70999999999987, 25.87],\n              [-82.24, 26.730000000000132],\n              [-82.70515, 27.49504],\n              [-82.85526, 27.88624],\n              [-82.65, 28.550000000000125],\n              [-82.93, 29.1],\n              [-83.70959, 29.93656],\n              [-84.1, 30.09],\n              [-85.10882, 29.63615],\n              [-85.28784, 29.68612000000013],\n              [-85.7731, 30.15261],\n              [-86.4, 30.4],\n              [-87.53036, 30.27433],\n              [-88.41782, 30.3849],\n              [-89.18049, 30.31598],\n              [-89.5938311784198, 30.159994004836847],\n              [-89.413735, 29.89419],\n              [-89.43, 29.48864],\n              [-89.21767, 29.29108],\n              [-89.40823, 29.15961],\n              [-89.77928, 29.307140000000118],\n              [-90.15463, 29.11743],\n              [-90.880225, 29.148535],\n              [-91.626785, 29.677000000000135],\n              [-92.49906, 29.5523],\n              [-93.22637, 29.78375],\n              [-93.84842, 29.71363],\n              [-94.69, 29.480000000000132],\n              [-95.60026, 28.73863],\n              [-96.59404, 28.30748],\n              [-97.13999999999987, 27.83],\n              [-97.37, 27.38],\n              [-97.38, 26.69],\n              [-97.33, 26.21],\n              [-97.13999999999987, 25.87],\n              [-97.53, 25.84],\n              [-98.24, 26.06],\n              [-99.02, 26.37],\n              [-99.3, 26.84],\n              [-99.52, 27.54],\n              [-100.11, 28.110000000000127],\n              [-100.45584, 28.69612000000012],\n              [-100.9576, 29.380710000000136],\n              [-101.6624, 29.7793],\n              [-102.48, 29.76],\n              [-103.11, 28.97],\n              [-103.94, 29.27],\n              [-104.4569699999999, 29.57196],\n              [-104.70575, 30.12173],\n              [-105.03737, 30.64402],\n              [-105.63159, 31.08383],\n              [-106.1429, 31.39995],\n              [-106.50758999999988, 31.75452],\n              [-108.24, 31.754853718166373],\n              [-108.24194, 31.34222],\n              [-109.035, 31.341940000000136],\n              [-111.02361, 31.33472],\n              [-113.30498, 32.03914],\n              [-114.815, 32.52528],\n              [-114.72139, 32.72083],\n              [-115.99135, 32.61239000000012],\n              [-117.12775999999985, 32.53534],\n              [-117.29593769127393, 33.04622461520387],\n              [-117.944, 33.621236431201396],\n              [-118.41060227589753, 33.74090922312445],\n              [-118.51989482279976, 34.02778157757575],\n              [-119.081, 34.078],\n              [-119.43884064201671, 34.34847717828427],\n              [-120.36778, 34.44711],\n              [-120.62286, 34.60855],\n              [-120.74433, 35.15686000000011],\n              [-121.71457, 36.16153],\n              [-122.54747, 37.551760000000115],\n              [-122.51201, 37.78339000000011],\n              [-122.95319, 38.11371],\n              [-123.7272, 38.95166000000012],\n              [-123.86517, 39.76699],\n              [-124.39807, 40.3132],\n              [-124.17886, 41.142020000000116],\n              [-124.2137, 41.99964000000011],\n              [-124.53284, 42.7659900000001],\n              [-124.14214, 43.70838],\n              [-124.020535, 44.615895],\n              [-123.89893, 45.52341],\n              [-124.079635, 46.86475],\n              [-124.39567, 47.72017000000011],\n              [-124.68721008300781, 48.18443298339855],\n              [-124.56610107421875, 48.37971496582037],\n              [-123.12, 48.04],\n              [-122.58736, 47.096],\n              [-122.34, 47.36],\n              [-122.5, 48.18],\n              [-122.84, 49.000000000000114]\n            ]\n          ],\n          [\n            [\n              [-155.40214, 20.07975],\n              [-155.22452, 19.99302],\n              [-155.06226, 19.8591],\n              [-154.80741, 19.50871],\n              [-154.83147, 19.45328],\n              [-155.22217, 19.23972],\n              [-155.54211, 19.08348],\n              [-155.68817, 18.91619],\n              [-155.93665, 19.05939],\n              [-155.90806, 19.33888],\n              [-156.07347, 19.70294],\n              [-156.02368, 19.81422],\n              [-155.85008, 19.97729],\n              [-155.91907, 20.17395],\n              [-155.86108, 20.26721],\n              [-155.78505, 20.2487],\n              [-155.40214, 20.07975]\n            ]\n          ],\n          [\n            [\n              [-155.99566, 20.76404],\n              [-156.07926, 20.64397],\n              [-156.41445, 20.57241],\n              [-156.58673, 20.783],\n              [-156.70167, 20.8643],\n              [-156.71055, 20.92676],\n              [-156.61258, 21.01249],\n              [-156.25711, 20.91745],\n              [-155.99566, 20.76404]\n            ]\n          ],\n          [\n            [\n              [-156.75824, 21.17684],\n              [-156.78933, 21.06873],\n              [-157.32521, 21.09777],\n              [-157.25027, 21.21958],\n              [-156.75824, 21.17684]\n            ]\n          ],\n          [\n            [\n              [-158.0252, 21.71696],\n              [-157.94161, 21.65272],\n              [-157.65283, 21.32217],\n              [-157.70703, 21.26442],\n              [-157.7786, 21.27729],\n              [-158.12667, 21.31244],\n              [-158.2538, 21.53919],\n              [-158.29265, 21.57912],\n              [-158.0252, 21.71696]\n            ]\n          ],\n          [\n            [\n              [-159.36569, 22.21494],\n              [-159.34512, 21.982],\n              [-159.46372, 21.88299],\n              [-159.80051, 22.06533],\n              [-159.74877, 22.1382],\n              [-159.5962, 22.23618],\n              [-159.36569, 22.21494]\n            ]\n          ],\n          [\n            [\n              [-166.46779212142462, 60.384169826897754],\n              [-165.67442969466364, 60.29360687930625],\n              [-165.57916419173358, 59.90998688418753],\n              [-166.19277014876727, 59.75444082298899],\n              [-166.84833736882197, 59.941406155020985],\n              [-167.45527706609008, 60.21306915957936],\n              [-166.46779212142462, 60.384169826897754]\n            ]\n          ],\n          [\n            [\n              [-153.22872941792113, 57.96896841087248],\n              [-152.56479061583514, 57.901427313866996],\n              [-152.1411472239064, 57.591058661522],\n              [-153.00631405333692, 57.11584219016593],\n              [-154.0050902984581, 56.734676825581076],\n              [-154.51640275777004, 56.99274892844669],\n              [-154.67099280497118, 57.46119578717253],\n              [-153.7627795074415, 57.81657461204373],\n              [-153.22872941792113, 57.96896841087248]\n            ]\n          ],\n          [\n            [\n              [-140.98598761037601, 69.71199839952635],\n              [-140.986, 69.712],\n              [-140.9925, 66.00003],\n              [-140.99778, 60.30639],\n              [-140.013, 60.27682],\n              [-139.039, 60],\n              [-138.34089, 59.56211],\n              [-137.4525, 58.905],\n              [-136.47972, 59.46389],\n              [-135.47583, 59.78778],\n              [-134.945, 59.2705600000001],\n              [-134.27111, 58.86111],\n              [-133.35556, 58.41028],\n              [-132.73042, 57.69289],\n              [-131.70781, 56.55212],\n              [-130.00778, 55.91583],\n              [-129.98, 55.285],\n              [-130.53611, 54.80278],\n              [-130.53610895273684, 54.80275447679924],\n              [-130.5361101894673, 54.8027534043494],\n              [-131.08581823797215, 55.17890615500204],\n              [-131.9672114671423, 55.497775580459006],\n              [-132.2500107428595, 56.3699962428974],\n              [-133.53918108435641, 57.17888743756214],\n              [-134.07806292029608, 58.12306753196691],\n              [-135.0382110322791, 58.18771474876394],\n              [-136.62806230995471, 58.21220937767043],\n              [-137.800006279686, 58.49999542910376],\n              [-139.867787041413, 59.53776154238915],\n              [-140.825273817133, 59.727517401765056],\n              [-142.57444353556446, 60.08444651960497],\n              [-143.9588809948799, 59.999180406323376],\n              [-145.92555681682788, 60.45860972761426],\n              [-147.11437394914665, 60.884656073644635],\n              [-148.22430620012761, 60.67298940697714],\n              [-148.01806555885082, 59.97832896589364],\n              [-148.57082251686086, 59.914172675203304],\n              [-149.72785783587585, 59.70565827090553],\n              [-150.60824337461642, 59.368211168039466],\n              [-151.7163927886833, 59.15582103131993],\n              [-151.85943315326722, 59.744984035879554],\n              [-151.40971900124717, 60.72580272077937],\n              [-150.3469414947325, 61.03358755150987],\n              [-150.62111080625704, 61.2844249538544],\n              [-151.89583919981683, 60.727197984451266],\n              [-152.57832984109558, 60.061657212964235],\n              [-154.01917212625764, 59.35027944603428],\n              [-153.28751135965317, 58.86472768821977],\n              [-154.23249243875847, 58.14637360293051],\n              [-155.3074914215102, 57.727794501366304],\n              [-156.30833472392305, 57.422774359763594],\n              [-156.55609737854638, 56.97998484967064],\n              [-158.11721655986779, 56.46360809999419],\n              [-158.43332129619714, 55.99415355083852],\n              [-159.60332739971741, 55.56668610292013],\n              [-160.28971961163427, 55.643580634170576],\n              [-161.22304765525777, 55.364734605523495],\n              [-162.23776607974105, 55.02418691672011],\n              [-163.06944658104638, 54.68973704692712],\n              [-164.78556922102717, 54.40417308208214],\n              [-164.94222632552007, 54.57222483989534],\n              [-163.84833960676565, 55.03943146424609],\n              [-162.87000139061595, 55.34804311789321],\n              [-161.80417497459607, 55.89498647727038],\n              [-160.5636047027812, 56.00805451112501],\n              [-160.07055986228448, 56.41805532492873],\n              [-158.6844429189195, 57.01667511659787],\n              [-158.46109737855403, 57.21692129172885],\n              [-157.72277035218391, 57.57000051536306],\n              [-157.55027442119362, 58.328326321030204],\n              [-157.04167497457698, 58.91888458926172],\n              [-158.19473120830554, 58.61580231386978],\n              [-158.51721798402303, 58.78778148053732],\n              [-159.0586061269288, 58.42418610293163],\n              [-159.71166704001737, 58.93139028587632],\n              [-159.98128882550017, 58.572549140041644],\n              [-160.3552711659965, 59.07112335879361],\n              [-161.3550034251151, 58.670837714260756],\n              [-161.96889360252632, 58.67166453717738],\n              [-162.05498653872465, 59.26692536074745],\n              [-161.8741707021354, 59.63362132429057],\n              [-162.51805904849212, 59.98972361921386],\n              [-163.8183414378202, 59.79805573184336],\n              [-164.66221757714652, 60.26748444278263],\n              [-165.3463877024748, 60.50749563256238],\n              [-165.3508318756519, 61.073895168697504],\n              [-166.12137915755602, 61.50001902937623],\n              [-165.73445187077058, 62.074996853271784],\n              [-164.9191786367179, 62.63307648380794],\n              [-164.56250790103934, 63.14637848576302],\n              [-163.75333248599708, 63.21944896102377],\n              [-163.06722449445786, 63.05945872664802],\n              [-162.26055538638175, 63.54193573674115],\n              [-161.53444983624863, 63.455816962326764],\n              [-160.7725066803211, 63.766108100023246],\n              [-160.9583351308426, 64.22279857040274],\n              [-161.51806840721218, 64.40278758407527],\n              [-160.77777767641481, 64.78860382756642],\n              [-161.39192623598765, 64.77723501246231],\n              [-162.4530500966689, 64.55944468856819],\n              [-162.75778601789415, 64.33860545516876],\n              [-163.54639421288428, 64.5591604681905],\n              [-164.96082984114514, 64.44694509546883],\n              [-166.42528825586447, 64.68667206487066],\n              [-166.8450042389391, 65.08889557561452],\n              [-168.11056006576715, 65.66999705673675],\n              [-166.70527116602193, 66.08831777613938],\n              [-164.47470964257548, 66.5766600612975],\n              [-163.65251176659564, 66.5766600612975],\n              [-163.78860165103623, 66.07720734319668],\n              [-161.67777442121013, 66.11611969671242],\n              [-162.48971452538004, 66.73556509059512],\n              [-163.71971696679117, 67.11639455837008],\n              [-164.4309913808565, 67.61633820257777],\n              [-165.39028683170673, 68.04277212185025],\n              [-166.76444068099605, 68.35887685817966],\n              [-166.20470740462667, 68.88303091091615],\n              [-164.43081051334346, 68.91553538682774],\n              [-163.1686136546145, 69.37111481391287],\n              [-162.930566169262, 69.85806183539927],\n              [-161.90889726463556, 70.33332998318764],\n              [-160.93479651593367, 70.44768992784958],\n              [-159.03917578838713, 70.89164215766891],\n              [-158.11972286683394, 70.82472117785102],\n              [-156.58082455139808, 71.35776357694175],\n              [-155.06779029032427, 71.14777639432367],\n              [-154.3441652089412, 70.69640859647018],\n              [-153.9000062733926, 70.88998851183567],\n              [-152.21000606993528, 70.82999217394485],\n              [-152.27000240782613, 70.60000621202983],\n              [-150.73999243874448, 70.43001658800569],\n              [-149.7200030181675, 70.53001048449045],\n              [-147.61336157935705, 70.2140349392418],\n              [-145.68998980022533, 70.12000967068673],\n              [-144.9200109590764, 69.98999176704046],\n              [-143.58944618042523, 70.15251414659832],\n              [-142.07251034871348, 69.85193817817265],\n              [-140.98598752156073, 69.71199839952635],\n              [-140.98598761037601, 69.71199839952635]\n            ]\n          ],\n          [\n            [\n              [-171.73165686753944, 63.782515367275934],\n              [-171.1144335602453, 63.59219106714495],\n              [-170.4911124339407, 63.694975490973505],\n              [-169.6825054596536, 63.43111562769119],\n              [-168.6894394603007, 63.297506212000556],\n              [-168.77194088445466, 63.18859813094544],\n              [-169.5294398672051, 62.97693146427792],\n              [-170.29055620021595, 63.194437567794424],\n              [-170.67138566799093, 63.3758218451389],\n              [-171.55306311753873, 63.317789211675105],\n              [-171.79111060289122, 63.40584585230046],\n              [-171.73165686753944, 63.782515367275934]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Canada\",\n        \"sov_a3\": \"CAN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Canada\",\n        \"adm0_a3\": \"CAN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Canada\",\n        \"gu_a3\": \"CAN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Canada\",\n        \"su_a3\": \"CAN\",\n        \"brk_diff\": 0,\n        \"name\": \"Canada\",\n        \"name_long\": \"Canada\",\n        \"brk_a3\": \"CAN\",\n        \"brk_name\": \"Canada\",\n        \"brk_group\": null,\n        \"abbrev\": \"Can.\",\n        \"postal\": \"CA\",\n        \"formal_en\": \"Canada\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Canada\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Canada\",\n        \"name_alt\": null,\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 2,\n        \"pop_est\": 37589262,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 1736425,\n        \"gdp_year\": 2019,\n        \"economy\": \"1. Developed region: G7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"CA\",\n        \"iso_a2\": \"CA\",\n        \"iso_a2_eh\": \"CA\",\n        \"iso_a3\": \"CAN\",\n        \"iso_a3_eh\": \"CAN\",\n        \"iso_n3\": \"124\",\n        \"iso_n3_eh\": \"124\",\n        \"un_a3\": \"124\",\n        \"wb_a2\": \"CA\",\n        \"wb_a3\": \"CAN\",\n        \"woe_id\": 23424775,\n        \"woe_id_eh\": 23424775,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"CAN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"CAN\",\n        \"adm0_a3_us\": \"CAN\",\n        \"adm0_a3_fr\": \"CAN\",\n        \"adm0_a3_ru\": \"CAN\",\n        \"adm0_a3_es\": \"CAN\",\n        \"adm0_a3_cn\": \"CAN\",\n        \"adm0_a3_tw\": \"CAN\",\n        \"adm0_a3_in\": \"CAN\",\n        \"adm0_a3_np\": \"CAN\",\n        \"adm0_a3_pk\": \"CAN\",\n        \"adm0_a3_de\": \"CAN\",\n        \"adm0_a3_gb\": \"CAN\",\n        \"adm0_a3_br\": \"CAN\",\n        \"adm0_a3_il\": \"CAN\",\n        \"adm0_a3_ps\": \"CAN\",\n        \"adm0_a3_sa\": \"CAN\",\n        \"adm0_a3_eg\": \"CAN\",\n        \"adm0_a3_ma\": \"CAN\",\n        \"adm0_a3_pt\": \"CAN\",\n        \"adm0_a3_ar\": \"CAN\",\n        \"adm0_a3_jp\": \"CAN\",\n        \"adm0_a3_ko\": \"CAN\",\n        \"adm0_a3_vn\": \"CAN\",\n        \"adm0_a3_tr\": \"CAN\",\n        \"adm0_a3_id\": \"CAN\",\n        \"adm0_a3_pl\": \"CAN\",\n        \"adm0_a3_gr\": \"CAN\",\n        \"adm0_a3_it\": \"CAN\",\n        \"adm0_a3_nl\": \"CAN\",\n        \"adm0_a3_se\": \"CAN\",\n        \"adm0_a3_bd\": \"CAN\",\n        \"adm0_a3_ua\": \"CAN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"North America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"Northern America\",\n        \"region_wb\": \"North America\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 5.7,\n        \"label_x\": -101.9107,\n        \"label_y\": 60.324287,\n        \"ne_id\": 1159320467,\n        \"wikidataid\": \"Q16\",\n        \"name_ar\": \"كندا\",\n        \"name_bn\": \"কানাডা\",\n        \"name_de\": \"Kanada\",\n        \"name_en\": \"Canada\",\n        \"name_es\": \"Canadá\",\n        \"name_fa\": \"کانادا\",\n        \"name_fr\": \"Canada\",\n        \"name_el\": \"Καναδάς\",\n        \"name_he\": \"קנדה\",\n        \"name_hi\": \"कनाडा\",\n        \"name_hu\": \"Kanada\",\n        \"name_id\": \"Kanada\",\n        \"name_it\": \"Canada\",\n        \"name_ja\": \"カナダ\",\n        \"name_ko\": \"캐나다\",\n        \"name_nl\": \"Canada\",\n        \"name_pl\": \"Kanada\",\n        \"name_pt\": \"Canadá\",\n        \"name_ru\": \"Канада\",\n        \"name_sv\": \"Kanada\",\n        \"name_tr\": \"Kanada\",\n        \"name_uk\": \"Канада\",\n        \"name_ur\": \"کینیڈا\",\n        \"name_vi\": \"Canada\",\n        \"name_zh\": \"加拿大\",\n        \"name_zht\": \"加拿大\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"CAN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-122.84, 49.000000000000114],\n              [-122.97421, 49.00253777777778],\n              [-124.91024, 49.98456],\n              [-125.62461, 50.41656],\n              [-127.43561, 50.83061],\n              [-127.99276, 51.71583],\n              [-127.85032, 52.32961],\n              [-129.12979, 52.75538],\n              [-129.30523, 53.56159],\n              [-130.51497, 54.28757],\n              [-130.53610895273684, 54.80275447679924],\n              [-130.53611, 54.80278],\n              [-129.98, 55.285],\n              [-130.00778, 55.91583],\n              [-131.70781, 56.55212],\n              [-132.73042, 57.69289],\n              [-133.35556, 58.41028],\n              [-134.27111, 58.86111],\n              [-134.945, 59.2705600000001],\n              [-135.47583, 59.78778],\n              [-136.47972, 59.46389],\n              [-137.4525, 58.905],\n              [-138.34089, 59.56211],\n              [-139.039, 60],\n              [-140.013, 60.27682],\n              [-140.99778, 60.30639],\n              [-140.9925, 66.00003],\n              [-140.986, 69.712],\n              [-140.98598761037601, 69.71199839952635],\n              [-139.12052, 69.47102],\n              [-137.54636, 68.99002],\n              [-136.50358, 68.89804],\n              [-135.62576, 69.31512],\n              [-134.41464, 69.62743],\n              [-132.92925, 69.50534],\n              [-131.43136, 69.94451],\n              [-129.79471, 70.19369],\n              [-129.10773, 69.77927],\n              [-128.36156, 70.01286],\n              [-128.13817, 70.48384],\n              [-127.44712, 70.37721],\n              [-125.75632, 69.48058],\n              [-124.42483, 70.1584],\n              [-124.28968, 69.39969],\n              [-123.06108, 69.56372],\n              [-122.6835, 69.85553],\n              [-121.47226, 69.79778],\n              [-119.94288, 69.37786],\n              [-117.60268, 69.01128],\n              [-116.22643, 68.84151],\n              [-115.2469, 68.90591],\n              [-113.89794, 68.3989],\n              [-115.30489, 67.90261],\n              [-113.49727, 67.68815],\n              [-110.798, 67.80612],\n              [-109.94619, 67.98104],\n              [-108.8802, 67.38144],\n              [-107.79239, 67.88736],\n              [-108.81299, 68.31164],\n              [-108.16721, 68.65392],\n              [-106.95, 68.7],\n              [-106.15, 68.8],\n              [-105.34282, 68.56122],\n              [-104.33791, 68.018],\n              [-103.22115, 68.09775],\n              [-101.45433, 67.64689],\n              [-99.90195, 67.80566],\n              [-98.4432, 67.78165],\n              [-98.5586, 68.40394],\n              [-97.66948, 68.57864],\n              [-96.11991, 68.23939],\n              [-96.12588, 67.29338],\n              [-95.48943, 68.0907],\n              [-94.685, 68.06383],\n              [-94.23282, 69.06903],\n              [-95.30408, 69.68571],\n              [-96.47131, 70.08976],\n              [-96.39115, 71.19482],\n              [-95.2088, 71.92053],\n              [-93.88997, 71.76015],\n              [-92.87818, 71.31869],\n              [-91.51964, 70.19129],\n              [-92.40692, 69.69997],\n              [-90.5471, 69.49766],\n              [-90.55151, 68.47499],\n              [-89.21515, 69.25873],\n              [-88.01966, 68.61508],\n              [-88.31749, 67.87338],\n              [-87.35017, 67.19872],\n              [-86.30607, 67.92146],\n              [-85.57664, 68.78456],\n              [-85.52197, 69.88211],\n              [-84.10081, 69.80539],\n              [-82.62258, 69.65826],\n              [-81.28043, 69.16202],\n              [-81.2202, 68.66567],\n              [-81.96436, 68.13253],\n              [-81.25928, 67.59716],\n              [-81.38653, 67.11078],\n              [-83.34456, 66.41154],\n              [-84.73542, 66.2573],\n              [-85.76943, 66.55833],\n              [-86.0676, 66.05625],\n              [-87.03143, 65.21297],\n              [-87.32324, 64.77563],\n              [-88.48296, 64.09897],\n              [-89.91444, 64.03273],\n              [-90.70398, 63.61017],\n              [-90.77004, 62.96021],\n              [-91.93342, 62.83508],\n              [-93.15698, 62.02469],\n              [-94.24153, 60.89865],\n              [-94.62931, 60.11021],\n              [-94.6846, 58.94882],\n              [-93.21502, 58.78212],\n              [-92.76462, 57.84571],\n              [-92.29703, 57.08709],\n              [-90.89769, 57.28468],\n              [-89.03953, 56.85172],\n              [-88.03978, 56.47162],\n              [-87.32421, 55.99914],\n              [-86.07121, 55.72383],\n              [-85.01181, 55.3026],\n              [-83.36055, 55.24489],\n              [-82.27285, 55.14832],\n              [-82.4362, 54.28227],\n              [-82.12502, 53.27703],\n              [-81.40075, 52.15788],\n              [-79.91289, 51.20842],\n              [-79.14301, 51.53393],\n              [-78.60191, 52.56208],\n              [-79.12421, 54.14145],\n              [-79.82958, 54.66772],\n              [-78.22874, 55.13645],\n              [-77.0956, 55.83741],\n              [-76.54137, 56.53423],\n              [-76.62319, 57.20263],\n              [-77.30226, 58.05209],\n              [-78.51688, 58.80458],\n              [-77.33676, 59.85261],\n              [-77.77272, 60.75788],\n              [-78.10687, 62.31964],\n              [-77.41067, 62.55053],\n              [-75.69621, 62.2784],\n              [-74.6682, 62.18111],\n              [-73.83988, 62.4438],\n              [-72.90853, 62.10507],\n              [-71.67708, 61.52535],\n              [-71.37369, 61.13717],\n              [-69.59042, 61.06141],\n              [-69.62033, 60.22125],\n              [-69.2879, 58.95736],\n              [-68.37455, 58.80106],\n              [-67.64976, 58.21206],\n              [-66.20178, 58.76731],\n              [-65.24517, 59.87071],\n              [-64.58352, 60.33558],\n              [-63.80475, 59.4426],\n              [-62.50236, 58.16708],\n              [-61.39655, 56.96745],\n              [-61.79866, 56.33945],\n              [-60.46853, 55.77548],\n              [-59.56962, 55.20407],\n              [-57.97508, 54.94549],\n              [-57.3332, 54.6265],\n              [-56.93689, 53.78032],\n              [-56.15811, 53.64749],\n              [-55.75632, 53.27036],\n              [-55.68338, 52.14664],\n              [-56.40916, 51.7707],\n              [-57.12691, 51.41972],\n              [-58.77482, 51.0643],\n              [-60.03309, 50.24277],\n              [-61.72366, 50.08046],\n              [-63.86251, 50.29099],\n              [-65.36331, 50.2982],\n              [-66.39905, 50.22897],\n              [-67.23631, 49.51156],\n              [-68.51114, 49.06836],\n              [-69.95362, 47.74488],\n              [-71.10458, 46.82171],\n              [-70.25522, 46.98606],\n              [-68.65, 48.3],\n              [-66.55243, 49.1331],\n              [-65.05626, 49.23278],\n              [-64.17099, 48.74248],\n              [-65.11545, 48.07085],\n              [-64.79854, 46.99297],\n              [-64.47219, 46.23849],\n              [-63.17329, 45.73902],\n              [-61.52072, 45.88377],\n              [-60.51815, 47.00793],\n              [-60.4486, 46.28264],\n              [-59.80287, 45.9204],\n              [-61.03988, 45.26525],\n              [-63.25471, 44.67014],\n              [-64.24656, 44.26553],\n              [-65.36406, 43.54523],\n              [-66.1234, 43.61867],\n              [-66.16173, 44.46512],\n              [-64.42549, 45.29204],\n              [-66.02605, 45.25931],\n              [-67.13741, 45.13753],\n              [-67.79134, 45.70281],\n              [-67.79046, 47.06636],\n              [-68.23444, 47.35486],\n              [-68.905, 47.185],\n              [-69.237216, 47.447781],\n              [-69.99997, 46.69307],\n              [-70.305, 45.915],\n              [-70.66, 45.46],\n              [-71.08482, 45.30524000000014],\n              [-71.405, 45.255],\n              [-71.50506, 45.0082],\n              [-73.34783, 45.00738],\n              [-74.867, 45.00048],\n              [-75.31821, 44.81645],\n              [-76.375, 44.09631],\n              [-76.5, 44.01845889375865],\n              [-76.82003414580558, 43.628784288093755],\n              [-77.7378850979577, 43.62905558936328],\n              [-78.72027991404235, 43.62508942318493],\n              [-79.17167355011186, 43.46633942318426],\n              [-79.01, 43.27],\n              [-78.92, 42.965],\n              [-78.93936214874375, 42.86361135514798],\n              [-80.24744767934794, 42.36619985612255],\n              [-81.27774654816716, 42.209025987306816],\n              [-82.4392777167916, 41.675105088867326],\n              [-82.69008928092023, 41.675105088867326],\n              [-83.029810146807, 41.83279572200598],\n              [-83.14199968131264, 41.975681057292874],\n              [-83.12, 42.08],\n              [-82.9, 42.43],\n              [-82.43, 42.98],\n              [-82.13764238150395, 43.57108755143997],\n              [-82.33776312543114, 44.44],\n              [-82.55092464875821, 45.34751658790543],\n              [-83.59285071484311, 45.81689362241252],\n              [-83.46955074739469, 45.994686387712534],\n              [-83.61613094759059, 46.116926988299014],\n              [-83.89076534700574, 46.116926988299014],\n              [-84.0918512641615, 46.27541860613826],\n              [-84.1421195136734, 46.51222585711571],\n              [-84.3367, 46.40877],\n              [-84.6049, 46.4396],\n              [-84.54374874544584, 46.538684190449146],\n              [-84.77923824739992, 46.63710195574902],\n              [-84.8760798815149, 46.90008331968238],\n              [-85.65236324740341, 47.22021881773051],\n              [-86.46199083122826, 47.553338019392],\n              [-87.43979262330028, 47.94],\n              [-88.37811418328671, 48.302917588893706],\n              [-89.27291744663665, 48.01980825458281],\n              [-89.6, 48.010000000000105],\n              [-90.83, 48.27],\n              [-91.64, 48.14],\n              [-92.61, 48.45],\n              [-93.63087, 48.60926],\n              [-94.32914, 48.67074],\n              [-94.64, 48.84],\n              [-94.81758, 49.38905],\n              [-95.15609, 49.38425],\n              [-95.15906950917206, 49],\n              [-97.2287200000048, 49.0007],\n              [-100.65, 49.000000000000114],\n              [-104.04826, 48.99986],\n              [-107.05, 49],\n              [-110.05, 49],\n              [-113, 49],\n              [-116.04818, 49],\n              [-117.03121, 49],\n              [-120, 49.000000000000114],\n              [-122.84, 49.000000000000114]\n            ]\n          ],\n          [\n            [\n              [-83.99367, 62.4528],\n              [-83.25048, 62.91409],\n              [-81.87699, 62.90458],\n              [-81.89825, 62.7108],\n              [-83.06857, 62.15922],\n              [-83.77462, 62.18231],\n              [-83.99367, 62.4528]\n            ]\n          ],\n          [\n            [\n              [-79.77583312988281, 72.8029022216797],\n              [-80.87609863281251, 73.33318328857422],\n              [-80.83388519287111, 73.69318389892578],\n              [-80.35305786132812, 73.75971984863281],\n              [-78.06443786621094, 73.65193176269531],\n              [-76.34, 73.10268498995305],\n              [-76.25140380859375, 72.82638549804688],\n              [-77.31443786621094, 72.85554504394531],\n              [-78.39167022705078, 72.87665557861328],\n              [-79.4862518310547, 72.74220275878906],\n              [-79.77583312988281, 72.8029022216797]\n            ]\n          ],\n          [\n            [\n              [-80.315395, 62.085565],\n              [-79.92939, 62.3856],\n              [-79.52002, 62.36371],\n              [-79.26582, 62.158675],\n              [-79.65752, 61.63308],\n              [-80.09956, 61.7181],\n              [-80.36215, 62.01649],\n              [-80.315395, 62.085565]\n            ]\n          ],\n          [\n            [\n              [-93.61275590694046, 74.97999726022438],\n              [-94.15690873897391, 74.59234650338688],\n              [-95.60868058956564, 74.66686391875176],\n              [-96.82093217648455, 74.92762319609658],\n              [-96.28858740922982, 75.37782827422338],\n              [-94.85081987178917, 75.64721751576089],\n              [-93.97774654821797, 75.29648956979595],\n              [-93.61275590694046, 74.97999726022438]\n            ]\n          ],\n          [\n            [\n              [-93.84000301794399, 77.51999726023455],\n              [-94.29560828324529, 77.49134267852868],\n              [-96.16965410031007, 77.55511139597685],\n              [-96.43630449093614, 77.83462921824362],\n              [-94.42257727738641, 77.820004787905],\n              [-93.7206562975659, 77.63433136668031],\n              [-93.84000301794399, 77.51999726023455]\n            ]\n          ],\n          [\n            [\n              [-96.75439876990876, 78.76581268992702],\n              [-95.5592779202946, 78.41831452098033],\n              [-95.83029496944934, 78.05694122996324],\n              [-97.30984290239799, 77.85059723582181],\n              [-98.12428931353404, 78.08285696075761],\n              [-98.55286780474668, 78.45810537384507],\n              [-98.63198442258553, 78.87193024363837],\n              [-97.33723141151266, 78.83198436147676],\n              [-96.75439876990876, 78.76581268992702]\n            ]\n          ],\n          [\n            [\n              [-88.15035030796028, 74.39230703398503],\n              [-89.7647220527584, 74.51555532500116],\n              [-92.42244096552946, 74.83775788034099],\n              [-92.76828548864282, 75.38681997344214],\n              [-92.88990597204175, 75.88265534128267],\n              [-93.89382402217599, 76.31924367950056],\n              [-95.9624574450358, 76.4413809272224],\n              [-97.1213789538295, 76.7510777859476],\n              [-96.74512285031237, 77.16138865834507],\n              [-94.68408586299944, 77.09787832305837],\n              [-93.57392106807313, 76.77629588490605],\n              [-91.6050231595366, 76.7785179714946],\n              [-90.7418458727493, 76.44959747995681],\n              [-90.96966142450802, 76.07401317005947],\n              [-89.82223792189926, 75.84777374948565],\n              [-89.18708289259985, 75.61016551380762],\n              [-87.83827633334965, 75.56618886992725],\n              [-86.37919226758864, 75.4824213731821],\n              [-84.78962521029058, 75.69920400664653],\n              [-82.75344458691006, 75.78431509063124],\n              [-81.12853084992436, 75.71398346628199],\n              [-80.05751095245915, 75.33684886341591],\n              [-79.83393286814837, 74.92312734648716],\n              [-80.45777075877587, 74.65730377877777],\n              [-81.94884253612557, 74.44245901152432],\n              [-83.22889360221143, 74.56402781849094],\n              [-86.09745235873332, 74.41003205026117],\n              [-88.15035030796028, 74.39230703398503]\n            ]\n          ],\n          [\n            [\n              [-111.26444332563088, 78.15295604116154],\n              [-109.85445187054711, 77.99632477488488],\n              [-110.18693803591302, 77.69701487905034],\n              [-112.0511911690585, 77.4092288276169],\n              [-113.53427893761912, 77.73220652944111],\n              [-112.7245867582539, 78.05105011668196],\n              [-111.26444332563088, 78.15295604116154]\n            ]\n          ],\n          [\n            [\n              [-110.96366065147602, 78.8044408230652],\n              [-109.6631457182026, 78.60197256134565],\n              [-110.88131425661892, 78.40691986765997],\n              [-112.54209143761516, 78.4079017198735],\n              [-112.52589087609164, 78.55055451121522],\n              [-111.5000103422334, 78.8499935981305],\n              [-110.96366065147602, 78.8044408230652]\n            ]\n          ],\n          [\n            [\n              [-55.600218268442056, 51.31707469339794],\n              [-56.13403581401709, 50.68700979267928],\n              [-56.795881720595276, 49.81230866149089],\n              [-56.14310502788433, 50.15011749938286],\n              [-55.471492275603, 49.93581533466846],\n              [-55.82240108908096, 49.58712860777905],\n              [-54.935142584845636, 49.3130109726868],\n              [-54.473775397343786, 49.556691189159125],\n              [-53.47654944519137, 49.24913890237404],\n              [-53.786013759971254, 48.516780503933624],\n              [-53.08613399922626, 48.68780365660358],\n              [-52.958648240762216, 48.15716421161447],\n              [-52.64809872090421, 47.53554840757552],\n              [-53.069158291218386, 46.65549876564492],\n              [-53.521456264853, 46.61829173439477],\n              [-54.17893551290251, 46.80706574155698],\n              [-53.9618686590605, 47.62520701760193],\n              [-54.24048214376214, 47.752279364607645],\n              [-55.40077307801157, 46.884993801453135],\n              [-55.99748084168583, 46.919720363953275],\n              [-55.29121904155279, 47.38956248635099],\n              [-56.250798712780586, 47.632545070987376],\n              [-57.32522925477708, 47.57280711525797],\n              [-59.26601518414682, 47.60334788674247],\n              [-59.419494188053676, 47.899453843774886],\n              [-58.79658647320744, 48.25152537697942],\n              [-59.23162451845657, 48.52318838153781],\n              [-58.3918049790652, 49.12558055276418],\n              [-57.35868974468606, 50.71827403421587],\n              [-56.738650071832026, 51.28743825947855],\n              [-55.87097693543532, 51.63209422464921],\n              [-55.40697424988659, 51.5882726100657],\n              [-55.600218268442056, 51.31707469339794]\n            ]\n          ],\n          [\n            [\n              [-83.88262630891977, 65.10961782496354],\n              [-82.78757687043883, 64.76669302027467],\n              [-81.6420137193926, 64.45513580998697],\n              [-81.55344031444432, 63.97960928003714],\n              [-80.81736121287886, 64.057485663501],\n              [-80.10345130076664, 63.72598135034862],\n              [-80.99101986359572, 63.41124603947496],\n              [-82.54717810741704, 63.65172231714521],\n              [-83.10879757356511, 64.10187571883971],\n              [-84.10041663281388, 63.569711819098],\n              [-85.52340471061905, 63.052379055424055],\n              [-85.8667687649824, 63.63725291610349],\n              [-87.22198320183678, 63.54123810490519],\n              [-86.35275977247133, 64.0358332383707],\n              [-86.2248864407651, 64.82291697860823],\n              [-85.88384782585486, 65.7387783881171],\n              [-85.1613079495499, 65.6572846543928],\n              [-84.97576371940592, 65.21751821558898],\n              [-84.4640120104195, 65.37177236598022],\n              [-83.88262630891977, 65.10961782496354]\n            ]\n          ],\n          [\n            [\n              [-78.77063859731078, 72.35217316353418],\n              [-77.8246239895596, 72.74961660429098],\n              [-75.60584469267573, 72.2436784939374],\n              [-74.228616095665, 71.76714427355789],\n              [-74.09914079455771, 71.33084015571758],\n              [-72.24222571479768, 71.55692454699452],\n              [-71.20001542833518, 70.92001251899718],\n              [-68.7860542466849, 70.52502370877427],\n              [-67.91497046575694, 70.12194753689765],\n              [-66.9690333726542, 69.18608734809182],\n              [-68.8051228502006, 68.72019847276444],\n              [-66.4498660956339, 68.06716339789203],\n              [-64.86231441919524, 67.84753856065159],\n              [-63.424934454996794, 66.92847321234059],\n              [-61.851981370680605, 66.86212067327783],\n              [-62.16317684594226, 66.16025136988962],\n              [-63.918444383384184, 64.9986685248329],\n              [-65.14886023625368, 65.42603261988667],\n              [-66.72121904159852, 66.38804108343219],\n              [-68.015016038674, 66.26272573512439],\n              [-68.1412874009792, 65.68978913030439],\n              [-67.08964616562342, 65.10845510523696],\n              [-65.73208045109976, 64.64840566675856],\n              [-65.32016760930125, 64.38273712834605],\n              [-64.66940629744968, 63.392926744227495],\n              [-65.01380388045888, 62.67418508569598],\n              [-66.27504472519048, 62.94509878198612],\n              [-68.7831862046927, 63.74567007105183],\n              [-67.36968075221309, 62.88396556258484],\n              [-66.32829728866726, 62.28007477482201],\n              [-66.16556820338015, 61.93089712182582],\n              [-68.87736650254465, 62.330149237712824],\n              [-71.02343705919385, 62.91070811629588],\n              [-72.23537858751902, 63.39783600529522],\n              [-71.88627844917127, 63.67998932560887],\n              [-73.37830624051838, 64.19396312118384],\n              [-74.83441891142263, 64.6790756293238],\n              [-74.81850257027673, 64.38909332951793],\n              [-77.70997982452008, 64.22954234481678],\n              [-78.5559488593542, 64.57290639918013],\n              [-77.89728105336198, 65.30919220647475],\n              [-76.01827429879717, 65.32696889918314],\n              [-73.95979529488268, 65.45476471624094],\n              [-74.29388342964964, 65.81177134872938],\n              [-73.94491248238262, 66.31057811142666],\n              [-72.65116716173942, 67.28457550726391],\n              [-72.92605994331605, 67.72692576768235],\n              [-73.31161780464572, 68.06943716091287],\n              [-74.84330725777684, 68.55462718370127],\n              [-76.86910091826672, 68.89473562283025],\n              [-76.22864905465738, 69.14776927354741],\n              [-77.28736996123715, 69.76954010688321],\n              [-78.1686339993266, 69.82648753526887],\n              [-78.95724219431673, 70.16688019477543],\n              [-79.49245500356366, 69.87180776638884],\n              [-81.30547095409176, 69.74318512641436],\n              [-84.94470618359851, 69.96663401964442],\n              [-87.06000342481789, 70.26000112576538],\n              [-88.68171322300148, 70.4107412787608],\n              [-89.51341956252303, 70.76203766548095],\n              [-88.46772111688082, 71.21818553332132],\n              [-89.88815121128755, 71.22255219184997],\n              [-90.20516028518205, 72.23507436796079],\n              [-89.436576707705, 73.12946421985238],\n              [-88.40824154331287, 73.53788890247121],\n              [-85.82615108920098, 73.80381582304518],\n              [-86.56217851433412, 73.15744700793844],\n              [-85.77437130404454, 72.53412588163387],\n              [-84.85011247428822, 73.34027822538708],\n              [-82.31559017610101, 73.7509508328106],\n              [-80.60008765330768, 72.71654368762417],\n              [-80.74894161652443, 72.06190664335072],\n              [-78.77063859731078, 72.35217316353418]\n            ]\n          ],\n          [\n            [\n              [-94.50365759965237, 74.13490672473922],\n              [-92.42001217321173, 74.1000251329422],\n              [-90.50979285354263, 73.85673248971206],\n              [-92.00396521682987, 72.96624420845852],\n              [-93.19629553910026, 72.77199249947334],\n              [-94.26904659704726, 72.02459625923599],\n              [-95.40985551632266, 72.06188080513458],\n              [-96.03374508338244, 72.94027680123183],\n              [-96.01826799191102, 73.43742991809582],\n              [-95.49579342322404, 73.86241689726417],\n              [-94.50365759965237, 74.13490672473922]\n            ]\n          ],\n          [\n            [\n              [-122.85492448615902, 76.11654287383568],\n              [-122.85492529360326, 76.11654287383568],\n              [-121.15753536032824, 76.86450755482828],\n              [-119.1039389718211, 77.51221995717462],\n              [-117.570130784966, 77.4983189968881],\n              [-116.19858659550738, 77.6452867703262],\n              [-116.33581336145845, 76.87696157501061],\n              [-117.10605058476882, 76.53003184681911],\n              [-118.04041215703819, 76.48117178008714],\n              [-119.89931758688572, 76.053213406062],\n              [-121.49999507712648, 75.90001862253276],\n              [-122.85492448615902, 76.11654287383568]\n            ]\n          ],\n          [\n            [\n              [-132.71000788443126, 54.04000931542356],\n              [-131.74998958400334, 54.12000438090922],\n              [-132.049480347351, 52.98462148702447],\n              [-131.1790425218266, 52.180432847698285],\n              [-131.57782954982298, 52.18237071390928],\n              [-132.18042842677852, 52.639707139692405],\n              [-132.54999243231384, 53.100014960332146],\n              [-133.05461117875552, 53.411468817755406],\n              [-133.2396644827927, 53.851080227262344],\n              [-133.1800040417117, 54.169975490935315],\n              [-132.71000788443126, 54.04000931542356]\n            ]\n          ],\n          [\n            [\n              [-105.4922891914932, 79.30159393992916],\n              [-103.52928239623795, 79.16534902619163],\n              [-100.8251580472688, 78.80046173777872],\n              [-100.0601918200522, 78.32475434031589],\n              [-99.67093909381364, 77.90754466420744],\n              [-101.30394019245301, 78.01898489044486],\n              [-102.94980872273302, 78.34322866486023],\n              [-105.17613277873151, 78.3803323432458],\n              [-104.21042945027713, 78.67742015249176],\n              [-105.41958045125853, 78.91833567983649],\n              [-105.4922891914932, 79.30159393992916]\n            ]\n          ],\n          [\n            [\n              [-123.51000158755119, 48.51001089130341],\n              [-124.01289078839955, 48.37084625914139],\n              [-125.65501277733838, 48.8250045843385],\n              [-125.95499446679275, 49.17999583596759],\n              [-126.85000443587185, 49.53000031188043],\n              [-127.02999344954443, 49.81499583597008],\n              [-128.0593363043662, 49.9949590114266],\n              [-128.44458410710214, 50.539137681676095],\n              [-128.35841365625546, 50.77064809834371],\n              [-127.30858109602994, 50.552573554071955],\n              [-126.69500097721235, 50.400903225295394],\n              [-125.7550066738232, 50.29501821552935],\n              [-125.4150015875588, 49.95000051533259],\n              [-124.92076818911934, 49.475274970083376],\n              [-123.92250870832106, 49.06248362893581],\n              [-123.51000158755119, 48.51001089130341]\n            ]\n          ],\n          [\n            [\n              [-121.53788, 74.44893],\n              [-120.10978, 74.24135],\n              [-117.55564, 74.18577],\n              [-116.58442, 73.89607],\n              [-115.51081, 73.47519],\n              [-116.76794, 73.22292],\n              [-119.22, 72.52],\n              [-120.46, 71.82],\n              [-120.46, 71.38360179308756],\n              [-123.09219, 70.90164],\n              [-123.62, 71.34],\n              [-125.92894873747338, 71.86868846301138],\n              [-125.5, 72.29226081179502],\n              [-124.80729, 73.02256],\n              [-123.94, 73.68000000000012],\n              [-124.91775, 74.29275000000013],\n              [-121.53788, 74.44893]\n            ]\n          ],\n          [\n            [\n              [-107.81943, 75.84552],\n              [-106.92893, 76.01282],\n              [-105.881, 75.9694],\n              [-105.70498, 75.47951],\n              [-106.31347, 75.00527],\n              [-109.7, 74.85],\n              [-112.22307, 74.41696],\n              [-113.74381, 74.39427],\n              [-113.87135, 74.72029],\n              [-111.79421, 75.1625],\n              [-116.31221, 75.04343],\n              [-117.7104, 75.2222],\n              [-116.34602, 76.19903],\n              [-115.40487, 76.47887],\n              [-112.59056, 76.14134],\n              [-110.81422, 75.54919],\n              [-109.0671, 75.47321],\n              [-110.49726, 76.42982],\n              [-109.5811, 76.79417],\n              [-108.54859, 76.67832],\n              [-108.21141, 76.20168],\n              [-107.81943, 75.84552]\n            ]\n          ],\n          [\n            [\n              [-106.52259, 73.07601],\n              [-105.40246, 72.67259],\n              [-104.77484, 71.6984000000001],\n              [-104.4647599999999, 70.99297],\n              [-102.78537, 70.49776],\n              [-100.98078, 70.02432],\n              [-101.08929, 69.58447000000012],\n              [-102.73116, 69.50402],\n              [-102.09329, 69.11962000000011],\n              [-102.43024, 68.75282],\n              [-104.24, 68.91],\n              [-105.96, 69.18000000000012],\n              [-107.12254, 69.11922],\n              [-109, 68.78],\n              [-111.53414887520017, 68.63005915681794],\n              [-113.3132, 68.53554],\n              [-113.85495999999989, 69.00744],\n              [-115.22, 69.28],\n              [-116.10794, 69.16821],\n              [-117.34, 69.96],\n              [-116.67473, 70.06655],\n              [-115.13112, 70.2373],\n              [-113.72141, 70.19237],\n              [-112.4161, 70.36638],\n              [-114.35, 70.6],\n              [-116.48684, 70.52045],\n              [-117.9048, 70.54056000000014],\n              [-118.43238, 70.9092],\n              [-116.11311, 71.30918],\n              [-117.65568, 71.2952],\n              [-119.40199, 71.55859],\n              [-118.56267, 72.30785],\n              [-117.86642, 72.70594],\n              [-115.18909, 73.31459000000012],\n              [-114.16717, 73.12145],\n              [-114.66634, 72.65277],\n              [-112.44102, 72.95540000000011],\n              [-111.05039, 72.4504],\n              [-109.92035, 72.96113],\n              [-109.00654, 72.63335],\n              [-108.18835, 71.65089],\n              [-107.68599, 72.06548],\n              [-108.39639, 73.08953],\n              [-107.51645, 73.23598],\n              [-106.52259, 73.07601]\n            ]\n          ],\n          [\n            [\n              [-100.43836, 72.70588],\n              [-101.54, 73.36],\n              [-100.35642, 73.84389],\n              [-99.16387, 73.63339],\n              [-97.38, 73.76],\n              [-97.12, 73.47],\n              [-98.05359, 72.99052],\n              [-96.54, 72.56],\n              [-96.72, 71.66],\n              [-98.35966, 71.27285],\n              [-99.32286, 71.35639],\n              [-100.01482, 71.73827],\n              [-102.5, 72.51],\n              [-102.48, 72.83],\n              [-100.43836, 72.70588]\n            ]\n          ],\n          [\n            [\n              [-106.6, 73.6],\n              [-105.26, 73.64],\n              [-104.5, 73.42],\n              [-105.38, 72.76],\n              [-106.94, 73.46],\n              [-106.6, 73.6]\n            ]\n          ],\n          [\n            [\n              [-98.5, 76.72],\n              [-97.735585, 76.25656],\n              [-97.704415, 75.74344],\n              [-98.16, 75],\n              [-99.80874, 74.89744],\n              [-100.88366, 75.05736],\n              [-100.86292, 75.64075],\n              [-102.50209, 75.5638],\n              [-102.56552, 76.3366],\n              [-101.48973, 76.30537],\n              [-99.98349, 76.64634],\n              [-98.57699, 76.58859],\n              [-98.5, 76.72]\n            ]\n          ],\n          [\n            [\n              [-96.01644, 80.60233],\n              [-95.32345, 80.90729],\n              [-94.29843, 80.97727],\n              [-94.73542, 81.20646],\n              [-92.40984, 81.25739],\n              [-91.13289, 80.72345],\n              [-89.45, 80.50932203389831],\n              [-87.81, 80.32],\n              [-87.02, 79.66],\n              [-85.81435, 79.3369],\n              [-87.18756, 79.0393],\n              [-89.03535, 78.28723],\n              [-90.80436, 78.21533],\n              [-92.87669, 78.34333],\n              [-93.95116, 78.75099],\n              [-93.93574, 79.11373],\n              [-93.14524, 79.3801],\n              [-94.974, 79.37248],\n              [-96.07614, 79.70502],\n              [-96.70972, 80.15777],\n              [-96.01644, 80.60233]\n            ]\n          ],\n          [\n            [\n              [-91.58702, 81.89429],\n              [-90.1, 82.085],\n              [-88.93227, 82.11751],\n              [-86.97024, 82.27961],\n              [-85.5, 82.65227345805702],\n              [-84.260005, 82.6],\n              [-83.18, 82.32],\n              [-82.42, 82.86],\n              [-81.1, 83.02],\n              [-79.30664, 83.13056],\n              [-76.25, 83.17205882352941],\n              [-75.71878, 83.06404],\n              [-72.83153, 83.23324],\n              [-70.665765, 83.16978075838284],\n              [-68.5, 83.10632151676572],\n              [-65.82735, 83.02801],\n              [-63.68, 82.9],\n              [-61.85, 82.6286],\n              [-61.89388, 82.36165],\n              [-64.334, 81.92775],\n              [-66.75342, 81.72527],\n              [-67.65755, 81.50141],\n              [-65.48031, 81.50657],\n              [-67.84, 80.9],\n              [-69.4697, 80.61683],\n              [-71.18, 79.8],\n              [-73.2428, 79.63415],\n              [-73.88, 79.43016220480206],\n              [-76.90773, 79.32309],\n              [-75.52924, 79.19766],\n              [-76.22046, 79.01907],\n              [-75.39345, 78.52581],\n              [-76.34354, 78.18296],\n              [-77.88851, 77.89991],\n              [-78.36269, 77.50859],\n              [-79.75951, 77.20968],\n              [-79.61965, 76.98336],\n              [-77.91089, 77.022045],\n              [-77.88911, 76.777955],\n              [-80.56125, 76.17812],\n              [-83.17439, 76.45403],\n              [-86.11184, 76.29901],\n              [-87.6, 76.42],\n              [-89.49068, 76.47239],\n              [-89.6161, 76.95213],\n              [-87.76739, 77.17833],\n              [-88.26, 77.9],\n              [-87.65, 77.97022222222223],\n              [-84.97634, 77.53873],\n              [-86.34, 78.18],\n              [-87.96192, 78.37181],\n              [-87.15198, 78.75867],\n              [-85.37868, 78.9969],\n              [-85.09495, 79.34543],\n              [-86.50734, 79.73624],\n              [-86.93179, 80.25145],\n              [-84.19844, 80.20836],\n              [-83.40869565217389, 80.1],\n              [-81.84823, 80.46442],\n              [-84.1, 80.58],\n              [-87.59895, 80.51627],\n              [-89.36663, 80.85569],\n              [-90.2, 81.26],\n              [-91.36786, 81.5531],\n              [-91.58702, 81.89429]\n            ]\n          ],\n          [\n            [\n              [-75.21597, 67.44425],\n              [-75.86588, 67.14886],\n              [-76.98687, 67.09873],\n              [-77.2364, 67.58809],\n              [-76.81166, 68.14856],\n              [-75.89521, 68.28721],\n              [-75.1145, 68.01036],\n              [-75.10333, 67.58202],\n              [-75.21597, 67.44425]\n            ]\n          ],\n          [\n            [\n              [-96.25740120380055, 69.49003035832177],\n              [-95.64768120380054, 69.10769035832178],\n              [-96.26952120380055, 68.75704035832177],\n              [-97.61740120380055, 69.06003035832177],\n              [-98.43180120380055, 68.95070035832177],\n              [-99.79740120380055, 69.40003035832177],\n              [-98.91740120380055, 69.71003035832177],\n              [-98.21826120380055, 70.14354035832177],\n              [-97.15740120380055, 69.86003035832177],\n              [-96.55740120380055, 69.68003035832177],\n              [-96.25740120380055, 69.49003035832177]\n            ]\n          ],\n          [\n            [\n              [-64.51912, 49.87304],\n              [-64.17322, 49.95718],\n              [-62.85829, 49.70641],\n              [-61.835585, 49.28855],\n              [-61.806305, 49.10506],\n              [-62.29318, 49.08717],\n              [-63.58926, 49.40069],\n              [-64.51912, 49.87304]\n            ]\n          ],\n          [\n            [\n              [-64.01486, 47.03601],\n              [-63.6645, 46.55001],\n              [-62.9393, 46.41587],\n              [-62.01208, 46.44314],\n              [-62.50391, 46.03339],\n              [-62.87433, 45.96818],\n              [-64.1428, 46.39265],\n              [-64.39261, 46.72747],\n              [-64.01486, 47.03601]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Mexico\",\n        \"sov_a3\": \"MEX\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Mexico\",\n        \"adm0_a3\": \"MEX\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Mexico\",\n        \"gu_a3\": \"MEX\",\n        \"su_dif\": 0,\n        \"subunit\": \"Mexico\",\n        \"su_a3\": \"MEX\",\n        \"brk_diff\": 0,\n        \"name\": \"Mexico\",\n        \"name_long\": \"Mexico\",\n        \"brk_a3\": \"MEX\",\n        \"brk_name\": \"Mexico\",\n        \"brk_group\": null,\n        \"abbrev\": \"Mex.\",\n        \"postal\": \"MX\",\n        \"formal_en\": \"United Mexican States\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Mexico\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Mexico\",\n        \"name_alt\": null,\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 7,\n        \"mapcolor13\": 3,\n        \"pop_est\": 127575529,\n        \"pop_rank\": 17,\n        \"pop_year\": 2019,\n        \"gdp_md\": 1268870,\n        \"gdp_year\": 2019,\n        \"economy\": \"4. Emerging region: MIKT\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"MX\",\n        \"iso_a2\": \"MX\",\n        \"iso_a2_eh\": \"MX\",\n        \"iso_a3\": \"MEX\",\n        \"iso_a3_eh\": \"MEX\",\n        \"iso_n3\": \"484\",\n        \"iso_n3_eh\": \"484\",\n        \"un_a3\": \"484\",\n        \"wb_a2\": \"MX\",\n        \"wb_a3\": \"MEX\",\n        \"woe_id\": 23424900,\n        \"woe_id_eh\": 23424900,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"MEX\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"MEX\",\n        \"adm0_a3_us\": \"MEX\",\n        \"adm0_a3_fr\": \"MEX\",\n        \"adm0_a3_ru\": \"MEX\",\n        \"adm0_a3_es\": \"MEX\",\n        \"adm0_a3_cn\": \"MEX\",\n        \"adm0_a3_tw\": \"MEX\",\n        \"adm0_a3_in\": \"MEX\",\n        \"adm0_a3_np\": \"MEX\",\n        \"adm0_a3_pk\": \"MEX\",\n        \"adm0_a3_de\": \"MEX\",\n        \"adm0_a3_gb\": \"MEX\",\n        \"adm0_a3_br\": \"MEX\",\n        \"adm0_a3_il\": \"MEX\",\n        \"adm0_a3_ps\": \"MEX\",\n        \"adm0_a3_sa\": \"MEX\",\n        \"adm0_a3_eg\": \"MEX\",\n        \"adm0_a3_ma\": \"MEX\",\n        \"adm0_a3_pt\": \"MEX\",\n        \"adm0_a3_ar\": \"MEX\",\n        \"adm0_a3_jp\": \"MEX\",\n        \"adm0_a3_ko\": \"MEX\",\n        \"adm0_a3_vn\": \"MEX\",\n        \"adm0_a3_tr\": \"MEX\",\n        \"adm0_a3_id\": \"MEX\",\n        \"adm0_a3_pl\": \"MEX\",\n        \"adm0_a3_gr\": \"MEX\",\n        \"adm0_a3_it\": \"MEX\",\n        \"adm0_a3_nl\": \"MEX\",\n        \"adm0_a3_se\": \"MEX\",\n        \"adm0_a3_bd\": \"MEX\",\n        \"adm0_a3_ua\": \"MEX\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"North America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"Central America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2,\n        \"max_label\": 6.7,\n        \"label_x\": -102.289448,\n        \"label_y\": 23.919988,\n        \"ne_id\": 1159321055,\n        \"wikidataid\": \"Q96\",\n        \"name_ar\": \"المكسيك\",\n        \"name_bn\": \"মেক্সিকো\",\n        \"name_de\": \"Mexiko\",\n        \"name_en\": \"Mexico\",\n        \"name_es\": \"México\",\n        \"name_fa\": \"مکزیک\",\n        \"name_fr\": \"Mexique\",\n        \"name_el\": \"Μεξικό\",\n        \"name_he\": \"מקסיקו\",\n        \"name_hi\": \"मेक्सिको\",\n        \"name_hu\": \"Mexikó\",\n        \"name_id\": \"Meksiko\",\n        \"name_it\": \"Messico\",\n        \"name_ja\": \"メキシコ\",\n        \"name_ko\": \"멕시코\",\n        \"name_nl\": \"Mexico\",\n        \"name_pl\": \"Meksyk\",\n        \"name_pt\": \"México\",\n        \"name_ru\": \"Мексика\",\n        \"name_sv\": \"Mexiko\",\n        \"name_tr\": \"Meksika\",\n        \"name_uk\": \"Мексика\",\n        \"name_ur\": \"میکسیکو\",\n        \"name_vi\": \"México\",\n        \"name_zh\": \"墨西哥\",\n        \"name_zht\": \"墨西哥\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"MEX.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-117.12775999999985, 32.53534],\n            [-115.99135, 32.61239000000012],\n            [-114.72139, 32.72083],\n            [-114.815, 32.52528],\n            [-113.30498, 32.03914],\n            [-111.02361, 31.33472],\n            [-109.035, 31.341940000000136],\n            [-108.24194, 31.34222],\n            [-108.24, 31.754853718166373],\n            [-106.50758999999988, 31.75452],\n            [-106.1429, 31.39995],\n            [-105.63159, 31.08383],\n            [-105.03737, 30.64402],\n            [-104.70575, 30.12173],\n            [-104.4569699999999, 29.57196],\n            [-103.94, 29.27],\n            [-103.11, 28.97],\n            [-102.48, 29.76],\n            [-101.6624, 29.7793],\n            [-100.9576, 29.380710000000136],\n            [-100.45584, 28.69612000000012],\n            [-100.11, 28.110000000000127],\n            [-99.52, 27.54],\n            [-99.3, 26.84],\n            [-99.02, 26.37],\n            [-98.24, 26.06],\n            [-97.53, 25.84],\n            [-97.14000830767071, 25.8699974634784],\n            [-97.52807247596655, 24.9921440699203],\n            [-97.70294552284224, 24.272343044526735],\n            [-97.77604183631905, 22.93257986092766],\n            [-97.87236670611111, 22.44421173755336],\n            [-97.69904395220419, 21.898689480064263],\n            [-97.38895952023677, 21.411018988525825],\n            [-97.18933346229329, 20.635433254473128],\n            [-96.52557552772032, 19.890930894444068],\n            [-96.29212724484177, 19.320371405509547],\n            [-95.90088497595997, 18.82802419684873],\n            [-94.83906348344271, 18.562717393462208],\n            [-94.42572953975622, 18.144370835843347],\n            [-93.5486512926824, 18.423836981677937],\n            [-92.7861138577835, 18.52483856859226],\n            [-92.0373481920904, 18.704569200103435],\n            [-91.40790340855926, 18.87608327888023],\n            [-90.77186987991087, 19.28412038825678],\n            [-90.53358985061305, 19.8674181177513],\n            [-90.45147599970124, 20.707521877520435],\n            [-90.2786183336849, 20.999855454995554],\n            [-89.60132117385149, 21.26172577563449],\n            [-88.54386633986286, 21.49367544197662],\n            [-87.65841651075772, 21.45884552661198],\n            [-87.05189022494807, 21.5435431991383],\n            [-86.81198238803296, 21.331514797444754],\n            [-86.84590796583262, 20.849864610268355],\n            [-87.38329118523586, 20.25540477139873],\n            [-87.62105445021075, 19.64655304613592],\n            [-87.43675045444178, 19.47240346931227],\n            [-87.58656043165593, 19.04013011319074],\n            [-87.83719112827151, 18.25981598558343],\n            [-88.09066402866318, 18.51664785407405],\n            [-88.3000310940937, 18.4999822046599],\n            [-88.49012285027935, 18.486830552641607],\n            [-88.84834387892661, 17.883198147040233],\n            [-89.02985734735182, 18.001511338772488],\n            [-89.15090938999553, 17.95546763760042],\n            [-89.14308041050333, 17.808318996649405],\n            [-90.06793351923098, 17.819326076727478],\n            [-91.00151994501596, 17.81759491624571],\n            [-91.00226925328421, 17.25465770107418],\n            [-91.45392127151516, 17.252177232324172],\n            [-91.08167009150065, 16.918476670799407],\n            [-90.71182186558772, 16.687483018454728],\n            [-90.60084672724093, 16.47077789963879],\n            [-90.43886695022204, 16.410109768128095],\n            [-90.46447262242266, 16.069562079324655],\n            [-91.74796017125595, 16.066564846251765],\n            [-92.2292486234063, 15.251446641495875],\n            [-92.08721594925207, 15.064584662328441],\n            [-92.20322953974733, 14.830102850804069],\n            [-92.22775000686983, 14.538828640190928],\n            [-93.35946387406176, 15.615429592343673],\n            [-93.87516883011853, 15.940164292865916],\n            [-94.69165646033014, 16.200975246642884],\n            [-95.25022701697304, 16.128318182840644],\n            [-96.05338212765332, 15.752087917539598],\n            [-96.55743404822829, 15.653515122942792],\n            [-97.26359249549665, 15.917064927631316],\n            [-98.01302995480961, 16.107311713113916],\n            [-98.94767574745651, 16.566043402568766],\n            [-99.69739742714705, 16.70616404872817],\n            [-100.82949886758132, 17.17107107184205],\n            [-101.66608862995446, 17.649026394109626],\n            [-101.91852800170022, 17.916090196193977],\n            [-102.47813208698892, 17.975750637275098],\n            [-103.50098954955808, 18.29229462327885],\n            [-103.91752743204682, 18.74857168220001],\n            [-104.9920096504755, 19.316133938061682],\n            [-105.49303849976144, 19.946767279535436],\n            [-105.73139604370766, 20.434101874264115],\n            [-105.39777299683135, 20.531718654863425],\n            [-105.50066077352443, 20.81689504646613],\n            [-105.27075232625793, 21.07628489835514],\n            [-105.26581722697404, 21.42210358325235],\n            [-105.6031609769754, 21.87114594165257],\n            [-105.69341386597313, 22.269080308516152],\n            [-106.02871639689897, 22.773752346278627],\n            [-106.90998043498837, 23.767774359628902],\n            [-107.91544877809139, 24.54891531015295],\n            [-108.40190487347098, 25.172313951105934],\n            [-109.26019873740665, 25.58060944264406],\n            [-109.44408932171734, 25.82488393808768],\n            [-109.29164384645628, 26.442934068298428],\n            [-109.80145768923182, 26.676175645447927],\n            [-110.3917317370857, 27.16211497650454],\n            [-110.64101884646163, 27.859876003525528],\n            [-111.17891883018785, 27.94124054616907],\n            [-111.75960689985163, 28.46795258230395],\n            [-112.2282346260904, 28.95440867768349],\n            [-112.27182369672869, 29.266844387320077],\n            [-112.80959448937398, 30.02111359305235],\n            [-113.16381059451868, 30.786880804969428],\n            [-113.14866939985717, 31.170965887978923],\n            [-113.87188106978186, 31.567608344035193],\n            [-114.20573666060352, 31.524045111613134],\n            [-114.77645117883503, 31.79953217216115],\n            [-114.93669979537214, 31.393484605427602],\n            [-114.7712318591735, 30.913617255165263],\n            [-114.67389929895177, 30.162681179315996],\n            [-114.33097449426293, 29.750432440707414],\n            [-113.58887508833544, 29.061611436473015],\n            [-113.42405310754054, 28.82617361095123],\n            [-113.27196936730553, 28.7547826197399],\n            [-113.14003943566439, 28.41128937429596],\n            [-112.9622983467965, 28.42519033458251],\n            [-112.76158708377488, 27.780216783147523],\n            [-112.45791052941166, 27.52581370697476],\n            [-112.2449519519368, 27.17172679291076],\n            [-111.61648902061921, 26.662817287700477],\n            [-111.28467464887302, 25.732589830014433],\n            [-110.9878193835724, 25.294606228124564],\n            [-110.71000688357134, 24.82600434010186],\n            [-110.65504899782889, 24.298594672131117],\n            [-110.17285620811344, 24.265547593680424],\n            [-109.77184709352855, 23.811182562754198],\n            [-109.40910437705571, 23.36467234953625],\n            [-109.43339230023292, 23.1855876734287],\n            [-109.85421932660171, 22.818271592698068],\n            [-110.03139197471444, 22.823077500901206],\n            [-110.29507097048366, 23.43097321216669],\n            [-110.94950130902805, 24.000964260345995],\n            [-111.6705684070127, 24.484423122652515],\n            [-112.18203589562148, 24.738412787367167],\n            [-112.14898881717085, 25.47012523040405],\n            [-112.3007108223797, 26.012004299416617],\n            [-112.77729671919155, 26.32195954030317],\n            [-113.46467078332194, 26.768185533143424],\n            [-113.59672990604383, 26.639459540304472],\n            [-113.84893673384425, 26.90006378835244],\n            [-114.46574662968004, 27.142090358991368],\n            [-115.05514217818501, 27.72272675222291],\n            [-114.98225257043742, 27.798200181585116],\n            [-114.57036556685495, 27.74148529714489],\n            [-114.19932878299926, 28.115002549750557],\n            [-114.16201839888464, 28.566111965442303],\n            [-114.93184221073665, 29.27947927501549],\n            [-115.518653937627, 29.5563615992354],\n            [-115.88736528202958, 30.180793768834178],\n            [-116.25835038945291, 30.836464341753583],\n            [-116.72152625208497, 31.635743720012044],\n            [-117.12775999999985, 32.53534]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Belize\",\n        \"sov_a3\": \"BLZ\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Belize\",\n        \"adm0_a3\": \"BLZ\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Belize\",\n        \"gu_a3\": \"BLZ\",\n        \"su_dif\": 0,\n        \"subunit\": \"Belize\",\n        \"su_a3\": \"BLZ\",\n        \"brk_diff\": 0,\n        \"name\": \"Belize\",\n        \"name_long\": \"Belize\",\n        \"brk_a3\": \"BLZ\",\n        \"brk_name\": \"Belize\",\n        \"brk_group\": null,\n        \"abbrev\": \"Belize\",\n        \"postal\": \"BZ\",\n        \"formal_en\": \"Belize\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Belize\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Belize\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 7,\n        \"pop_est\": 390353,\n        \"pop_rank\": 10,\n        \"pop_year\": 2019,\n        \"gdp_md\": 1879,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"BH\",\n        \"iso_a2\": \"BZ\",\n        \"iso_a2_eh\": \"BZ\",\n        \"iso_a3\": \"BLZ\",\n        \"iso_a3_eh\": \"BLZ\",\n        \"iso_n3\": \"084\",\n        \"iso_n3_eh\": \"084\",\n        \"un_a3\": \"084\",\n        \"wb_a2\": \"BZ\",\n        \"wb_a3\": \"BLZ\",\n        \"woe_id\": 23424760,\n        \"woe_id_eh\": 23424760,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"BLZ\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"BLZ\",\n        \"adm0_a3_us\": \"BLZ\",\n        \"adm0_a3_fr\": \"BLZ\",\n        \"adm0_a3_ru\": \"BLZ\",\n        \"adm0_a3_es\": \"BLZ\",\n        \"adm0_a3_cn\": \"BLZ\",\n        \"adm0_a3_tw\": \"BLZ\",\n        \"adm0_a3_in\": \"BLZ\",\n        \"adm0_a3_np\": \"BLZ\",\n        \"adm0_a3_pk\": \"BLZ\",\n        \"adm0_a3_de\": \"BLZ\",\n        \"adm0_a3_gb\": \"BLZ\",\n        \"adm0_a3_br\": \"BLZ\",\n        \"adm0_a3_il\": \"BLZ\",\n        \"adm0_a3_ps\": \"BLZ\",\n        \"adm0_a3_sa\": \"BLZ\",\n        \"adm0_a3_eg\": \"BLZ\",\n        \"adm0_a3_ma\": \"BLZ\",\n        \"adm0_a3_pt\": \"BLZ\",\n        \"adm0_a3_ar\": \"BLZ\",\n        \"adm0_a3_jp\": \"BLZ\",\n        \"adm0_a3_ko\": \"BLZ\",\n        \"adm0_a3_vn\": \"BLZ\",\n        \"adm0_a3_tr\": \"BLZ\",\n        \"adm0_a3_id\": \"BLZ\",\n        \"adm0_a3_pl\": \"BLZ\",\n        \"adm0_a3_gr\": \"BLZ\",\n        \"adm0_a3_it\": \"BLZ\",\n        \"adm0_a3_nl\": \"BLZ\",\n        \"adm0_a3_se\": \"BLZ\",\n        \"adm0_a3_bd\": \"BLZ\",\n        \"adm0_a3_ua\": \"BLZ\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"North America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"Central America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 5,\n        \"max_label\": 10,\n        \"label_x\": -88.712962,\n        \"label_y\": 17.202068,\n        \"ne_id\": 1159320431,\n        \"wikidataid\": \"Q242\",\n        \"name_ar\": \"بليز\",\n        \"name_bn\": \"বেলিজ\",\n        \"name_de\": \"Belize\",\n        \"name_en\": \"Belize\",\n        \"name_es\": \"Belice\",\n        \"name_fa\": \"بلیز\",\n        \"name_fr\": \"Belize\",\n        \"name_el\": \"Μπελίζ\",\n        \"name_he\": \"בליז\",\n        \"name_hi\": \"बेलीज़\",\n        \"name_hu\": \"Belize\",\n        \"name_id\": \"Belize\",\n        \"name_it\": \"Belize\",\n        \"name_ja\": \"ベリーズ\",\n        \"name_ko\": \"벨리즈\",\n        \"name_nl\": \"Belize\",\n        \"name_pl\": \"Belize\",\n        \"name_pt\": \"Belize\",\n        \"name_ru\": \"Белиз\",\n        \"name_sv\": \"Belize\",\n        \"name_tr\": \"Belize\",\n        \"name_uk\": \"Беліз\",\n        \"name_ur\": \"بیلیز\",\n        \"name_vi\": \"Belize\",\n        \"name_zh\": \"伯利兹\",\n        \"name_zht\": \"貝里斯\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"BLZ.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-89.14308041050333, 17.808318996649405],\n            [-89.15090938999553, 17.95546763760042],\n            [-89.02985734735182, 18.001511338772488],\n            [-88.84834387892661, 17.883198147040233],\n            [-88.49012285027935, 18.486830552641607],\n            [-88.3000310940937, 18.4999822046599],\n            [-88.29633622918482, 18.35327281338327],\n            [-88.10681291375438, 18.348673610909287],\n            [-88.1234785631685, 18.07667470954101],\n            [-88.2853549873228, 17.644142971258034],\n            [-88.19786678745265, 17.489475409408456],\n            [-88.30264075392444, 17.131693630435663],\n            [-88.23951799187991, 17.036066392479555],\n            [-88.35542822951057, 16.530774237529627],\n            [-88.55182451043585, 16.265467434143147],\n            [-88.73243364129594, 16.233634751851355],\n            [-88.93061275913527, 15.887273464415076],\n            [-89.22912167026928, 15.886937567605171],\n            [-89.15080603713095, 17.015576687075836],\n            [-89.14308041050333, 17.808318996649405]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Panama\",\n        \"sov_a3\": \"PAN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Panama\",\n        \"adm0_a3\": \"PAN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Panama\",\n        \"gu_a3\": \"PAN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Panama\",\n        \"su_a3\": \"PAN\",\n        \"brk_diff\": 0,\n        \"name\": \"Panama\",\n        \"name_long\": \"Panama\",\n        \"brk_a3\": \"PAN\",\n        \"brk_name\": \"Panama\",\n        \"brk_group\": null,\n        \"abbrev\": \"Pan.\",\n        \"postal\": \"PA\",\n        \"formal_en\": \"Republic of Panama\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Panama\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Panama\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 6,\n        \"mapcolor13\": 3,\n        \"pop_est\": 4246439,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 66800,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"PM\",\n        \"iso_a2\": \"PA\",\n        \"iso_a2_eh\": \"PA\",\n        \"iso_a3\": \"PAN\",\n        \"iso_a3_eh\": \"PAN\",\n        \"iso_n3\": \"591\",\n        \"iso_n3_eh\": \"591\",\n        \"un_a3\": \"591\",\n        \"wb_a2\": \"PA\",\n        \"wb_a3\": \"PAN\",\n        \"woe_id\": 23424924,\n        \"woe_id_eh\": 23424924,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"PAN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"PAN\",\n        \"adm0_a3_us\": \"PAN\",\n        \"adm0_a3_fr\": \"PAN\",\n        \"adm0_a3_ru\": \"PAN\",\n        \"adm0_a3_es\": \"PAN\",\n        \"adm0_a3_cn\": \"PAN\",\n        \"adm0_a3_tw\": \"PAN\",\n        \"adm0_a3_in\": \"PAN\",\n        \"adm0_a3_np\": \"PAN\",\n        \"adm0_a3_pk\": \"PAN\",\n        \"adm0_a3_de\": \"PAN\",\n        \"adm0_a3_gb\": \"PAN\",\n        \"adm0_a3_br\": \"PAN\",\n        \"adm0_a3_il\": \"PAN\",\n        \"adm0_a3_ps\": \"PAN\",\n        \"adm0_a3_sa\": \"PAN\",\n        \"adm0_a3_eg\": \"PAN\",\n        \"adm0_a3_ma\": \"PAN\",\n        \"adm0_a3_pt\": \"PAN\",\n        \"adm0_a3_ar\": \"PAN\",\n        \"adm0_a3_jp\": \"PAN\",\n        \"adm0_a3_ko\": \"PAN\",\n        \"adm0_a3_vn\": \"PAN\",\n        \"adm0_a3_tr\": \"PAN\",\n        \"adm0_a3_id\": \"PAN\",\n        \"adm0_a3_pl\": \"PAN\",\n        \"adm0_a3_gr\": \"PAN\",\n        \"adm0_a3_it\": \"PAN\",\n        \"adm0_a3_nl\": \"PAN\",\n        \"adm0_a3_se\": \"PAN\",\n        \"adm0_a3_bd\": \"PAN\",\n        \"adm0_a3_ua\": \"PAN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"North America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"Central America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": -80.352106,\n        \"label_y\": 8.72198,\n        \"ne_id\": 1159321161,\n        \"wikidataid\": \"Q804\",\n        \"name_ar\": \"بنما\",\n        \"name_bn\": \"পানামা\",\n        \"name_de\": \"Panama\",\n        \"name_en\": \"Panama\",\n        \"name_es\": \"Panamá\",\n        \"name_fa\": \"پاناما\",\n        \"name_fr\": \"Panama\",\n        \"name_el\": \"Παναμάς\",\n        \"name_he\": \"פנמה\",\n        \"name_hi\": \"पनामा\",\n        \"name_hu\": \"Panama\",\n        \"name_id\": \"Panama\",\n        \"name_it\": \"Panama\",\n        \"name_ja\": \"パナマ\",\n        \"name_ko\": \"파나마\",\n        \"name_nl\": \"Panama\",\n        \"name_pl\": \"Panama\",\n        \"name_pt\": \"Panamá\",\n        \"name_ru\": \"Панама\",\n        \"name_sv\": \"Panama\",\n        \"name_tr\": \"Panama\",\n        \"name_uk\": \"Панама\",\n        \"name_ur\": \"پاناما\",\n        \"name_vi\": \"Panama\",\n        \"name_zh\": \"巴拿马\",\n        \"name_zht\": \"巴拿馬\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"PAN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-77.35336076527386, 8.67050466555807],\n            [-77.47472286651133, 8.524286200388218],\n            [-77.24256649444008, 7.935278225125444],\n            [-77.43110795765699, 7.638061224798734],\n            [-77.7534138658614, 7.709839789252143],\n            [-77.88157141794525, 7.223771267114785],\n            [-78.21493608266012, 7.512254950384161],\n            [-78.42916073272607, 8.052041123888927],\n            [-78.18209570993864, 8.319182440621773],\n            [-78.4354652574657, 8.38770538984079],\n            [-78.62212053090394, 8.718124497915028],\n            [-79.12030717641375, 8.996092027213024],\n            [-79.55787736684519, 8.932374986197146],\n            [-79.76057817251005, 8.5845150822244],\n            [-80.16448116730334, 8.333315944853595],\n            [-80.38265906443962, 8.298408514840432],\n            [-80.4806892564973, 8.09030752200107],\n            [-80.00368994822716, 7.547524115423372],\n            [-80.276670701809, 7.419754136581716],\n            [-80.42115800649708, 7.271571966984765],\n            [-80.8864009264208, 7.220541490096537],\n            [-81.05954281281473, 7.817921047390597],\n            [-81.18971574575795, 7.64790558515034],\n            [-81.51951473664468, 7.706610012233909],\n            [-81.72131120474447, 8.108962714058435],\n            [-82.13144120962892, 8.175392767769637],\n            [-82.39093441438257, 8.29236237226229],\n            [-82.82008134635042, 8.290863755725823],\n            [-82.85095801464482, 8.073822740099956],\n            [-82.96578304719736, 8.225027980985985],\n            [-82.91317643912421, 8.42351715741907],\n            [-82.82977067740516, 8.62629547773237],\n            [-82.86865719270477, 8.807266343618522],\n            [-82.71918311230053, 8.925708726431495],\n            [-82.92715491405916, 9.074330145702916],\n            [-82.93289099804358, 9.476812038608173],\n            [-82.54619625520348, 9.566134751824677],\n            [-82.18712256542341, 9.20744863528678],\n            [-82.20758643261097, 8.9955752628901],\n            [-81.80856686066929, 8.950616766796173],\n            [-81.71415401887204, 9.031955471223583],\n            [-81.43928707551154, 8.786234035675719],\n            [-80.94730160187676, 8.858503526235907],\n            [-80.52190121125008, 9.111072089062432],\n            [-79.91459977895599, 9.31276520429762],\n            [-79.57330278188431, 9.611610012241528],\n            [-79.02119177927793, 9.552931423374105],\n            [-79.05845048696037, 9.454565334506526],\n            [-78.50088762074719, 9.420458889193881],\n            [-78.05592770049802, 9.2477304142583],\n            [-77.72951351592641, 8.946844387238869],\n            [-77.35336076527386, 8.67050466555807]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Denmark\",\n        \"sov_a3\": \"DN1\",\n        \"adm0_dif\": 1,\n        \"level\": 2,\n        \"type\": \"Country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Greenland\",\n        \"adm0_a3\": \"GRL\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Greenland\",\n        \"gu_a3\": \"GRL\",\n        \"su_dif\": 0,\n        \"subunit\": \"Greenland\",\n        \"su_a3\": \"GRL\",\n        \"brk_diff\": 0,\n        \"name\": \"Greenland\",\n        \"name_long\": \"Greenland\",\n        \"brk_a3\": \"GRL\",\n        \"brk_name\": \"Greenland\",\n        \"brk_group\": null,\n        \"abbrev\": \"Grlnd.\",\n        \"postal\": \"GL\",\n        \"formal_en\": \"Greenland\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Greenland\",\n        \"note_adm0\": \"Den.\",\n        \"note_brk\": null,\n        \"name_sort\": \"Greenland\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 12,\n        \"pop_est\": 56225,\n        \"pop_rank\": 8,\n        \"pop_year\": 2019,\n        \"gdp_md\": 3051,\n        \"gdp_year\": 2018,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"2. High income: nonOECD\",\n        \"fips_10\": \"GL\",\n        \"iso_a2\": \"GL\",\n        \"iso_a2_eh\": \"GL\",\n        \"iso_a3\": \"GRL\",\n        \"iso_a3_eh\": \"GRL\",\n        \"iso_n3\": \"304\",\n        \"iso_n3_eh\": \"304\",\n        \"un_a3\": \"304\",\n        \"wb_a2\": \"GL\",\n        \"wb_a3\": \"GRL\",\n        \"woe_id\": 23424828,\n        \"woe_id_eh\": 23424828,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"GRL\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"GRL\",\n        \"adm0_a3_us\": \"GRL\",\n        \"adm0_a3_fr\": \"GRL\",\n        \"adm0_a3_ru\": \"GRL\",\n        \"adm0_a3_es\": \"GRL\",\n        \"adm0_a3_cn\": \"GRL\",\n        \"adm0_a3_tw\": \"GRL\",\n        \"adm0_a3_in\": \"GRL\",\n        \"adm0_a3_np\": \"GRL\",\n        \"adm0_a3_pk\": \"GRL\",\n        \"adm0_a3_de\": \"GRL\",\n        \"adm0_a3_gb\": \"GRL\",\n        \"adm0_a3_br\": \"GRL\",\n        \"adm0_a3_il\": \"GRL\",\n        \"adm0_a3_ps\": \"GRL\",\n        \"adm0_a3_sa\": \"GRL\",\n        \"adm0_a3_eg\": \"GRL\",\n        \"adm0_a3_ma\": \"GRL\",\n        \"adm0_a3_pt\": \"GRL\",\n        \"adm0_a3_ar\": \"GRL\",\n        \"adm0_a3_jp\": \"GRL\",\n        \"adm0_a3_ko\": \"GRL\",\n        \"adm0_a3_vn\": \"GRL\",\n        \"adm0_a3_tr\": \"GRL\",\n        \"adm0_a3_id\": \"GRL\",\n        \"adm0_a3_pl\": \"GRL\",\n        \"adm0_a3_gr\": \"GRL\",\n        \"adm0_a3_it\": \"GRL\",\n        \"adm0_a3_nl\": \"GRL\",\n        \"adm0_a3_se\": \"GRL\",\n        \"adm0_a3_bd\": \"GRL\",\n        \"adm0_a3_ua\": \"GRL\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"North America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"Northern America\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 9,\n        \"long_len\": 9,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": -99,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 6.7,\n        \"label_x\": -39.335251,\n        \"label_y\": 74.319387,\n        \"ne_id\": 1159320551,\n        \"wikidataid\": \"Q223\",\n        \"name_ar\": \"جرينلاند\",\n        \"name_bn\": \"গ্রিনল্যান্ড\",\n        \"name_de\": \"Grönland\",\n        \"name_en\": \"Greenland\",\n        \"name_es\": \"Groenlandia\",\n        \"name_fa\": \"گرینلند\",\n        \"name_fr\": \"Groenland\",\n        \"name_el\": \"Γροιλανδία\",\n        \"name_he\": \"גרינלנד\",\n        \"name_hi\": \"ग्रीनलैण्ड\",\n        \"name_hu\": \"Grönland\",\n        \"name_id\": \"Greenland\",\n        \"name_it\": \"Groenlandia\",\n        \"name_ja\": \"グリーンランド\",\n        \"name_ko\": \"그린란드\",\n        \"name_nl\": \"Groenland\",\n        \"name_pl\": \"Grenlandia\",\n        \"name_pt\": \"Groenlândia\",\n        \"name_ru\": \"Гренландия\",\n        \"name_sv\": \"Grönland\",\n        \"name_tr\": \"Grönland\",\n        \"name_uk\": \"Гренландія\",\n        \"name_ur\": \"گرین لینڈ\",\n        \"name_vi\": \"Greenland\",\n        \"name_zh\": \"格陵兰\",\n        \"name_zht\": \"格陵蘭\",\n        \"fclass_iso\": \"Admin-0 dependency\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 dependency\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"GRL.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-46.76379, 82.62796],\n            [-43.40644, 83.22516],\n            [-39.89753, 83.18018],\n            [-38.62214, 83.54905],\n            [-35.08787, 83.64513],\n            [-27.10046, 83.51966],\n            [-20.84539, 82.72669],\n            [-22.69182, 82.34165],\n            [-26.51753, 82.29765],\n            [-31.9, 82.2],\n            [-31.39646, 82.02154],\n            [-27.85666, 82.13178],\n            [-24.84448, 81.78697],\n            [-22.90328, 82.09317],\n            [-22.07175, 81.73449],\n            [-23.16961, 81.15271],\n            [-20.62363, 81.52462],\n            [-15.76818, 81.91245],\n            [-12.77018, 81.71885],\n            [-12.20855, 81.29154],\n            [-16.28533, 80.58004],\n            [-16.85, 80.35],\n            [-20.04624, 80.17708],\n            [-17.73035, 80.12912],\n            [-18.9, 79.4],\n            [-19.70499, 78.75128],\n            [-19.67353, 77.63859],\n            [-18.47285, 76.98565],\n            [-20.03503, 76.94434],\n            [-21.67944, 76.62795],\n            [-19.83407, 76.09808],\n            [-19.59896, 75.24838],\n            [-20.66818, 75.15585],\n            [-19.37281, 74.29561],\n            [-21.59422, 74.22382],\n            [-20.43454, 73.81713],\n            [-20.76234, 73.46436],\n            [-22.17221, 73.30955],\n            [-23.56593, 73.30663],\n            [-22.31311, 72.62928],\n            [-22.29954, 72.18409],\n            [-24.27834, 72.59788],\n            [-24.79296, 72.3302],\n            [-23.44296, 72.08016],\n            [-22.13281, 71.46898],\n            [-21.75356, 70.66369],\n            [-23.53603, 70.471],\n            [-24.30702, 70.85649],\n            [-25.54341, 71.43094],\n            [-25.20135, 70.75226],\n            [-26.36276, 70.22646],\n            [-23.72742, 70.18401],\n            [-22.34902, 70.12946],\n            [-25.02927, 69.2588],\n            [-27.74737, 68.47046],\n            [-30.67371, 68.12503],\n            [-31.77665, 68.12078],\n            [-32.81105, 67.73547],\n            [-34.20196, 66.67974],\n            [-36.35284, 65.9789],\n            [-37.04378, 65.93768],\n            [-38.37505, 65.69213],\n            [-39.81222, 65.45848],\n            [-40.66899, 64.83997],\n            [-40.68281, 64.13902],\n            [-41.1887, 63.48246],\n            [-42.81938, 62.68233],\n            [-42.41666, 61.90093],\n            [-42.86619, 61.07404],\n            [-43.3784, 60.09772],\n            [-44.7875, 60.03676],\n            [-46.26364, 60.85328],\n            [-48.26294, 60.85843],\n            [-49.23308, 61.40681],\n            [-49.90039, 62.38336],\n            [-51.63325, 63.62691],\n            [-52.14014, 64.27842],\n            [-52.27659, 65.1767],\n            [-53.66166, 66.09957],\n            [-53.30161, 66.8365],\n            [-53.96911, 67.18899],\n            [-52.9804, 68.35759],\n            [-51.47536, 68.72958],\n            [-51.08041, 69.14781],\n            [-50.87122, 69.9291],\n            [-52.013585, 69.574925],\n            [-52.55792, 69.42616],\n            [-53.45629, 69.283625],\n            [-54.68336, 69.61003],\n            [-54.75001, 70.28932],\n            [-54.35884, 70.821315],\n            [-53.431315, 70.835755],\n            [-51.39014, 70.56978],\n            [-53.10937, 71.20485],\n            [-54.00422, 71.54719],\n            [-55, 71.40653696727257],\n            [-55.83468, 71.65444],\n            [-54.71819, 72.58625],\n            [-55.32634, 72.95861],\n            [-56.12003, 73.64977],\n            [-57.32363, 74.71026],\n            [-58.59679, 75.09861],\n            [-58.58516, 75.51727],\n            [-61.26861, 76.10238],\n            [-63.39165, 76.1752],\n            [-66.06427, 76.13486],\n            [-68.50438, 76.06141],\n            [-69.66485, 76.37975],\n            [-71.40257, 77.00857],\n            [-68.77671, 77.32312],\n            [-66.76397, 77.37595],\n            [-71.04293, 77.63595],\n            [-73.297, 78.04419],\n            [-73.15938, 78.43271],\n            [-69.37345, 78.91388],\n            [-65.7107, 79.39436],\n            [-65.3239, 79.75814],\n            [-68.02298, 80.11721],\n            [-67.15129, 80.51582],\n            [-63.68925, 81.21396],\n            [-62.23444, 81.3211],\n            [-62.65116, 81.77042],\n            [-60.28249, 82.03363],\n            [-57.20744, 82.19074],\n            [-54.13442, 82.19962],\n            [-53.04328, 81.88833],\n            [-50.39061, 82.43883],\n            [-48.00386, 82.06481],\n            [-46.59984, 81.985945],\n            [-44.523, 81.6607],\n            [-46.9007, 82.19979],\n            [-46.76379, 82.62796]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"The Bahamas\",\n        \"sov_a3\": \"BHS\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"The Bahamas\",\n        \"adm0_a3\": \"BHS\",\n        \"geou_dif\": 0,\n        \"geounit\": \"The Bahamas\",\n        \"gu_a3\": \"BHS\",\n        \"su_dif\": 0,\n        \"subunit\": \"The Bahamas\",\n        \"su_a3\": \"BHS\",\n        \"brk_diff\": 0,\n        \"name\": \"Bahamas\",\n        \"name_long\": \"Bahamas\",\n        \"brk_a3\": \"BHS\",\n        \"brk_name\": \"Bahamas\",\n        \"brk_group\": null,\n        \"abbrev\": \"Bhs.\",\n        \"postal\": \"BS\",\n        \"formal_en\": \"Commonwealth of the Bahamas\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Bahamas, The\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Bahamas, The\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 5,\n        \"pop_est\": 389482,\n        \"pop_rank\": 10,\n        \"pop_year\": 2019,\n        \"gdp_md\": 13578,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"2. High income: nonOECD\",\n        \"fips_10\": \"BF\",\n        \"iso_a2\": \"BS\",\n        \"iso_a2_eh\": \"BS\",\n        \"iso_a3\": \"BHS\",\n        \"iso_a3_eh\": \"BHS\",\n        \"iso_n3\": \"044\",\n        \"iso_n3_eh\": \"044\",\n        \"un_a3\": \"044\",\n        \"wb_a2\": \"BS\",\n        \"wb_a3\": \"BHS\",\n        \"woe_id\": 23424758,\n        \"woe_id_eh\": 23424758,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"BHS\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"BHS\",\n        \"adm0_a3_us\": \"BHS\",\n        \"adm0_a3_fr\": \"BHS\",\n        \"adm0_a3_ru\": \"BHS\",\n        \"adm0_a3_es\": \"BHS\",\n        \"adm0_a3_cn\": \"BHS\",\n        \"adm0_a3_tw\": \"BHS\",\n        \"adm0_a3_in\": \"BHS\",\n        \"adm0_a3_np\": \"BHS\",\n        \"adm0_a3_pk\": \"BHS\",\n        \"adm0_a3_de\": \"BHS\",\n        \"adm0_a3_gb\": \"BHS\",\n        \"adm0_a3_br\": \"BHS\",\n        \"adm0_a3_il\": \"BHS\",\n        \"adm0_a3_ps\": \"BHS\",\n        \"adm0_a3_sa\": \"BHS\",\n        \"adm0_a3_eg\": \"BHS\",\n        \"adm0_a3_ma\": \"BHS\",\n        \"adm0_a3_pt\": \"BHS\",\n        \"adm0_a3_ar\": \"BHS\",\n        \"adm0_a3_jp\": \"BHS\",\n        \"adm0_a3_ko\": \"BHS\",\n        \"adm0_a3_vn\": \"BHS\",\n        \"adm0_a3_tr\": \"BHS\",\n        \"adm0_a3_id\": \"BHS\",\n        \"adm0_a3_pl\": \"BHS\",\n        \"adm0_a3_gr\": \"BHS\",\n        \"adm0_a3_it\": \"BHS\",\n        \"adm0_a3_nl\": \"BHS\",\n        \"adm0_a3_se\": \"BHS\",\n        \"adm0_a3_bd\": \"BHS\",\n        \"adm0_a3_ua\": \"BHS\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"North America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"Caribbean\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": -77.146688,\n        \"label_y\": 26.401789,\n        \"ne_id\": 1159320415,\n        \"wikidataid\": \"Q778\",\n        \"name_ar\": \"باهاماس\",\n        \"name_bn\": \"বাহামা দ্বীপপুঞ্জ\",\n        \"name_de\": \"Bahamas\",\n        \"name_en\": \"The Bahamas\",\n        \"name_es\": \"Bahamas\",\n        \"name_fa\": \"باهاما\",\n        \"name_fr\": \"Bahamas\",\n        \"name_el\": \"Μπαχάμες\",\n        \"name_he\": \"איי בהאמה\",\n        \"name_hi\": \"बहामास\",\n        \"name_hu\": \"Bahama-szigetek\",\n        \"name_id\": \"Bahama\",\n        \"name_it\": \"Bahamas\",\n        \"name_ja\": \"バハマ\",\n        \"name_ko\": \"바하마\",\n        \"name_nl\": \"Bahama's\",\n        \"name_pl\": \"Bahamy\",\n        \"name_pt\": \"Bahamas\",\n        \"name_ru\": \"Багамские Острова\",\n        \"name_sv\": \"Bahamas\",\n        \"name_tr\": \"Bahamalar\",\n        \"name_uk\": \"Багамські Острови\",\n        \"name_ur\": \"بہاماس\",\n        \"name_vi\": \"Bahamas\",\n        \"name_zh\": \"巴哈马\",\n        \"name_zht\": \"巴哈馬\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"BHS.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-78.98, 26.79],\n              [-78.51, 26.87],\n              [-77.85, 26.84],\n              [-77.82, 26.58],\n              [-78.91, 26.42],\n              [-78.98, 26.79]\n            ]\n          ],\n          [\n            [\n              [-77.79, 27.04],\n              [-77, 26.59],\n              [-77.17255, 25.87918],\n              [-77.35641, 26.00735],\n              [-77.34, 26.53],\n              [-77.78802, 26.92516],\n              [-77.79, 27.04]\n            ]\n          ],\n          [\n            [\n              [-78.19087, 25.2103],\n              [-77.89, 25.17],\n              [-77.54, 24.34],\n              [-77.53466, 23.75975],\n              [-77.78, 23.71],\n              [-78.03405, 24.28615],\n              [-78.40848, 24.57564],\n              [-78.19087, 25.2103]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Trinidad and Tobago\",\n        \"sov_a3\": \"TTO\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Trinidad and Tobago\",\n        \"adm0_a3\": \"TTO\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Trinidad and Tobago\",\n        \"gu_a3\": \"TTO\",\n        \"su_dif\": 0,\n        \"subunit\": \"Trinidad and Tobago\",\n        \"su_a3\": \"TTO\",\n        \"brk_diff\": 0,\n        \"name\": \"Trinidad and Tobago\",\n        \"name_long\": \"Trinidad and Tobago\",\n        \"brk_a3\": \"TTO\",\n        \"brk_name\": \"Trinidad and Tobago\",\n        \"brk_group\": null,\n        \"abbrev\": \"Tr.T.\",\n        \"postal\": \"TT\",\n        \"formal_en\": \"Republic of Trinidad and Tobago\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Trinidad and Tobago\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Trinidad and Tobago\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 5,\n        \"pop_est\": 1394973,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 24269,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"2. High income: nonOECD\",\n        \"fips_10\": \"TD\",\n        \"iso_a2\": \"TT\",\n        \"iso_a2_eh\": \"TT\",\n        \"iso_a3\": \"TTO\",\n        \"iso_a3_eh\": \"TTO\",\n        \"iso_n3\": \"780\",\n        \"iso_n3_eh\": \"780\",\n        \"un_a3\": \"780\",\n        \"wb_a2\": \"TT\",\n        \"wb_a3\": \"TTO\",\n        \"woe_id\": 23424958,\n        \"woe_id_eh\": 23424958,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"TTO\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"TTO\",\n        \"adm0_a3_us\": \"TTO\",\n        \"adm0_a3_fr\": \"TTO\",\n        \"adm0_a3_ru\": \"TTO\",\n        \"adm0_a3_es\": \"TTO\",\n        \"adm0_a3_cn\": \"TTO\",\n        \"adm0_a3_tw\": \"TTO\",\n        \"adm0_a3_in\": \"TTO\",\n        \"adm0_a3_np\": \"TTO\",\n        \"adm0_a3_pk\": \"TTO\",\n        \"adm0_a3_de\": \"TTO\",\n        \"adm0_a3_gb\": \"TTO\",\n        \"adm0_a3_br\": \"TTO\",\n        \"adm0_a3_il\": \"TTO\",\n        \"adm0_a3_ps\": \"TTO\",\n        \"adm0_a3_sa\": \"TTO\",\n        \"adm0_a3_eg\": \"TTO\",\n        \"adm0_a3_ma\": \"TTO\",\n        \"adm0_a3_pt\": \"TTO\",\n        \"adm0_a3_ar\": \"TTO\",\n        \"adm0_a3_jp\": \"TTO\",\n        \"adm0_a3_ko\": \"TTO\",\n        \"adm0_a3_vn\": \"TTO\",\n        \"adm0_a3_tr\": \"TTO\",\n        \"adm0_a3_id\": \"TTO\",\n        \"adm0_a3_pl\": \"TTO\",\n        \"adm0_a3_gr\": \"TTO\",\n        \"adm0_a3_it\": \"TTO\",\n        \"adm0_a3_nl\": \"TTO\",\n        \"adm0_a3_se\": \"TTO\",\n        \"adm0_a3_bd\": \"TTO\",\n        \"adm0_a3_ua\": \"TTO\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"North America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"Caribbean\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 19,\n        \"long_len\": 19,\n        \"abbrev_len\": 5,\n        \"tiny\": 2,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4.5,\n        \"max_label\": 9.5,\n        \"label_x\": -60.9184,\n        \"label_y\": 10.9989,\n        \"ne_id\": 1159321321,\n        \"wikidataid\": \"Q754\",\n        \"name_ar\": \"ترينيداد وتوباغو\",\n        \"name_bn\": \"ত্রিনিদাদ ও টোবাগো\",\n        \"name_de\": \"Trinidad und Tobago\",\n        \"name_en\": \"Trinidad and Tobago\",\n        \"name_es\": \"Trinidad y Tobago\",\n        \"name_fa\": \"ترینیداد و توباگو\",\n        \"name_fr\": \"Trinité-et-Tobago\",\n        \"name_el\": \"Τρινιντάντ και Τομπάγκο\",\n        \"name_he\": \"טרינידד וטובגו\",\n        \"name_hi\": \"त्रिनिदाद और टोबैगो\",\n        \"name_hu\": \"Trinidad és Tobago\",\n        \"name_id\": \"Trinidad dan Tobago\",\n        \"name_it\": \"Trinidad e Tobago\",\n        \"name_ja\": \"トリニダード・トバゴ\",\n        \"name_ko\": \"트리니다드 토바고\",\n        \"name_nl\": \"Trinidad en Tobago\",\n        \"name_pl\": \"Trynidad i Tobago\",\n        \"name_pt\": \"Trinidad e Tobago\",\n        \"name_ru\": \"Тринидад и Тобаго\",\n        \"name_sv\": \"Trinidad och Tobago\",\n        \"name_tr\": \"Trinidad ve Tobago\",\n        \"name_uk\": \"Тринідад і Тобаго\",\n        \"name_ur\": \"ٹرینیڈاڈ و ٹوباگو\",\n        \"name_vi\": \"Trinidad và Tobago\",\n        \"name_zh\": \"特立尼达和多巴哥\",\n        \"name_zht\": \"千里達及托巴哥\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"TTO.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-61.68, 10.76],\n            [-61.105, 10.89],\n            [-60.895, 10.855],\n            [-60.935, 10.11],\n            [-61.77, 10],\n            [-61.95, 10.09],\n            [-61.66, 10.365],\n            [-61.68, 10.76]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"United States of America\",\n        \"sov_a3\": \"US1\",\n        \"adm0_dif\": 1,\n        \"level\": 2,\n        \"type\": \"Dependency\",\n        \"tlc\": \"1\",\n        \"admin\": \"Puerto Rico\",\n        \"adm0_a3\": \"PRI\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Puerto Rico\",\n        \"gu_a3\": \"PRI\",\n        \"su_dif\": 0,\n        \"subunit\": \"Puerto Rico\",\n        \"su_a3\": \"PRI\",\n        \"brk_diff\": 0,\n        \"name\": \"Puerto Rico\",\n        \"name_long\": \"Puerto Rico\",\n        \"brk_a3\": \"PRI\",\n        \"brk_name\": \"Puerto Rico\",\n        \"brk_group\": null,\n        \"abbrev\": \"P.R.\",\n        \"postal\": \"PR\",\n        \"formal_en\": \"Commonwealth of Puerto Rico\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Puerto Rico\",\n        \"note_adm0\": \"U.S.A.\",\n        \"note_brk\": null,\n        \"name_sort\": \"Puerto Rico\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 1,\n        \"pop_est\": 3193694,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 104988,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"2. High income: nonOECD\",\n        \"fips_10\": \"RQ\",\n        \"iso_a2\": \"PR\",\n        \"iso_a2_eh\": \"PR\",\n        \"iso_a3\": \"PRI\",\n        \"iso_a3_eh\": \"PRI\",\n        \"iso_n3\": \"630\",\n        \"iso_n3_eh\": \"630\",\n        \"un_a3\": \"630\",\n        \"wb_a2\": \"PR\",\n        \"wb_a3\": \"PRI\",\n        \"woe_id\": 23424935,\n        \"woe_id_eh\": 23424935,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"PRI\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"PRI\",\n        \"adm0_a3_us\": \"PRI\",\n        \"adm0_a3_fr\": \"PRI\",\n        \"adm0_a3_ru\": \"PRI\",\n        \"adm0_a3_es\": \"PRI\",\n        \"adm0_a3_cn\": \"PRI\",\n        \"adm0_a3_tw\": \"PRI\",\n        \"adm0_a3_in\": \"PRI\",\n        \"adm0_a3_np\": \"PRI\",\n        \"adm0_a3_pk\": \"PRI\",\n        \"adm0_a3_de\": \"PRI\",\n        \"adm0_a3_gb\": \"PRI\",\n        \"adm0_a3_br\": \"PRI\",\n        \"adm0_a3_il\": \"PRI\",\n        \"adm0_a3_ps\": \"PRI\",\n        \"adm0_a3_sa\": \"PRI\",\n        \"adm0_a3_eg\": \"PRI\",\n        \"adm0_a3_ma\": \"PRI\",\n        \"adm0_a3_pt\": \"PRI\",\n        \"adm0_a3_ar\": \"PRI\",\n        \"adm0_a3_jp\": \"PRI\",\n        \"adm0_a3_ko\": \"PRI\",\n        \"adm0_a3_vn\": \"PRI\",\n        \"adm0_a3_tr\": \"PRI\",\n        \"adm0_a3_id\": \"PRI\",\n        \"adm0_a3_pl\": \"PRI\",\n        \"adm0_a3_gr\": \"PRI\",\n        \"adm0_a3_it\": \"PRI\",\n        \"adm0_a3_nl\": \"PRI\",\n        \"adm0_a3_se\": \"PRI\",\n        \"adm0_a3_bd\": \"PRI\",\n        \"adm0_a3_ua\": \"PRI\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"North America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"Caribbean\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 11,\n        \"long_len\": 11,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": -99,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": -66.481065,\n        \"label_y\": 18.234668,\n        \"ne_id\": 1159321363,\n        \"wikidataid\": \"Q1183\",\n        \"name_ar\": \"بورتوريكو\",\n        \"name_bn\": \"পুয়ের্তো রিকো\",\n        \"name_de\": \"Puerto Rico\",\n        \"name_en\": \"Puerto Rico\",\n        \"name_es\": \"Puerto Rico\",\n        \"name_fa\": \"پورتوریکو\",\n        \"name_fr\": \"Porto Rico\",\n        \"name_el\": \"Πουέρτο Ρίκο\",\n        \"name_he\": \"פוארטו ריקו\",\n        \"name_hi\": \"पोर्टो रीको\",\n        \"name_hu\": \"Puerto Rico\",\n        \"name_id\": \"Puerto Riko\",\n        \"name_it\": \"Porto Rico\",\n        \"name_ja\": \"プエルトリコ\",\n        \"name_ko\": \"푸에르토리코\",\n        \"name_nl\": \"Puerto Rico\",\n        \"name_pl\": \"Portoryko\",\n        \"name_pt\": \"Porto Rico\",\n        \"name_ru\": \"Пуэрто-Рико\",\n        \"name_sv\": \"Puerto Rico\",\n        \"name_tr\": \"Porto Riko\",\n        \"name_uk\": \"Пуерто-Рико\",\n        \"name_ur\": \"پورٹو ریکو\",\n        \"name_vi\": \"Puerto Rico\",\n        \"name_zh\": \"波多黎各\",\n        \"name_zht\": \"波多黎各\",\n        \"fclass_iso\": \"Admin-0 dependency\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 dependency\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"PRI.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-66.28243445500821, 18.514761664295364],\n            [-65.7713028632093, 18.426679185453878],\n            [-65.59100379094295, 18.228034979723915],\n            [-65.84716386581377, 17.97590566657186],\n            [-66.59993445500949, 17.981822618069273],\n            [-67.18416236028527, 17.946553453030077],\n            [-67.24242753769435, 18.374460150622937],\n            [-67.10067908391774, 18.52060110114435],\n            [-66.28243445500821, 18.514761664295364]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Jamaica\",\n        \"sov_a3\": \"JAM\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Jamaica\",\n        \"adm0_a3\": \"JAM\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Jamaica\",\n        \"gu_a3\": \"JAM\",\n        \"su_dif\": 0,\n        \"subunit\": \"Jamaica\",\n        \"su_a3\": \"JAM\",\n        \"brk_diff\": 0,\n        \"name\": \"Jamaica\",\n        \"name_long\": \"Jamaica\",\n        \"brk_a3\": \"JAM\",\n        \"brk_name\": \"Jamaica\",\n        \"brk_group\": null,\n        \"abbrev\": \"Jam.\",\n        \"postal\": \"J\",\n        \"formal_en\": \"Jamaica\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Jamaica\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Jamaica\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 10,\n        \"pop_est\": 2948279,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 16458,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"JM\",\n        \"iso_a2\": \"JM\",\n        \"iso_a2_eh\": \"JM\",\n        \"iso_a3\": \"JAM\",\n        \"iso_a3_eh\": \"JAM\",\n        \"iso_n3\": \"388\",\n        \"iso_n3_eh\": \"388\",\n        \"un_a3\": \"388\",\n        \"wb_a2\": \"JM\",\n        \"wb_a3\": \"JAM\",\n        \"woe_id\": 23424858,\n        \"woe_id_eh\": 23424858,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"JAM\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"JAM\",\n        \"adm0_a3_us\": \"JAM\",\n        \"adm0_a3_fr\": \"JAM\",\n        \"adm0_a3_ru\": \"JAM\",\n        \"adm0_a3_es\": \"JAM\",\n        \"adm0_a3_cn\": \"JAM\",\n        \"adm0_a3_tw\": \"JAM\",\n        \"adm0_a3_in\": \"JAM\",\n        \"adm0_a3_np\": \"JAM\",\n        \"adm0_a3_pk\": \"JAM\",\n        \"adm0_a3_de\": \"JAM\",\n        \"adm0_a3_gb\": \"JAM\",\n        \"adm0_a3_br\": \"JAM\",\n        \"adm0_a3_il\": \"JAM\",\n        \"adm0_a3_ps\": \"JAM\",\n        \"adm0_a3_sa\": \"JAM\",\n        \"adm0_a3_eg\": \"JAM\",\n        \"adm0_a3_ma\": \"JAM\",\n        \"adm0_a3_pt\": \"JAM\",\n        \"adm0_a3_ar\": \"JAM\",\n        \"adm0_a3_jp\": \"JAM\",\n        \"adm0_a3_ko\": \"JAM\",\n        \"adm0_a3_vn\": \"JAM\",\n        \"adm0_a3_tr\": \"JAM\",\n        \"adm0_a3_id\": \"JAM\",\n        \"adm0_a3_pl\": \"JAM\",\n        \"adm0_a3_gr\": \"JAM\",\n        \"adm0_a3_it\": \"JAM\",\n        \"adm0_a3_nl\": \"JAM\",\n        \"adm0_a3_se\": \"JAM\",\n        \"adm0_a3_bd\": \"JAM\",\n        \"adm0_a3_ua\": \"JAM\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"North America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"Caribbean\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": -77.318767,\n        \"label_y\": 18.137124,\n        \"ne_id\": 1159320931,\n        \"wikidataid\": \"Q766\",\n        \"name_ar\": \"جامايكا\",\n        \"name_bn\": \"জ্যামাইকা\",\n        \"name_de\": \"Jamaika\",\n        \"name_en\": \"Jamaica\",\n        \"name_es\": \"Jamaica\",\n        \"name_fa\": \"جامائیکا\",\n        \"name_fr\": \"Jamaïque\",\n        \"name_el\": \"Τζαμάικα\",\n        \"name_he\": \"ג'מייקה\",\n        \"name_hi\": \"जमैका\",\n        \"name_hu\": \"Jamaica\",\n        \"name_id\": \"Jamaika\",\n        \"name_it\": \"Giamaica\",\n        \"name_ja\": \"ジャマイカ\",\n        \"name_ko\": \"자메이카\",\n        \"name_nl\": \"Jamaica\",\n        \"name_pl\": \"Jamajka\",\n        \"name_pt\": \"Jamaica\",\n        \"name_ru\": \"Ямайка\",\n        \"name_sv\": \"Jamaica\",\n        \"name_tr\": \"Jamaika\",\n        \"name_uk\": \"Ямайка\",\n        \"name_ur\": \"جمیکا\",\n        \"name_vi\": \"Jamaica\",\n        \"name_zh\": \"牙买加\",\n        \"name_zht\": \"牙買加\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"JAM.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-77.56960079619921, 18.490525417550487],\n            [-76.89661861846213, 18.400866807524082],\n            [-76.36535905628554, 18.160700588447597],\n            [-76.19965857614164, 17.886867173732966],\n            [-76.9025614081757, 17.868237819891746],\n            [-77.20634131540348, 17.70111623785982],\n            [-77.76602291534061, 17.86159739834224],\n            [-78.33771928578561, 18.225967922432233],\n            [-78.21772661000388, 18.454532782459196],\n            [-77.79736467152563, 18.524218451404778],\n            [-77.56960079619921, 18.490525417550487]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Indonesia\",\n        \"sov_a3\": \"IDN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Indonesia\",\n        \"adm0_a3\": \"IDN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Indonesia\",\n        \"gu_a3\": \"IDN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Indonesia\",\n        \"su_a3\": \"IDN\",\n        \"brk_diff\": 0,\n        \"name\": \"Indonesia\",\n        \"name_long\": \"Indonesia\",\n        \"brk_a3\": \"IDN\",\n        \"brk_name\": \"Indonesia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Indo.\",\n        \"postal\": \"INDO\",\n        \"formal_en\": \"Republic of Indonesia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Indonesia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Indonesia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 6,\n        \"mapcolor13\": 11,\n        \"pop_est\": 270625568,\n        \"pop_rank\": 17,\n        \"pop_year\": 2019,\n        \"gdp_md\": 1119190,\n        \"gdp_year\": 2019,\n        \"economy\": \"4. Emerging region: MIKT\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"ID\",\n        \"iso_a2\": \"ID\",\n        \"iso_a2_eh\": \"ID\",\n        \"iso_a3\": \"IDN\",\n        \"iso_a3_eh\": \"IDN\",\n        \"iso_n3\": \"360\",\n        \"iso_n3_eh\": \"360\",\n        \"un_a3\": \"360\",\n        \"wb_a2\": \"ID\",\n        \"wb_a3\": \"IDN\",\n        \"woe_id\": 23424846,\n        \"woe_id_eh\": 23424846,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"IDN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"IDN\",\n        \"adm0_a3_us\": \"IDN\",\n        \"adm0_a3_fr\": \"IDN\",\n        \"adm0_a3_ru\": \"IDN\",\n        \"adm0_a3_es\": \"IDN\",\n        \"adm0_a3_cn\": \"IDN\",\n        \"adm0_a3_tw\": \"IDN\",\n        \"adm0_a3_in\": \"IDN\",\n        \"adm0_a3_np\": \"IDN\",\n        \"adm0_a3_pk\": \"IDN\",\n        \"adm0_a3_de\": \"IDN\",\n        \"adm0_a3_gb\": \"IDN\",\n        \"adm0_a3_br\": \"IDN\",\n        \"adm0_a3_il\": \"IDN\",\n        \"adm0_a3_ps\": \"IDN\",\n        \"adm0_a3_sa\": \"IDN\",\n        \"adm0_a3_eg\": \"IDN\",\n        \"adm0_a3_ma\": \"IDN\",\n        \"adm0_a3_pt\": \"IDN\",\n        \"adm0_a3_ar\": \"IDN\",\n        \"adm0_a3_jp\": \"IDN\",\n        \"adm0_a3_ko\": \"IDN\",\n        \"adm0_a3_vn\": \"IDN\",\n        \"adm0_a3_tr\": \"IDN\",\n        \"adm0_a3_id\": \"IDN\",\n        \"adm0_a3_pl\": \"IDN\",\n        \"adm0_a3_gr\": \"IDN\",\n        \"adm0_a3_it\": \"IDN\",\n        \"adm0_a3_nl\": \"IDN\",\n        \"adm0_a3_se\": \"IDN\",\n        \"adm0_a3_bd\": \"IDN\",\n        \"adm0_a3_ua\": \"IDN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"South-Eastern Asia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 9,\n        \"long_len\": 9,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 6.7,\n        \"label_x\": 101.892949,\n        \"label_y\": -0.954404,\n        \"ne_id\": 1159320845,\n        \"wikidataid\": \"Q252\",\n        \"name_ar\": \"إندونيسيا\",\n        \"name_bn\": \"ইন্দোনেশিয়া\",\n        \"name_de\": \"Indonesien\",\n        \"name_en\": \"Indonesia\",\n        \"name_es\": \"Indonesia\",\n        \"name_fa\": \"اندونزی\",\n        \"name_fr\": \"Indonésie\",\n        \"name_el\": \"Ινδονησία\",\n        \"name_he\": \"אינדונזיה\",\n        \"name_hi\": \"इंडोनेशिया\",\n        \"name_hu\": \"Indonézia\",\n        \"name_id\": \"Indonesia\",\n        \"name_it\": \"Indonesia\",\n        \"name_ja\": \"インドネシア\",\n        \"name_ko\": \"인도네시아\",\n        \"name_nl\": \"Indonesië\",\n        \"name_pl\": \"Indonezja\",\n        \"name_pt\": \"Indonésia\",\n        \"name_ru\": \"Индонезия\",\n        \"name_sv\": \"Indonesien\",\n        \"name_tr\": \"Endonezya\",\n        \"name_uk\": \"Індонезія\",\n        \"name_ur\": \"انڈونیشیا\",\n        \"name_vi\": \"Indonesia\",\n        \"name_zh\": \"印度尼西亚\",\n        \"name_zht\": \"印度尼西亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"IDN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [141.00021040259185, -2.60015105551566],\n              [141.01705691951895, -5.859021905138071],\n              [141.03385176001382, -9.117892754760483],\n              [140.14341515519254, -8.29716765710095],\n              [139.1277665549281, -8.096042982620979],\n              [138.881476678625, -8.380935153846075],\n              [137.61447391169287, -8.41168263105974],\n              [138.03909915583517, -7.597882175327321],\n              [138.66862145401478, -7.320224704623087],\n              [138.4079138531023, -6.232849216337485],\n              [137.92783979711078, -5.393365573756],\n              [135.98925011611345, -4.54654387778907],\n              [135.16459760959975, -4.462931410340822],\n              [133.66288048719787, -3.538853448097541],\n              [133.36770470594672, -4.024818617370315],\n              [132.98395551974727, -4.112978610860253],\n              [132.75694095268904, -3.746282647317123],\n              [132.75378869031925, -3.31178720460705],\n              [131.98980431531618, -2.820551039240499],\n              [133.0668445171434, -2.460417982598436],\n              [133.78003095920354, -2.479848321140182],\n              [133.69621178602614, -2.214541517753702],\n              [132.23237348849426, -2.212526136894319],\n              [131.83622195854474, -1.617161960459647],\n              [130.94283979708285, -1.432522067880783],\n              [130.5195581401801, -0.937720228686089],\n              [131.8675378765136, -0.695461114101789],\n              [132.3801164084167, -0.369537855636949],\n              [133.98554813042836, -0.780210463060456],\n              [134.14336795464772, -1.151867364103623],\n              [134.42262739475302, -2.769184665542376],\n              [135.45760298069467, -3.367752780779149],\n              [136.29331424371884, -2.307042331556154],\n              [137.44073774632756, -1.703513278819365],\n              [138.3297274110447, -1.702686455902693],\n              [139.18492068904288, -2.051295668143673],\n              [139.92668419816044, -2.409051608900313],\n              [141.00021040259185, -2.60015105551566]\n            ]\n          ],\n          [\n            [\n              [124.96868248911623, -8.892790215697083],\n              [125.07001997284061, -9.089987481322872],\n              [125.08852013560109, -9.393173109579294],\n              [124.43595014861933, -10.140000909061449],\n              [123.57998172413669, -10.359987481327956],\n              [123.459989048355, -10.239994805546223],\n              [123.55000939340744, -9.900015557497987],\n              [123.9800089865081, -9.290026950724716],\n              [124.96868248911623, -8.892790215697083]\n            ]\n          ],\n          [\n            [\n              [134.21013390516885, -6.89523772545472],\n              [134.11277550673094, -6.142467136259],\n              [134.29033572808584, -5.783057549669017],\n              [134.49962527886788, -5.445042006047871],\n              [134.72700158095216, -5.737582289252167],\n              [134.7246244650667, -6.214400730009288],\n              [134.21013390516885, -6.89523772545472]\n            ]\n          ],\n          [\n            [\n              [117.88203494677018, 4.137551377779516],\n              [117.3132324565335, 3.234428208830593],\n              [118.0483297058854, 2.287690131027333],\n              [117.87562706916597, 1.827640692548925],\n              [118.99674726773816, 0.902219143066063],\n              [117.8118583517178, 0.784241848143708],\n              [117.47833865770603, 0.102474676917026],\n              [117.52164350796664, -0.803723239753268],\n              [116.56004845587947, -1.48766082113621],\n              [116.5337968282752, -2.483517347832901],\n              [116.14808393764866, -4.012726332214022],\n              [116.00085778204911, -3.657037448749058],\n              [114.86480309454456, -4.106984144714396],\n              [114.46865156459506, -3.495703627133828],\n              [113.75567182826407, -3.43916961020652],\n              [113.25699425664752, -3.118775729996905],\n              [112.06812625534067, -3.478392022316051],\n              [111.70329064336005, -2.994442233902654],\n              [111.04824018762824, -3.049425957861211],\n              [110.223846063276, -2.934032484553455],\n              [110.07093550012434, -1.592874037282463],\n              [109.571947869914, -1.314906507984475],\n              [109.0918738139225, -0.459506524257094],\n              [108.9526575053282, 0.415375474444318],\n              [109.06913618371408, 1.341933905437614],\n              [109.66326012577375, 2.006466986494956],\n              [109.83022667850881, 1.338135687664163],\n              [110.51406090702716, 0.773131415200965],\n              [111.15913781132662, 0.976478176269481],\n              [111.79754845586041, 0.904441229654608],\n              [112.38025190638359, 1.410120957846743],\n              [112.85980919805218, 1.497790025229904],\n              [113.8058496440195, 1.217548732911069],\n              [114.62135542201753, 1.430688177898901],\n              [115.13403730678522, 2.821481838386234],\n              [115.51907840379198, 3.169238389494396],\n              [115.8655172058767, 4.3065591495901],\n              [117.01521447150628, 4.306094061699469],\n              [117.88203494677018, 4.137551377779516]\n            ]\n          ],\n          [\n            [\n              [129.37099775606094, -2.802154229344595],\n              [130.47134402885177, -3.093764336767634],\n              [130.83483605359282, -3.858472181822776],\n              [129.99054650280817, -3.446300957862796],\n              [129.15524865124235, -3.362636813982248],\n              [128.59068362845363, -3.428679294451264],\n              [127.89889122936235, -3.393435967628207],\n              [128.13587934785284, -2.843650404474971],\n              [129.37099775606094, -2.802154229344595]\n            ]\n          ],\n          [\n            [\n              [126.87492272349886, -3.790982761249587],\n              [126.18380211802736, -3.607376397316564],\n              [125.98903364471926, -3.177273451351305],\n              [127.00065148326497, -3.129317722184446],\n              [127.24921512258891, -3.45906503663889],\n              [126.87492272349886, -3.790982761249587]\n            ]\n          ],\n          [\n            [\n              [127.93237755748748, 2.174596258956569],\n              [128.00415612194087, 1.628531398928345],\n              [128.5945593608755, 1.540810655112878],\n              [128.6882487326207, 1.132385972494063],\n              [128.63595218314134, 0.258485826006194],\n              [128.1201697124361, 0.356412665199286],\n              [127.96803429576886, -0.252077325037519],\n              [128.3799988139997, -0.7800037573313],\n              [128.1000159038423, -0.899996433113031],\n              [127.69647464407507, -0.266598402511534],\n              [127.39949018769369, 1.011721503092545],\n              [127.60051150930906, 1.810690822757195],\n              [127.93237755748748, 2.174596258956569]\n            ]\n          ],\n          [\n            [\n              [122.9275667664518, 0.875192368977409],\n              [124.07752241424288, 0.917101955566125],\n              [125.0659892111218, 1.64325918213153],\n              [125.2405005229715, 1.419836127117605],\n              [124.4370353536974, 0.427881171058957],\n              [123.6855049988767, 0.235593166500891],\n              [122.72308312387287, 0.431136786293337],\n              [121.05672488818911, 0.381217352699394],\n              [120.18308312386272, 0.237246812334234],\n              [120.04086958219548, -0.519657891444837],\n              [120.93590538949073, -1.408905938323393],\n              [121.4758207540762, -0.95596200928513],\n              [123.34056481332846, -0.615672702643138],\n              [123.25839928598441, -1.076213067228309],\n              [122.82271528533161, -0.930950616055853],\n              [122.38852990121529, -1.516858005381117],\n              [121.50827355355551, -1.904482924002458],\n              [122.4545723816843, -3.186058444840924],\n              [122.2718961935325, -3.529500013852712],\n              [123.17096276254655, -4.683693129091701],\n              [123.1623327983538, -5.340603936385996],\n              [122.62851525277875, -5.634591159694466],\n              [122.23639448454801, -5.282933037948268],\n              [122.71956912647701, -4.464171644715826],\n              [121.73823367725436, -4.851331475446543],\n              [121.48946333220127, -4.574552504091265],\n              [121.61917117725386, -4.188477878438682],\n              [120.89818159391766, -3.602105401222794],\n              [120.97238895068878, -2.627642917494939],\n              [120.30545291552986, -2.931603692235733],\n              [120.39004723519167, -4.097579034037274],\n              [120.43071658740537, -5.528241062037793],\n              [119.79654341031949, -5.673400160345665],\n              [119.36690555224489, -5.37987802492782],\n              [119.65360639860017, -4.459417412944973],\n              [119.49883548388601, -3.494411716326532],\n              [119.07834435432704, -3.487021986508793],\n              [118.76776899625287, -2.801999200047718],\n              [119.18097374885869, -2.147103773612805],\n              [119.3233939962551, -1.353147067880464],\n              [119.82599897672587, 0.154254462073482],\n              [120.0357019389663, 0.566477362465761],\n              [120.88577925016762, 1.30922272379685],\n              [121.66681684782696, 1.013943589681091],\n              [122.9275667664518, 0.875192368977409]\n            ]\n          ],\n          [\n            [\n              [120.29501427620689, -10.258649997603591],\n              [118.96780846565471, -9.557969252158074],\n              [119.90030968636157, -9.361340427287502],\n              [120.42575564990534, -9.665921319215798],\n              [120.77550174365675, -9.96967538822743],\n              [120.71560875863045, -10.239581394087885],\n              [120.29501427620689, -10.258649997603591]\n            ]\n          ],\n          [\n            [\n              [121.34166873584651, -8.536739597206072],\n              [122.00736453663043, -8.460620212440148],\n              [122.90353722543607, -8.094234307490765],\n              [122.75698286345632, -8.649807631060696],\n              [121.2544905945701, -8.933666273639957],\n              [119.92439090380958, -8.81041798262384],\n              [119.92092858284605, -8.444858900591122],\n              [120.71509199430757, -8.236964613480914],\n              [121.34166873584651, -8.536739597206072]\n            ]\n          ],\n          [\n            [\n              [118.26061648974044, -8.362383314653293],\n              [118.87845991422208, -8.280682875199844],\n              [119.12650678922307, -8.705824883665088],\n              [117.97040164598928, -8.906639499551304],\n              [117.27773074754901, -9.040894870645594],\n              [116.74014082241665, -9.032936700072646],\n              [117.0837374207253, -8.45715789147659],\n              [117.6320243673421, -8.449303073768228],\n              [117.90001834520776, -8.09568124759494],\n              [118.26061648974044, -8.362383314653293]\n            ]\n          ],\n          [\n            [\n              [108.48684614464926, -6.42198495852574],\n              [108.62347863162896, -6.777673841990705],\n              [110.53922732955328, -6.877357679881726],\n              [110.75957563684585, -6.465186455921747],\n              [112.6148112325564, -6.946035658397626],\n              [112.97876834518806, -7.594213148634594],\n              [114.47893517462114, -7.776527601760328],\n              [115.70552697150106, -8.370806573116873],\n              [114.56451134649649, -8.751816908404855],\n              [113.46473351446085, -8.348947442257405],\n              [112.55967247930097, -8.376180922075221],\n              [111.52206139531245, -8.302128594600973],\n              [110.58614953007432, -8.122604668819001],\n              [109.42766727095511, -7.740664157749762],\n              [108.69365522668133, -7.641600437046243],\n              [108.27776329959633, -7.766657403192576],\n              [106.45410200401612, -7.354899590690934],\n              [106.28062422081231, -6.924899997590252],\n              [105.36548628135552, -6.851416110871206],\n              [106.05164594932702, -5.895918877794472],\n              [107.2650085795402, -5.954985039904081],\n              [108.07209109907467, -6.345762220895224],\n              [108.48684614464926, -6.42198495852574]\n            ]\n          ],\n          [\n            [\n              [104.36999148968489, -1.084843031421059],\n              [104.53949018760221, -1.782371514496766],\n              [104.88789269411402, -2.340425306816705],\n              [105.62211144411697, -2.428843682468099],\n              [106.10859337771265, -3.061776625178965],\n              [105.85744591677414, -4.305524997579774],\n              [105.8176550639094, -5.85235564537242],\n              [104.71038414919144, -5.873284600450632],\n              [103.86821333213078, -5.037314955264996],\n              [102.5842606954069, -4.220258884298183],\n              [102.156173130301, -3.614146009946801],\n              [101.39911339722507, -2.799777113459164],\n              [100.90250288290015, -2.050262139497832],\n              [100.14198082886065, -0.650347588710986],\n              [99.26373986206028, 0.183141587724634],\n              [98.97001102091326, 1.042882391764536],\n              [98.60135135294306, 1.823506577965574],\n              [97.69959760944985, 2.45318390544206],\n              [97.17694217324984, 3.308790594898596],\n              [96.42401655475726, 3.868859768077925],\n              [95.3808760925135, 4.970782172053688],\n              [95.29302615761729, 5.479820868344788],\n              [95.93686282754174, 5.439513251157123],\n              [97.4848820332771, 5.246320909033955],\n              [98.36916914265566, 4.268370266126396],\n              [99.1425586283358, 3.590349636240873],\n              [99.69399783732241, 3.174328518075143],\n              [100.64143354696162, 2.099381211755741],\n              [101.65801232300734, 2.083697414555161],\n              [102.49827111207323, 1.398700466310231],\n              [103.07684044801303, 0.561361395668868],\n              [103.83839603069836, 0.104541734208695],\n              [103.4376452982749, -0.711945896002902],\n              [104.01078860882404, -1.059211521004286],\n              [104.36999148968489, -1.084843031421059]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Malaysia\",\n        \"sov_a3\": \"MYS\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Malaysia\",\n        \"adm0_a3\": \"MYS\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Malaysia\",\n        \"gu_a3\": \"MYS\",\n        \"su_dif\": 0,\n        \"subunit\": \"Malaysia\",\n        \"su_a3\": \"MYS\",\n        \"brk_diff\": 0,\n        \"name\": \"Malaysia\",\n        \"name_long\": \"Malaysia\",\n        \"brk_a3\": \"MYS\",\n        \"brk_name\": \"Malaysia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Malay.\",\n        \"postal\": \"MY\",\n        \"formal_en\": \"Malaysia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Malaysia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Malaysia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 6,\n        \"pop_est\": 31949777,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 364681,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"MY\",\n        \"iso_a2\": \"MY\",\n        \"iso_a2_eh\": \"MY\",\n        \"iso_a3\": \"MYS\",\n        \"iso_a3_eh\": \"MYS\",\n        \"iso_n3\": \"458\",\n        \"iso_n3_eh\": \"458\",\n        \"un_a3\": \"458\",\n        \"wb_a2\": \"MY\",\n        \"wb_a3\": \"MYS\",\n        \"woe_id\": 23424901,\n        \"woe_id_eh\": 23424901,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"MYS\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"MYS\",\n        \"adm0_a3_us\": \"MYS\",\n        \"adm0_a3_fr\": \"MYS\",\n        \"adm0_a3_ru\": \"MYS\",\n        \"adm0_a3_es\": \"MYS\",\n        \"adm0_a3_cn\": \"MYS\",\n        \"adm0_a3_tw\": \"MYS\",\n        \"adm0_a3_in\": \"MYS\",\n        \"adm0_a3_np\": \"MYS\",\n        \"adm0_a3_pk\": \"MYS\",\n        \"adm0_a3_de\": \"MYS\",\n        \"adm0_a3_gb\": \"MYS\",\n        \"adm0_a3_br\": \"MYS\",\n        \"adm0_a3_il\": \"MYS\",\n        \"adm0_a3_ps\": \"MYS\",\n        \"adm0_a3_sa\": \"MYS\",\n        \"adm0_a3_eg\": \"MYS\",\n        \"adm0_a3_ma\": \"MYS\",\n        \"adm0_a3_pt\": \"MYS\",\n        \"adm0_a3_ar\": \"MYS\",\n        \"adm0_a3_jp\": \"MYS\",\n        \"adm0_a3_ko\": \"MYS\",\n        \"adm0_a3_vn\": \"MYS\",\n        \"adm0_a3_tr\": \"MYS\",\n        \"adm0_a3_id\": \"MYS\",\n        \"adm0_a3_pl\": \"MYS\",\n        \"adm0_a3_gr\": \"MYS\",\n        \"adm0_a3_it\": \"MYS\",\n        \"adm0_a3_nl\": \"MYS\",\n        \"adm0_a3_se\": \"MYS\",\n        \"adm0_a3_bd\": \"MYS\",\n        \"adm0_a3_ua\": \"MYS\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"South-Eastern Asia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 113.83708,\n        \"label_y\": 2.528667,\n        \"ne_id\": 1159321083,\n        \"wikidataid\": \"Q833\",\n        \"name_ar\": \"ماليزيا\",\n        \"name_bn\": \"মালয়েশিয়া\",\n        \"name_de\": \"Malaysia\",\n        \"name_en\": \"Malaysia\",\n        \"name_es\": \"Malasia\",\n        \"name_fa\": \"مالزی\",\n        \"name_fr\": \"Malaisie\",\n        \"name_el\": \"Μαλαισία\",\n        \"name_he\": \"מלזיה\",\n        \"name_hi\": \"मलेशिया\",\n        \"name_hu\": \"Malajzia\",\n        \"name_id\": \"Malaysia\",\n        \"name_it\": \"Malaysia\",\n        \"name_ja\": \"マレーシア\",\n        \"name_ko\": \"말레이시아\",\n        \"name_nl\": \"Maleisië\",\n        \"name_pl\": \"Malezja\",\n        \"name_pt\": \"Malásia\",\n        \"name_ru\": \"Малайзия\",\n        \"name_sv\": \"Malaysia\",\n        \"name_tr\": \"Malezya\",\n        \"name_uk\": \"Малайзія\",\n        \"name_ur\": \"ملائیشیا\",\n        \"name_vi\": \"Malaysia\",\n        \"name_zh\": \"马来西亚\",\n        \"name_zht\": \"馬來西亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"MYS.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [100.0857568705271, 6.464489447450291],\n              [100.25959638875696, 6.642824815289543],\n              [101.07551557821336, 6.204867051615921],\n              [101.15421878459387, 5.691384182147715],\n              [101.81428185425798, 5.810808417174242],\n              [102.14118696493638, 6.221636053894628],\n              [102.37114708863521, 6.128205064310919],\n              [102.96170535686673, 5.524495144061106],\n              [103.38121463421217, 4.855001125503748],\n              [103.43857547405612, 4.181605536308339],\n              [103.33212202353486, 3.726697902842986],\n              [103.42942874554049, 3.382868760589005],\n              [103.50244754436889, 2.791018581550176],\n              [103.8546741068703, 2.515454006353764],\n              [104.24793175661145, 1.631141058759084],\n              [104.22881147666348, 1.293048000489492],\n              [103.51970747275439, 1.226333726400682],\n              [102.57361535035477, 1.967115383304687],\n              [101.39063846232919, 2.760813706875581],\n              [101.27353966675582, 3.270291652841152],\n              [100.69543541870664, 3.93913971599487],\n              [100.55740766805502, 4.767280381688295],\n              [100.19670617065775, 5.312492580583708],\n              [100.30626020711652, 6.040561835143905],\n              [100.0857568705271, 6.464489447450291]\n            ]\n          ],\n          [\n            [\n              [117.88203494677018, 4.137551377779516],\n              [117.01521447150628, 4.306094061699469],\n              [115.8655172058767, 4.3065591495901],\n              [115.51907840379198, 3.169238389494396],\n              [115.13403730678522, 2.821481838386234],\n              [114.62135542201753, 1.430688177898901],\n              [113.8058496440195, 1.217548732911069],\n              [112.85980919805218, 1.497790025229904],\n              [112.38025190638359, 1.410120957846743],\n              [111.79754845586041, 0.904441229654608],\n              [111.15913781132662, 0.976478176269481],\n              [110.51406090702716, 0.773131415200965],\n              [109.83022667850881, 1.338135687664163],\n              [109.66326012577375, 2.006466986494956],\n              [110.3961352885371, 1.663774725751395],\n              [111.16885298059748, 1.850636704918813],\n              [111.37008100794205, 2.697303371588859],\n              [111.7969283386729, 2.885896511238059],\n              [112.99561486211522, 3.102394924324855],\n              [113.71293541875868, 3.893509426281156],\n              [114.20401655482837, 4.525873928236805],\n              [114.65959598191353, 4.007636826997754],\n              [114.8695573263154, 4.348313706881925],\n              [115.34746097215066, 4.316636053887009],\n              [115.40570031134361, 4.955227565933839],\n              [115.45071048386981, 5.447729803891534],\n              [116.22074100145102, 6.143191229675566],\n              [116.72510298061971, 6.924771429873999],\n              [117.12962609260047, 6.92805288332454],\n              [117.64339318244627, 6.422166449403249],\n              [117.68907514859231, 5.987490139180154],\n              [118.34769127815224, 5.708695786965492],\n              [119.18190392463997, 5.407835598162207],\n              [119.11069380094176, 5.016128241389808],\n              [118.43972700406408, 4.966518866389606],\n              [118.6183207540648, 4.478202419447555],\n              [117.88203494677018, 4.137551377779516]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Cyprus\",\n        \"sov_a3\": \"CYP\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Cyprus\",\n        \"adm0_a3\": \"CYP\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Cyprus\",\n        \"gu_a3\": \"CYP\",\n        \"su_dif\": 0,\n        \"subunit\": \"Cyprus\",\n        \"su_a3\": \"CYP\",\n        \"brk_diff\": 0,\n        \"name\": \"Cyprus\",\n        \"name_long\": \"Cyprus\",\n        \"brk_a3\": \"CYP\",\n        \"brk_name\": \"Cyprus\",\n        \"brk_group\": null,\n        \"abbrev\": \"Cyp.\",\n        \"postal\": \"CY\",\n        \"formal_en\": \"Republic of Cyprus\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Cyprus\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Cyprus\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 7,\n        \"pop_est\": 1198575,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 24948,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"2. High income: nonOECD\",\n        \"fips_10\": \"CY\",\n        \"iso_a2\": \"CY\",\n        \"iso_a2_eh\": \"CY\",\n        \"iso_a3\": \"CYP\",\n        \"iso_a3_eh\": \"CYP\",\n        \"iso_n3\": \"196\",\n        \"iso_n3_eh\": \"196\",\n        \"un_a3\": \"196\",\n        \"wb_a2\": \"CY\",\n        \"wb_a3\": \"CYP\",\n        \"woe_id\": -90,\n        \"woe_id_eh\": 23424994,\n        \"woe_note\": \"WOE lists as subunit of united Cyprus\",\n        \"adm0_iso\": \"CYP\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"CYP\",\n        \"adm0_a3_us\": \"CYP\",\n        \"adm0_a3_fr\": \"CYP\",\n        \"adm0_a3_ru\": \"CYP\",\n        \"adm0_a3_es\": \"CYP\",\n        \"adm0_a3_cn\": \"CYP\",\n        \"adm0_a3_tw\": \"CYP\",\n        \"adm0_a3_in\": \"CYP\",\n        \"adm0_a3_np\": \"CYP\",\n        \"adm0_a3_pk\": \"CYP\",\n        \"adm0_a3_de\": \"CYP\",\n        \"adm0_a3_gb\": \"CYP\",\n        \"adm0_a3_br\": \"CYP\",\n        \"adm0_a3_il\": \"CYP\",\n        \"adm0_a3_ps\": \"CYP\",\n        \"adm0_a3_sa\": \"CYP\",\n        \"adm0_a3_eg\": \"CYP\",\n        \"adm0_a3_ma\": \"CYP\",\n        \"adm0_a3_pt\": \"CYP\",\n        \"adm0_a3_ar\": \"CYP\",\n        \"adm0_a3_jp\": \"CYP\",\n        \"adm0_a3_ko\": \"CYP\",\n        \"adm0_a3_vn\": \"CYP\",\n        \"adm0_a3_tr\": \"CYP\",\n        \"adm0_a3_id\": \"CYP\",\n        \"adm0_a3_pl\": \"CYP\",\n        \"adm0_a3_gr\": \"CYP\",\n        \"adm0_a3_it\": \"CYP\",\n        \"adm0_a3_nl\": \"CYP\",\n        \"adm0_a3_se\": \"CYP\",\n        \"adm0_a3_bd\": \"CYP\",\n        \"adm0_a3_ua\": \"CYP\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Western Asia\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4.5,\n        \"max_label\": 9.5,\n        \"label_x\": 33.084182,\n        \"label_y\": 34.913329,\n        \"ne_id\": 1159320533,\n        \"wikidataid\": \"Q229\",\n        \"name_ar\": \"قبرص\",\n        \"name_bn\": \"সাইপ্রাস\",\n        \"name_de\": \"Republik Zypern\",\n        \"name_en\": \"Cyprus\",\n        \"name_es\": \"Chipre\",\n        \"name_fa\": \"قبرس\",\n        \"name_fr\": \"Chypre\",\n        \"name_el\": \"Κύπρος\",\n        \"name_he\": \"קפריסין\",\n        \"name_hi\": \"साइप्रस\",\n        \"name_hu\": \"Ciprus\",\n        \"name_id\": \"Siprus\",\n        \"name_it\": \"Cipro\",\n        \"name_ja\": \"キプロス\",\n        \"name_ko\": \"키프로스\",\n        \"name_nl\": \"Cyprus\",\n        \"name_pl\": \"Cypr\",\n        \"name_pt\": \"Chipre\",\n        \"name_ru\": \"Кипр\",\n        \"name_sv\": \"Cypern\",\n        \"name_tr\": \"Kıbrıs Cumhuriyeti\",\n        \"name_uk\": \"Кіпр\",\n        \"name_ur\": \"قبرص\",\n        \"name_vi\": \"Cộng hòa Síp\",\n        \"name_zh\": \"塞浦路斯\",\n        \"name_zht\": \"賽普勒斯\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"CYP.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [32.73178022637745, 35.14002594658844],\n            [32.919572381326134, 35.08783274997364],\n            [33.19097700372305, 35.17312470147138],\n            [33.3838334490363, 35.16271190036457],\n            [33.45592207208347, 35.10142365166641],\n            [33.47581749851585, 35.000344550103506],\n            [33.5256852556775, 35.03868846286407],\n            [33.675391880027064, 35.01786286065045],\n            [33.86643965021011, 35.09359467217419],\n            [33.97361657078346, 35.058506374648005],\n            [34.00488081232004, 34.97809784600186],\n            [32.97982710137845, 34.57186941175544],\n            [32.49029625827754, 34.701654771456475],\n            [32.25666710788596, 35.10323232679663],\n            [32.73178022637745, 35.14002594658844]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"India\",\n        \"sov_a3\": \"IND\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"India\",\n        \"adm0_a3\": \"IND\",\n        \"geou_dif\": 0,\n        \"geounit\": \"India\",\n        \"gu_a3\": \"IND\",\n        \"su_dif\": 0,\n        \"subunit\": \"India\",\n        \"su_a3\": \"IND\",\n        \"brk_diff\": 0,\n        \"name\": \"India\",\n        \"name_long\": \"India\",\n        \"brk_a3\": \"IND\",\n        \"brk_name\": \"India\",\n        \"brk_group\": null,\n        \"abbrev\": \"India\",\n        \"postal\": \"IND\",\n        \"formal_en\": \"Republic of India\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"India\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"India\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 2,\n        \"pop_est\": 1366417754,\n        \"pop_rank\": 18,\n        \"pop_year\": 2019,\n        \"gdp_md\": 2868929,\n        \"gdp_year\": 2019,\n        \"economy\": \"3. Emerging region: BRIC\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"IN\",\n        \"iso_a2\": \"IN\",\n        \"iso_a2_eh\": \"IN\",\n        \"iso_a3\": \"IND\",\n        \"iso_a3_eh\": \"IND\",\n        \"iso_n3\": \"356\",\n        \"iso_n3_eh\": \"356\",\n        \"un_a3\": \"356\",\n        \"wb_a2\": \"IN\",\n        \"wb_a3\": \"IND\",\n        \"woe_id\": 23424848,\n        \"woe_id_eh\": 23424848,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"IND\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"IND\",\n        \"adm0_a3_us\": \"IND\",\n        \"adm0_a3_fr\": \"IND\",\n        \"adm0_a3_ru\": \"IND\",\n        \"adm0_a3_es\": \"IND\",\n        \"adm0_a3_cn\": \"IND\",\n        \"adm0_a3_tw\": \"IND\",\n        \"adm0_a3_in\": \"IND\",\n        \"adm0_a3_np\": \"IND\",\n        \"adm0_a3_pk\": \"IND\",\n        \"adm0_a3_de\": \"IND\",\n        \"adm0_a3_gb\": \"IND\",\n        \"adm0_a3_br\": \"IND\",\n        \"adm0_a3_il\": \"IND\",\n        \"adm0_a3_ps\": \"IND\",\n        \"adm0_a3_sa\": \"IND\",\n        \"adm0_a3_eg\": \"IND\",\n        \"adm0_a3_ma\": \"IND\",\n        \"adm0_a3_pt\": \"IND\",\n        \"adm0_a3_ar\": \"IND\",\n        \"adm0_a3_jp\": \"IND\",\n        \"adm0_a3_ko\": \"IND\",\n        \"adm0_a3_vn\": \"IND\",\n        \"adm0_a3_tr\": \"IND\",\n        \"adm0_a3_id\": \"IND\",\n        \"adm0_a3_pl\": \"IND\",\n        \"adm0_a3_gr\": \"IND\",\n        \"adm0_a3_it\": \"IND\",\n        \"adm0_a3_nl\": \"IND\",\n        \"adm0_a3_se\": \"IND\",\n        \"adm0_a3_bd\": \"IND\",\n        \"adm0_a3_ua\": \"IND\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Southern Asia\",\n        \"region_wb\": \"South Asia\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 6.7,\n        \"label_x\": 79.358105,\n        \"label_y\": 22.686852,\n        \"ne_id\": 1159320847,\n        \"wikidataid\": \"Q668\",\n        \"name_ar\": \"الهند\",\n        \"name_bn\": \"ভারত\",\n        \"name_de\": \"Indien\",\n        \"name_en\": \"India\",\n        \"name_es\": \"India\",\n        \"name_fa\": \"هند\",\n        \"name_fr\": \"Inde\",\n        \"name_el\": \"Ινδία\",\n        \"name_he\": \"הודו\",\n        \"name_hi\": \"भारत\",\n        \"name_hu\": \"India\",\n        \"name_id\": \"India\",\n        \"name_it\": \"India\",\n        \"name_ja\": \"インド\",\n        \"name_ko\": \"인도\",\n        \"name_nl\": \"India\",\n        \"name_pl\": \"Indie\",\n        \"name_pt\": \"Índia\",\n        \"name_ru\": \"Индия\",\n        \"name_sv\": \"Indien\",\n        \"name_tr\": \"Hindistan\",\n        \"name_uk\": \"Індія\",\n        \"name_ur\": \"بھارت\",\n        \"name_vi\": \"Ấn Độ\",\n        \"name_zh\": \"印度\",\n        \"name_zht\": \"印度\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"IND.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [97.32711388549004, 28.26158274994634],\n            [97.40256147663614, 27.882536119085444],\n            [97.0519885599681, 27.69905894623315],\n            [97.1339990580153, 27.083773505149964],\n            [96.41936567585097, 27.264589341739224],\n            [95.12476769407496, 26.5735720891323],\n            [95.1551534362626, 26.001307277932085],\n            [94.60324913938538, 25.162495428970402],\n            [94.55265791217164, 24.675238348890336],\n            [94.10674197792507, 23.85074087167348],\n            [93.3251876159428, 24.078556423432204],\n            [93.28632693885928, 23.043658352139005],\n            [93.06029422401463, 22.70311066333557],\n            [93.16612755734837, 22.278459580977103],\n            [92.67272098182556, 22.041238918541254],\n            [92.14603478390681, 23.627498684172593],\n            [91.86992760617132, 23.624346421802784],\n            [91.70647505083211, 22.985263983649187],\n            [91.15896325069973, 23.50352692310439],\n            [91.46772993364368, 24.072639471934792],\n            [91.91509280799443, 24.130413723237112],\n            [92.37620161333481, 24.976692816664965],\n            [91.79959598182208, 25.147431748957317],\n            [90.87221072791212, 25.132600612889547],\n            [89.92069258012185, 25.26974986419218],\n            [89.83248091019962, 25.96508209889548],\n            [89.35509402868729, 26.014407253518073],\n            [88.56304935094977, 26.446525580342723],\n            [88.2097892598025, 25.768065700782714],\n            [88.93155398962308, 25.238692328384776],\n            [88.30637251175602, 24.866079413344206],\n            [88.08442223506242, 24.501657212821925],\n            [88.69994022009092, 24.23371491138856],\n            [88.52976972855379, 23.631141872649167],\n            [88.87631188350309, 22.87914642993783],\n            [89.03196129756623, 22.055708319582976],\n            [88.88876590368542, 21.690588487224748],\n            [88.20849734899522, 21.703171698487807],\n            [86.97570438024027, 21.49556163175521],\n            [87.03316857294887, 20.743307806882413],\n            [86.49935102737379, 20.151638495356607],\n            [85.0602657409097, 19.4785788029711],\n            [83.94100589390001, 18.302009792549725],\n            [83.18921715691785, 17.67122142177898],\n            [82.19279218946592, 17.016636053937816],\n            [82.19124189649719, 16.556664130107848],\n            [81.69271935417748, 16.310219224507904],\n            [80.79199913933014, 15.951972357644493],\n            [80.32489586784388, 15.89918488205835],\n            [80.02506920768644, 15.136414903214147],\n            [80.2332735533904, 13.835770778859981],\n            [80.28629357292186, 13.006260687710835],\n            [79.8625468281285, 12.056215318240888],\n            [79.85799930208682, 10.35727509199711],\n            [79.340511509116, 10.30885427493962],\n            [78.88534549348918, 9.546135972527722],\n            [79.1897196796883, 9.216543687370148],\n            [78.2779407083305, 8.933046779816934],\n            [77.94116539908435, 8.252959092639742],\n            [77.53989790233794, 7.965534776232332],\n            [76.59297895702167, 8.89927623131419],\n            [76.13006147655108, 10.299630031775521],\n            [75.7464673196485, 11.308250637248307],\n            [75.39610110870959, 11.781245022015824],\n            [74.86481570831683, 12.741935736537897],\n            [74.61671715688354, 13.99258291264968],\n            [74.44385949086723, 14.617221787977698],\n            [73.5341992532334, 15.99065216721496],\n            [73.11990929554943, 17.928570054592498],\n            [72.82090945830865, 19.208233547436166],\n            [72.8244751321368, 20.419503282141534],\n            [72.6305334817454, 21.356009426351008],\n            [71.17527347197395, 20.757441311114235],\n            [70.4704586119451, 20.877330634031384],\n            [69.16413008003883, 22.0892980005727],\n            [69.6449276060824, 22.450774644454338],\n            [69.34959679553435, 22.84317963306269],\n            [68.1766451353734, 23.69196503345671],\n            [68.84259931831878, 24.35913361256094],\n            [71.04324018746823, 24.3565239527302],\n            [70.84469933460284, 25.21510203704352],\n            [70.2828731627256, 25.72222870533983],\n            [70.16892662952202, 26.491871649678842],\n            [69.51439293811313, 26.940965684511372],\n            [70.61649620960193, 27.989196275335868],\n            [71.77766564320032, 27.913180243434525],\n            [72.8237516620847, 28.961591701772054],\n            [73.45063846221743, 29.97641347911987],\n            [74.42138024282028, 30.979814764931177],\n            [74.40592898956501, 31.69263947196528],\n            [75.25864179881322, 32.2711054550405],\n            [74.45155927927871, 32.7648996038055],\n            [74.10429365427734, 33.44147329358685],\n            [73.74994835805197, 34.31769887952785],\n            [74.24020267120497, 34.748887030571254],\n            [75.75706098826834, 34.50492259372132],\n            [76.87172163280403, 34.65354401299274],\n            [77.83745079947457, 35.494009507787766],\n            [78.91226891471322, 34.32193634697579],\n            [78.81108646028574, 33.50619802503242],\n            [79.20889163606859, 32.994394639613716],\n            [79.17612877799553, 32.48377981213771],\n            [78.45844648632601, 32.61816437431273],\n            [78.73889448437401, 31.515906073527063],\n            [79.7213668151071, 30.88271474865473],\n            [81.11125613802932, 30.183480943313402],\n            [80.4767212259174, 29.72986522065534],\n            [80.08842451367627, 28.79447011974014],\n            [81.05720258985203, 28.416095282499043],\n            [81.99998742058497, 27.925479234319994],\n            [83.30424889519955, 27.36450572357556],\n            [84.6750179381738, 27.234901231387536],\n            [85.25177859898338, 26.726198431906344],\n            [86.02439293817918, 26.63098460540857],\n            [87.2274719583663, 26.397898057556077],\n            [88.06023766474982, 26.41461538340249],\n            [88.17480431514092, 26.81040517832595],\n            [88.04313276566123, 27.445818589786825],\n            [88.12044070836987, 27.876541652939594],\n            [88.73032596227856, 28.086864732367516],\n            [88.81424848832056, 27.299315904239364],\n            [88.83564253128938, 27.098966376243762],\n            [89.74452762243885, 26.719402981059957],\n            [90.37327477413407, 26.87572418874288],\n            [91.21751264848643, 26.808648179628022],\n            [92.03348351437509, 26.83831045176356],\n            [92.10371178585974, 27.452614040633208],\n            [91.69665652869668, 27.771741848251665],\n            [92.50311893104364, 27.89687632904645],\n            [93.41334760943269, 28.640629380807226],\n            [94.56599043170294, 29.277438055939985],\n            [95.40480228066464, 29.03171662039213],\n            [96.11767866413103, 29.452802028922466],\n            [96.58659061074749, 28.83097951915434],\n            [96.24883344928779, 28.411030992134442],\n            [97.32711388549004, 28.26158274994634]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"China\",\n        \"sov_a3\": \"CH1\",\n        \"adm0_dif\": 1,\n        \"level\": 2,\n        \"type\": \"Country\",\n        \"tlc\": \"1\",\n        \"admin\": \"China\",\n        \"adm0_a3\": \"CHN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"China\",\n        \"gu_a3\": \"CHN\",\n        \"su_dif\": 0,\n        \"subunit\": \"China\",\n        \"su_a3\": \"CHN\",\n        \"brk_diff\": 0,\n        \"name\": \"China\",\n        \"name_long\": \"China\",\n        \"brk_a3\": \"CHN\",\n        \"brk_name\": \"China\",\n        \"brk_group\": null,\n        \"abbrev\": \"China\",\n        \"postal\": \"CN\",\n        \"formal_en\": \"People's Republic of China\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"China\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"China\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 3,\n        \"pop_est\": 1397715000,\n        \"pop_rank\": 18,\n        \"pop_year\": 2019,\n        \"gdp_md\": 14342903,\n        \"gdp_year\": 2019,\n        \"economy\": \"3. Emerging region: BRIC\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"CH\",\n        \"iso_a2\": \"CN\",\n        \"iso_a2_eh\": \"CN\",\n        \"iso_a3\": \"CHN\",\n        \"iso_a3_eh\": \"CHN\",\n        \"iso_n3\": \"156\",\n        \"iso_n3_eh\": \"156\",\n        \"un_a3\": \"156\",\n        \"wb_a2\": \"CN\",\n        \"wb_a3\": \"CHN\",\n        \"woe_id\": 23424781,\n        \"woe_id_eh\": 23424781,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"CHN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"CHN\",\n        \"adm0_a3_us\": \"CHN\",\n        \"adm0_a3_fr\": \"CHN\",\n        \"adm0_a3_ru\": \"CHN\",\n        \"adm0_a3_es\": \"CHN\",\n        \"adm0_a3_cn\": \"CHN\",\n        \"adm0_a3_tw\": \"TWN\",\n        \"adm0_a3_in\": \"CHN\",\n        \"adm0_a3_np\": \"CHN\",\n        \"adm0_a3_pk\": \"CHN\",\n        \"adm0_a3_de\": \"CHN\",\n        \"adm0_a3_gb\": \"CHN\",\n        \"adm0_a3_br\": \"CHN\",\n        \"adm0_a3_il\": \"CHN\",\n        \"adm0_a3_ps\": \"CHN\",\n        \"adm0_a3_sa\": \"CHN\",\n        \"adm0_a3_eg\": \"CHN\",\n        \"adm0_a3_ma\": \"CHN\",\n        \"adm0_a3_pt\": \"CHN\",\n        \"adm0_a3_ar\": \"CHN\",\n        \"adm0_a3_jp\": \"CHN\",\n        \"adm0_a3_ko\": \"CHN\",\n        \"adm0_a3_vn\": \"CHN\",\n        \"adm0_a3_tr\": \"CHN\",\n        \"adm0_a3_id\": \"CHN\",\n        \"adm0_a3_pl\": \"CHN\",\n        \"adm0_a3_gr\": \"CHN\",\n        \"adm0_a3_it\": \"CHN\",\n        \"adm0_a3_nl\": \"CHN\",\n        \"adm0_a3_se\": \"CHN\",\n        \"adm0_a3_bd\": \"CHN\",\n        \"adm0_a3_ua\": \"CHN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Eastern Asia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 5.7,\n        \"label_x\": 106.337289,\n        \"label_y\": 32.498178,\n        \"ne_id\": 1159320471,\n        \"wikidataid\": \"Q148\",\n        \"name_ar\": \"الصين\",\n        \"name_bn\": \"গণচীন\",\n        \"name_de\": \"Volksrepublik China\",\n        \"name_en\": \"People's Republic of China\",\n        \"name_es\": \"China\",\n        \"name_fa\": \"جمهوری خلق چین\",\n        \"name_fr\": \"République populaire de Chine\",\n        \"name_el\": \"Λαϊκή Δημοκρατία της Κίνας\",\n        \"name_he\": \"הרפובליקה העממית של סין\",\n        \"name_hi\": \"चीनी जनवादी गणराज्य\",\n        \"name_hu\": \"Kína\",\n        \"name_id\": \"Republik Rakyat Tiongkok\",\n        \"name_it\": \"Cina\",\n        \"name_ja\": \"中華人民共和国\",\n        \"name_ko\": \"중화인민공화국\",\n        \"name_nl\": \"Volksrepubliek China\",\n        \"name_pl\": \"Chińska Republika Ludowa\",\n        \"name_pt\": \"China\",\n        \"name_ru\": \"Китайская Народная Республика\",\n        \"name_sv\": \"Kina\",\n        \"name_tr\": \"Çin Halk Cumhuriyeti\",\n        \"name_uk\": \"Китайська Народна Республіка\",\n        \"name_ur\": \"عوامی جمہوریہ چین\",\n        \"name_vi\": \"Trung Quốc\",\n        \"name_zh\": \"中华人民共和国\",\n        \"name_zht\": \"中華人民共和國\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": \"Unrecognized\",\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"CHN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [109.47520958866365, 18.197700913968575],\n              [108.65520796105616, 18.507681993071387],\n              [108.62621748254044, 19.367887885001906],\n              [109.11905561730804, 19.821038519769345],\n              [110.21159874882281, 20.101253973872033],\n              [110.78655073450221, 20.077534491450052],\n              [111.01005130416458, 19.69592987719072],\n              [110.57064660038677, 19.25587921800927],\n              [110.33918786015147, 18.678395087147592],\n              [109.47520958866365, 18.197700913968575]\n            ]\n          ],\n          [\n            [\n              [80.2599902688853, 42.34999929459906],\n              [80.1801501809943, 42.92006785742694],\n              [80.86620649610126, 43.18036204688101],\n              [79.96610639844141, 44.91751699480463],\n              [81.9470707539181, 45.31702749285312],\n              [82.45892581576906, 45.539649563166506],\n              [83.18048383986047, 47.33003123635086],\n              [85.16429039911324, 47.0009557155161],\n              [85.72048383987067, 47.452969468773105],\n              [85.7682328633083, 48.45575063739699],\n              [86.59877648310336, 48.549181626980626],\n              [87.35997033076265, 49.21498078062912],\n              [87.75126427607671, 49.297197984405486],\n              [88.01383222855173, 48.599462795600616],\n              [88.85429772334676, 48.069081732772965],\n              [90.28082563676392, 47.69354909930793],\n              [90.97080936072501, 46.88814606382293],\n              [90.58576826371828, 45.71971609148753],\n              [90.9455395853343, 45.28607330991028],\n              [92.13389082231822, 45.11507599545646],\n              [93.4807336771413, 44.975472113619965],\n              [94.68892866412533, 44.35233185482842],\n              [95.30687544147153, 44.24133087826547],\n              [95.76245486855669, 43.319449164394605],\n              [96.34939578652781, 42.725635280928685],\n              [97.45175744017801, 42.74888967546002],\n              [99.51581749878004, 42.524691473961724],\n              [100.84586551310827, 42.66380442969145],\n              [101.83304039917994, 42.51487295182628],\n              [103.31227827353482, 41.9074681666676],\n              [104.52228193564899, 41.908346666016556],\n              [104.96499393109347, 41.59740957291635],\n              [106.12931562706169, 42.13432770442891],\n              [107.74477257693795, 42.48151581478187],\n              [109.24359581913146, 42.5194463160841],\n              [110.41210330611528, 42.87123362891103],\n              [111.12968224492023, 43.40683401140015],\n              [111.82958784388137, 43.74311839453952],\n              [111.66773725794323, 44.07317576758771],\n              [111.34837690637946, 44.45744171811009],\n              [111.8733061056003, 45.10207937273506],\n              [112.43606245325881, 45.01164561622429],\n              [113.46390669154417, 44.80889313412712],\n              [114.46033165899607, 45.339816799493825],\n              [115.98509647020009, 45.727235012386004],\n              [116.71786828009886, 46.38820241961521],\n              [117.42170128791419, 46.67273285581426],\n              [118.87432579963873, 46.80541209572365],\n              [119.66326989143876, 46.69267995867892],\n              [119.7728239278975, 47.04805878355013],\n              [118.86657433479495, 47.74706004494617],\n              [118.06414269416672, 48.06673045510369],\n              [117.29550744025741, 47.69770905210743],\n              [116.30895267137323, 47.85341014260284],\n              [115.74283735561579, 47.72654450132629],\n              [115.48528201707306, 48.13538259540344],\n              [116.19180219936757, 49.134598090199106],\n              [116.67880089728612, 49.888531399121405],\n              [117.8792444194264, 49.510983384796965],\n              [119.2884607280258, 50.142882798862004],\n              [119.27939, 50.58292],\n              [120.18208000000016, 51.64355000000012],\n              [120.7382, 51.96411],\n              [120.72578901579197, 52.516226304730935],\n              [120.17708865771681, 52.75388621684124],\n              [121.00308475147017, 53.25140106873119],\n              [122.24574791879283, 53.431725979213695],\n              [123.57147, 53.4588],\n              [125.06821129771038, 53.16104482686886],\n              [125.94634891164617, 52.79279857035698],\n              [126.56439904185697, 51.7842554795327],\n              [126.93915652883766, 51.35389415140592],\n              [127.28745568248485, 50.73979726826548],\n              [127.65740000000028, 49.760270000000105],\n              [129.39781782442043, 49.44060008401544],\n              [130.58229332898242, 48.72968740497614],\n              [130.9872600000001, 47.79013],\n              [132.50669, 47.78896],\n              [133.37359581922794, 48.18344167743487],\n              [135.02631147678665, 48.478229885443874],\n              [134.50081, 47.57845],\n              [134.1123500000001, 47.21248],\n              [133.76964399631288, 46.116926988299014],\n              [133.09712000000013, 45.14409],\n              [131.8834542176595, 45.32116160743652],\n              [131.02519000000018, 44.96796],\n              [131.28855512911548, 44.11151968034828],\n              [131.1446879416149, 42.92998973242689],\n              [130.63386640840974, 42.90301463477053],\n              [130.63999970690955, 42.39502427522179],\n              [129.99426720593323, 42.985386867843786],\n              [129.59666873587952, 42.42498179785456],\n              [128.0522152039723, 41.99428457291795],\n              [128.20843305879066, 41.46677155208249],\n              [127.34378299368302, 41.50315176041597],\n              [126.86908328664987, 41.81656932226619],\n              [126.18204511932943, 41.10733612727637],\n              [125.07994184784064, 40.56982371679245],\n              [124.26562462778531, 39.928493353834156],\n              [122.86757042856095, 39.63778758397622],\n              [122.1313879741309, 39.170451768544666],\n              [121.05455447803286, 38.897471014962846],\n              [121.58599490772248, 39.36085358332407],\n              [121.37675703337268, 39.75026133885949],\n              [122.16859500538106, 40.422442531896024],\n              [121.64035851449353, 40.94638987890333],\n              [120.76862877816194, 40.59338816991754],\n              [119.63960208544907, 39.898055935214245],\n              [119.02346398323306, 39.252333075511146],\n              [118.04274865119791, 39.2042739934797],\n              [117.53270226447711, 38.73763580988408],\n              [118.05969852098964, 38.06147553156106],\n              [118.87814985562832, 37.89732534438593],\n              [118.91163618375344, 37.44846385349871],\n              [119.70280236214205, 37.15638865818505],\n              [120.8234574728236, 37.87042776137801],\n              [121.711258579598, 37.48112335870718],\n              [122.35793745329849, 37.45448415786072],\n              [122.5199947449658, 36.93061432550185],\n              [121.10416385303307, 36.651329047180425],\n              [120.63700890511453, 36.111439520811075],\n              [119.66456180224606, 35.60979055433772],\n              [119.1512081238586, 34.90985911716044],\n              [120.22752485563373, 34.36033193616865],\n              [120.62036909391655, 33.37672272392514],\n              [121.22901411345023, 32.46031871187719],\n              [121.90814578663003, 31.692174384074647],\n              [121.89191938689038, 30.949351508095106],\n              [121.26425744027328, 30.6762674016487],\n              [121.50351932178467, 30.14291494396429],\n              [122.0921138855891, 29.83252045340315],\n              [121.93842817595306, 29.01802236583478],\n              [121.68443851123851, 28.225512600206617],\n              [121.12566124886649, 28.135673122667185],\n              [120.39547326058232, 27.05320689544932],\n              [119.5854968608395, 25.740780544532612],\n              [118.65687137255452, 24.54739085540024],\n              [117.28160647997088, 23.624501451099658],\n              [115.89073530483512, 22.78287323657807],\n              [114.76382734584624, 22.668074042241667],\n              [114.15254682826564, 22.22376007739615],\n              [113.80677981980074, 22.5483397486214],\n              [113.24107791550159, 22.051367499270455],\n              [111.84359215703248, 21.550493679281473],\n              [110.78546552942407, 21.397143866455338],\n              [110.44403934127168, 20.34103261970633],\n              [109.88986128137361, 20.282457383703488],\n              [109.62765506392466, 21.008227037026703],\n              [109.86448815311832, 21.395050970947523],\n              [108.5228129415244, 21.715212307211814],\n              [108.05018029178294, 21.55237986906012],\n              [107.04342003787264, 21.811898912029914],\n              [106.56727339073532, 22.21820486092477],\n              [106.72540327354847, 22.79426788989842],\n              [105.81124718630522, 22.976892401617903],\n              [105.32920942588663, 23.352063300056912],\n              [104.47685835166448, 22.819150092046968],\n              [103.50451460166056, 22.70375661873921],\n              [102.7069922221001, 22.708795070887675],\n              [102.17043582561358, 22.464753119389304],\n              [101.65201785686152, 22.318198757409547],\n              [101.80311974488293, 21.17436676684507],\n              [101.27002566935997, 21.201651923095184],\n              [101.18000532430754, 21.436572984294028],\n              [101.15003299357825, 21.849984442629022],\n              [100.41653771362738, 21.558839423096614],\n              [99.98348921102149, 21.7429367131364],\n              [99.24089887898725, 22.11831431730458],\n              [99.5319922220874, 22.94903880461258],\n              [98.89874922078278, 23.14272207284253],\n              [98.66026248575577, 24.063286037689966],\n              [97.60471967976198, 23.897404690033042],\n              [97.72460900267914, 25.083637193293],\n              [98.67183800658916, 25.918702500913525],\n              [98.71209394734451, 26.743535874940267],\n              [98.68269005737046, 27.50881216075062],\n              [98.2462309102333, 27.74722138112918],\n              [97.91198774616944, 28.335945136014345],\n              [97.32711388549004, 28.26158274994634],\n              [96.24883344928779, 28.411030992134442],\n              [96.58659061074749, 28.83097951915434],\n              [96.11767866413103, 29.452802028922466],\n              [95.40480228066464, 29.03171662039213],\n              [94.56599043170294, 29.277438055939985],\n              [93.41334760943269, 28.640629380807226],\n              [92.50311893104364, 27.89687632904645],\n              [91.69665652869668, 27.771741848251665],\n              [91.25885379431992, 28.040614325466294],\n              [90.7305139505678, 28.064953925075756],\n              [90.01582889197118, 28.296438503527217],\n              [89.47581017452111, 28.042758897406397],\n              [88.81424848832056, 27.299315904239364],\n              [88.73032596227856, 28.086864732367516],\n              [88.12044070836987, 27.876541652939594],\n              [86.9545170430006, 27.974261786403517],\n              [85.82331994013151, 28.203575954698707],\n              [85.01163821812304, 28.642773952747344],\n              [84.23457970575015, 28.839893703724698],\n              [83.89899295444673, 29.320226141877658],\n              [83.33711510613719, 29.463731594352197],\n              [82.32751264845088, 30.115268052688137],\n              [81.52580447787474, 30.42271698660863],\n              [81.11125613802932, 30.183480943313402],\n              [79.7213668151071, 30.88271474865473],\n              [78.73889448437401, 31.515906073527063],\n              [78.45844648632601, 32.61816437431273],\n              [79.17612877799553, 32.48377981213771],\n              [79.20889163606859, 32.994394639613716],\n              [78.81108646028574, 33.50619802503242],\n              [78.91226891471322, 34.32193634697579],\n              [77.83745079947457, 35.494009507787766],\n              [76.19284834178569, 35.89840342868783],\n              [75.89689741405013, 36.666806138651836],\n              [75.15802778514092, 37.13303091078912],\n              [74.98000247589542, 37.419990139305895],\n              [74.8299857929521, 37.9900070257014],\n              [74.86481570831683, 38.3788463404816],\n              [74.25751427602273, 38.60650686294345],\n              [73.92885216664644, 38.50581533462274],\n              [73.6753792662548, 39.4312368841056],\n              [73.96001305531843, 39.660008449861735],\n              [73.8222436868283, 39.893973497063186],\n              [74.77686242055606, 40.36642527929163],\n              [75.4678279967307, 40.56207225194867],\n              [76.52636803579745, 40.42794607193512],\n              [76.90448449087708, 41.06648590754965],\n              [78.18719689322597, 41.18531586360481],\n              [78.54366092317531, 41.58224254003869],\n              [80.11943037305139, 42.12394074153825],\n              [80.2599902688853, 42.34999929459906]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Israel\",\n        \"sov_a3\": \"IS1\",\n        \"adm0_dif\": 1,\n        \"level\": 2,\n        \"type\": \"Disputed\",\n        \"tlc\": \"1\",\n        \"admin\": \"Israel\",\n        \"adm0_a3\": \"ISR\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Israel\",\n        \"gu_a3\": \"ISR\",\n        \"su_dif\": 0,\n        \"subunit\": \"Israel\",\n        \"su_a3\": \"ISR\",\n        \"brk_diff\": 1,\n        \"name\": \"Israel\",\n        \"name_long\": \"Israel\",\n        \"brk_a3\": \"ISR\",\n        \"brk_name\": \"Israel\",\n        \"brk_group\": null,\n        \"abbrev\": \"Isr.\",\n        \"postal\": \"IS\",\n        \"formal_en\": \"State of Israel\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Israel\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Israel\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 9,\n        \"pop_est\": 9053300,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 394652,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"-99\",\n        \"iso_a2\": \"IL\",\n        \"iso_a2_eh\": \"IL\",\n        \"iso_a3\": \"ISR\",\n        \"iso_a3_eh\": \"ISR\",\n        \"iso_n3\": \"376\",\n        \"iso_n3_eh\": \"376\",\n        \"un_a3\": \"376\",\n        \"wb_a2\": \"IL\",\n        \"wb_a3\": \"ISR\",\n        \"woe_id\": 23424852,\n        \"woe_id_eh\": 23424852,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"ISR\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"ISR\",\n        \"adm0_a3_us\": \"ISR\",\n        \"adm0_a3_fr\": \"ISR\",\n        \"adm0_a3_ru\": \"ISR\",\n        \"adm0_a3_es\": \"ISR\",\n        \"adm0_a3_cn\": \"ISR\",\n        \"adm0_a3_tw\": \"ISR\",\n        \"adm0_a3_in\": \"ISR\",\n        \"adm0_a3_np\": \"ISR\",\n        \"adm0_a3_pk\": \"PSX\",\n        \"adm0_a3_de\": \"ISR\",\n        \"adm0_a3_gb\": \"ISR\",\n        \"adm0_a3_br\": \"ISR\",\n        \"adm0_a3_il\": \"ISR\",\n        \"adm0_a3_ps\": \"ISR\",\n        \"adm0_a3_sa\": \"PSX\",\n        \"adm0_a3_eg\": \"ISR\",\n        \"adm0_a3_ma\": \"ISR\",\n        \"adm0_a3_pt\": \"ISR\",\n        \"adm0_a3_ar\": \"ISR\",\n        \"adm0_a3_jp\": \"ISR\",\n        \"adm0_a3_ko\": \"ISR\",\n        \"adm0_a3_vn\": \"ISR\",\n        \"adm0_a3_tr\": \"ISR\",\n        \"adm0_a3_id\": \"ISR\",\n        \"adm0_a3_pl\": \"ISR\",\n        \"adm0_a3_gr\": \"ISR\",\n        \"adm0_a3_it\": \"ISR\",\n        \"adm0_a3_nl\": \"ISR\",\n        \"adm0_a3_se\": \"ISR\",\n        \"adm0_a3_bd\": \"PSX\",\n        \"adm0_a3_ua\": \"ISR\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Western Asia\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 34.847915,\n        \"label_y\": 30.911148,\n        \"ne_id\": 1159320895,\n        \"wikidataid\": \"Q801\",\n        \"name_ar\": \"إسرائيل\",\n        \"name_bn\": \"ইসরায়েল\",\n        \"name_de\": \"Israel\",\n        \"name_en\": \"Israel\",\n        \"name_es\": \"Israel\",\n        \"name_fa\": \"اسرائیل\",\n        \"name_fr\": \"Israël\",\n        \"name_el\": \"Ισραήλ\",\n        \"name_he\": \"ישראל\",\n        \"name_hi\": \"इज़राइल\",\n        \"name_hu\": \"Izrael\",\n        \"name_id\": \"Israel\",\n        \"name_it\": \"Israele\",\n        \"name_ja\": \"イスラエル\",\n        \"name_ko\": \"이스라엘\",\n        \"name_nl\": \"Israël\",\n        \"name_pl\": \"Izrael\",\n        \"name_pt\": \"Israel\",\n        \"name_ru\": \"Израиль\",\n        \"name_sv\": \"Israel\",\n        \"name_tr\": \"İsrail\",\n        \"name_uk\": \"Ізраїль\",\n        \"name_ur\": \"اسرائیل\",\n        \"name_vi\": \"Israel\",\n        \"name_zh\": \"以色列\",\n        \"name_zht\": \"以色列\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": \"Unrecognized\",\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": \"Unrecognized\",\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": \"Unrecognized\",\n        \"fclass_ua\": null,\n        \"filename\": \"ISR.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [35.71991824722275, 32.709192409794866],\n            [35.54566531753454, 32.393992011030576],\n            [35.183930291491436, 32.53251068778894],\n            [34.97464074070933, 31.866582343059722],\n            [35.22589155451243, 31.754341132121766],\n            [34.970506626125996, 31.61677846936081],\n            [34.92740848159457, 31.353435370401414],\n            [35.397560662586045, 31.489086005167582],\n            [35.420918409981965, 31.100065822874356],\n            [34.92260257339143, 29.501326198844524],\n            [34.823243288783814, 29.76108076171822],\n            [34.26544, 31.21936],\n            [34.26543474464621, 31.21935730952032],\n            [34.26543338393569, 31.219360866820153],\n            [34.55637169773891, 31.548823960896996],\n            [34.48810713068136, 31.60553884533732],\n            [34.75258711115117, 32.07292633720117],\n            [34.95541710789678, 32.82737641044638],\n            [35.098457472480675, 33.080539252244265],\n            [35.126052687324545, 33.09090037691878],\n            [35.460709262846706, 33.08904002535628],\n            [35.55279666519081, 33.26427480725802],\n            [35.82110070165024, 33.2774264592763],\n            [35.836396925608625, 32.86812327730851],\n            [35.70079796727475, 32.71601369885738],\n            [35.71991824722275, 32.709192409794866]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Israel\",\n        \"sov_a3\": \"IS1\",\n        \"adm0_dif\": 1,\n        \"level\": 2,\n        \"type\": \"Indeterminate\",\n        \"tlc\": \"1\",\n        \"admin\": \"Palestine\",\n        \"adm0_a3\": \"PSX\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Palestine\",\n        \"gu_a3\": \"PSX\",\n        \"su_dif\": 0,\n        \"subunit\": \"Palestine\",\n        \"su_a3\": \"PSX\",\n        \"brk_diff\": 0,\n        \"name\": \"Palestine\",\n        \"name_long\": \"Palestine\",\n        \"brk_a3\": \"PSX\",\n        \"brk_name\": \"Palestine\",\n        \"brk_group\": null,\n        \"abbrev\": \"Pal.\",\n        \"postal\": \"PAL\",\n        \"formal_en\": \"West Bank and Gaza\",\n        \"formal_fr\": null,\n        \"name_ciawf\": null,\n        \"note_adm0\": null,\n        \"note_brk\": \"Partial self-admin.\",\n        \"name_sort\": \"Palestine (West Bank and Gaza)\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 8,\n        \"pop_est\": 4685306,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 16276,\n        \"gdp_year\": 2018,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"-99\",\n        \"iso_a2\": \"PS\",\n        \"iso_a2_eh\": \"PS\",\n        \"iso_a3\": \"PSE\",\n        \"iso_a3_eh\": \"PSE\",\n        \"iso_n3\": \"275\",\n        \"iso_n3_eh\": \"275\",\n        \"un_a3\": \"275\",\n        \"wb_a2\": \"GZ\",\n        \"wb_a3\": \"WBG\",\n        \"woe_id\": 28289408,\n        \"woe_id_eh\": 28289408,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"PSX\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"PSX\",\n        \"adm0_a3_us\": \"PSX\",\n        \"adm0_a3_fr\": \"PSX\",\n        \"adm0_a3_ru\": \"PSX\",\n        \"adm0_a3_es\": \"PSX\",\n        \"adm0_a3_cn\": \"PSX\",\n        \"adm0_a3_tw\": \"PSX\",\n        \"adm0_a3_in\": \"PSX\",\n        \"adm0_a3_np\": \"PSX\",\n        \"adm0_a3_pk\": \"PSX\",\n        \"adm0_a3_de\": \"PSX\",\n        \"adm0_a3_gb\": \"PSX\",\n        \"adm0_a3_br\": \"PSX\",\n        \"adm0_a3_il\": \"PSX\",\n        \"adm0_a3_ps\": \"PSX\",\n        \"adm0_a3_sa\": \"PSX\",\n        \"adm0_a3_eg\": \"PSX\",\n        \"adm0_a3_ma\": \"PSX\",\n        \"adm0_a3_pt\": \"PSX\",\n        \"adm0_a3_ar\": \"PSX\",\n        \"adm0_a3_jp\": \"PSX\",\n        \"adm0_a3_ko\": \"PSX\",\n        \"adm0_a3_vn\": \"PSX\",\n        \"adm0_a3_tr\": \"PSX\",\n        \"adm0_a3_id\": \"PSX\",\n        \"adm0_a3_pl\": \"PSX\",\n        \"adm0_a3_gr\": \"PSX\",\n        \"adm0_a3_it\": \"PSX\",\n        \"adm0_a3_nl\": \"PSX\",\n        \"adm0_a3_se\": \"PSX\",\n        \"adm0_a3_bd\": \"PSX\",\n        \"adm0_a3_ua\": \"PSX\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Western Asia\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 9,\n        \"long_len\": 9,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": -99,\n        \"min_zoom\": 7,\n        \"min_label\": 4.5,\n        \"max_label\": 9.5,\n        \"label_x\": 35.291341,\n        \"label_y\": 32.047431,\n        \"ne_id\": 1159320899,\n        \"wikidataid\": \"Q23792\",\n        \"name_ar\": \"فلسطين\",\n        \"name_bn\": \"ফিলিস্তিন অঞ্চল\",\n        \"name_de\": \"Palästina\",\n        \"name_en\": \"Palestine\",\n        \"name_es\": \"Palestina\",\n        \"name_fa\": \"فلسطین\",\n        \"name_fr\": \"Palestine\",\n        \"name_el\": \"Παλαιστίνη\",\n        \"name_he\": \"ארץ ישראל\",\n        \"name_hi\": \"फ़िलिस्तीनी राज्यक्षेत्र\",\n        \"name_hu\": \"Palesztina\",\n        \"name_id\": \"Palestina\",\n        \"name_it\": \"Palestina\",\n        \"name_ja\": \"パレスチナ\",\n        \"name_ko\": \"팔레스타인\",\n        \"name_nl\": \"Palestina\",\n        \"name_pl\": \"Palestyna\",\n        \"name_pt\": \"Palestina\",\n        \"name_ru\": \"Палестина\",\n        \"name_sv\": \"Palestina\",\n        \"name_tr\": \"Filistin\",\n        \"name_uk\": \"Палестина\",\n        \"name_ur\": \"فلسطین\",\n        \"name_vi\": \"Palestine\",\n        \"name_zh\": \"巴勒斯坦\",\n        \"name_zht\": \"巴勒斯坦地區\",\n        \"fclass_iso\": \"Admin-0 dependency\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 dependency\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": \"Admin-0 country\",\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": \"Admin-0 country\",\n        \"fclass_sa\": \"Admin-0 country\",\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": \"Admin-0 country\",\n        \"fclass_ua\": null,\n        \"filename\": \"PSE.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [35.397560662586045, 31.489086005167582],\n            [34.92740848159457, 31.353435370401414],\n            [34.970506626125996, 31.61677846936081],\n            [35.22589155451243, 31.754341132121766],\n            [34.97464074070933, 31.866582343059722],\n            [35.183930291491436, 32.53251068778894],\n            [35.54566531753454, 32.393992011030576],\n            [35.5452519060762, 31.78250478772084],\n            [35.397560662586045, 31.489086005167582]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Lebanon\",\n        \"sov_a3\": \"LBN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Lebanon\",\n        \"adm0_a3\": \"LBN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Lebanon\",\n        \"gu_a3\": \"LBN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Lebanon\",\n        \"su_a3\": \"LBN\",\n        \"brk_diff\": 0,\n        \"name\": \"Lebanon\",\n        \"name_long\": \"Lebanon\",\n        \"brk_a3\": \"LBN\",\n        \"brk_name\": \"Lebanon\",\n        \"brk_group\": null,\n        \"abbrev\": \"Leb.\",\n        \"postal\": \"LB\",\n        \"formal_en\": \"Lebanese Republic\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Lebanon\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Lebanon\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 12,\n        \"pop_est\": 6855713,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 51991,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"LE\",\n        \"iso_a2\": \"LB\",\n        \"iso_a2_eh\": \"LB\",\n        \"iso_a3\": \"LBN\",\n        \"iso_a3_eh\": \"LBN\",\n        \"iso_n3\": \"422\",\n        \"iso_n3_eh\": \"422\",\n        \"un_a3\": \"422\",\n        \"wb_a2\": \"LB\",\n        \"wb_a3\": \"LBN\",\n        \"woe_id\": 23424873,\n        \"woe_id_eh\": 23424873,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"LBN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"LBN\",\n        \"adm0_a3_us\": \"LBN\",\n        \"adm0_a3_fr\": \"LBN\",\n        \"adm0_a3_ru\": \"LBN\",\n        \"adm0_a3_es\": \"LBN\",\n        \"adm0_a3_cn\": \"LBN\",\n        \"adm0_a3_tw\": \"LBN\",\n        \"adm0_a3_in\": \"LBN\",\n        \"adm0_a3_np\": \"LBN\",\n        \"adm0_a3_pk\": \"LBN\",\n        \"adm0_a3_de\": \"LBN\",\n        \"adm0_a3_gb\": \"LBN\",\n        \"adm0_a3_br\": \"LBN\",\n        \"adm0_a3_il\": \"LBN\",\n        \"adm0_a3_ps\": \"LBN\",\n        \"adm0_a3_sa\": \"LBN\",\n        \"adm0_a3_eg\": \"LBN\",\n        \"adm0_a3_ma\": \"LBN\",\n        \"adm0_a3_pt\": \"LBN\",\n        \"adm0_a3_ar\": \"LBN\",\n        \"adm0_a3_jp\": \"LBN\",\n        \"adm0_a3_ko\": \"LBN\",\n        \"adm0_a3_vn\": \"LBN\",\n        \"adm0_a3_tr\": \"LBN\",\n        \"adm0_a3_id\": \"LBN\",\n        \"adm0_a3_pl\": \"LBN\",\n        \"adm0_a3_gr\": \"LBN\",\n        \"adm0_a3_it\": \"LBN\",\n        \"adm0_a3_nl\": \"LBN\",\n        \"adm0_a3_se\": \"LBN\",\n        \"adm0_a3_bd\": \"LBN\",\n        \"adm0_a3_ua\": \"LBN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Western Asia\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": 4,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 35.992892,\n        \"label_y\": 34.133368,\n        \"ne_id\": 1159321013,\n        \"wikidataid\": \"Q822\",\n        \"name_ar\": \"لبنان\",\n        \"name_bn\": \"লেবানন\",\n        \"name_de\": \"Libanon\",\n        \"name_en\": \"Lebanon\",\n        \"name_es\": \"Líbano\",\n        \"name_fa\": \"لبنان\",\n        \"name_fr\": \"Liban\",\n        \"name_el\": \"Λίβανος\",\n        \"name_he\": \"לבנון\",\n        \"name_hi\": \"लेबनान\",\n        \"name_hu\": \"Libanon\",\n        \"name_id\": \"Lebanon\",\n        \"name_it\": \"Libano\",\n        \"name_ja\": \"レバノン\",\n        \"name_ko\": \"레바논\",\n        \"name_nl\": \"Libanon\",\n        \"name_pl\": \"Liban\",\n        \"name_pt\": \"Líbano\",\n        \"name_ru\": \"Ливан\",\n        \"name_sv\": \"Libanon\",\n        \"name_tr\": \"Lübnan\",\n        \"name_uk\": \"Ліван\",\n        \"name_ur\": \"لبنان\",\n        \"name_vi\": \"Liban\",\n        \"name_zh\": \"黎巴嫩\",\n        \"name_zht\": \"黎巴嫩\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"LBN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [35.82110070165024, 33.2774264592763],\n            [35.55279666519081, 33.26427480725802],\n            [35.460709262846706, 33.08904002535628],\n            [35.126052687324545, 33.09090037691878],\n            [35.48220665868013, 33.90545014091944],\n            [35.9795923194894, 34.61005829521913],\n            [35.99840254084364, 34.644914048800004],\n            [36.4481942075121, 34.59393524834407],\n            [36.61175011571589, 34.20178864189718],\n            [36.066460402172055, 33.82491242119255],\n            [35.82110070165024, 33.2774264592763]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Syria\",\n        \"sov_a3\": \"SYR\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Syria\",\n        \"adm0_a3\": \"SYR\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Syria\",\n        \"gu_a3\": \"SYR\",\n        \"su_dif\": 0,\n        \"subunit\": \"Syria\",\n        \"su_a3\": \"SYR\",\n        \"brk_diff\": 0,\n        \"name\": \"Syria\",\n        \"name_long\": \"Syria\",\n        \"brk_a3\": \"SYR\",\n        \"brk_name\": \"Syria\",\n        \"brk_group\": null,\n        \"abbrev\": \"Syria\",\n        \"postal\": \"SYR\",\n        \"formal_en\": \"Syrian Arab Republic\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Syria\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Syrian Arab Republic\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 6,\n        \"pop_est\": 17070135,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 98830,\n        \"gdp_year\": 2015,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"SY\",\n        \"iso_a2\": \"SY\",\n        \"iso_a2_eh\": \"SY\",\n        \"iso_a3\": \"SYR\",\n        \"iso_a3_eh\": \"SYR\",\n        \"iso_n3\": \"760\",\n        \"iso_n3_eh\": \"760\",\n        \"un_a3\": \"760\",\n        \"wb_a2\": \"SY\",\n        \"wb_a3\": \"SYR\",\n        \"woe_id\": 23424956,\n        \"woe_id_eh\": 23424956,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"SYR\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"SYR\",\n        \"adm0_a3_us\": \"SYR\",\n        \"adm0_a3_fr\": \"SYR\",\n        \"adm0_a3_ru\": \"SYR\",\n        \"adm0_a3_es\": \"SYR\",\n        \"adm0_a3_cn\": \"SYR\",\n        \"adm0_a3_tw\": \"SYR\",\n        \"adm0_a3_in\": \"SYR\",\n        \"adm0_a3_np\": \"SYR\",\n        \"adm0_a3_pk\": \"SYR\",\n        \"adm0_a3_de\": \"SYR\",\n        \"adm0_a3_gb\": \"SYR\",\n        \"adm0_a3_br\": \"SYR\",\n        \"adm0_a3_il\": \"SYR\",\n        \"adm0_a3_ps\": \"SYR\",\n        \"adm0_a3_sa\": \"SYR\",\n        \"adm0_a3_eg\": \"SYR\",\n        \"adm0_a3_ma\": \"SYR\",\n        \"adm0_a3_pt\": \"SYR\",\n        \"adm0_a3_ar\": \"SYR\",\n        \"adm0_a3_jp\": \"SYR\",\n        \"adm0_a3_ko\": \"SYR\",\n        \"adm0_a3_vn\": \"SYR\",\n        \"adm0_a3_tr\": \"SYR\",\n        \"adm0_a3_id\": \"SYR\",\n        \"adm0_a3_pl\": \"SYR\",\n        \"adm0_a3_gr\": \"SYR\",\n        \"adm0_a3_it\": \"SYR\",\n        \"adm0_a3_nl\": \"SYR\",\n        \"adm0_a3_se\": \"SYR\",\n        \"adm0_a3_bd\": \"SYR\",\n        \"adm0_a3_ua\": \"SYR\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Western Asia\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 38.277783,\n        \"label_y\": 35.006636,\n        \"ne_id\": 1159321295,\n        \"wikidataid\": \"Q858\",\n        \"name_ar\": \"سوريا\",\n        \"name_bn\": \"সিরিয়া\",\n        \"name_de\": \"Syrien\",\n        \"name_en\": \"Syria\",\n        \"name_es\": \"Siria\",\n        \"name_fa\": \"سوریه\",\n        \"name_fr\": \"Syrie\",\n        \"name_el\": \"Συρία\",\n        \"name_he\": \"סוריה\",\n        \"name_hi\": \"सीरिया\",\n        \"name_hu\": \"Szíria\",\n        \"name_id\": \"Suriah\",\n        \"name_it\": \"Siria\",\n        \"name_ja\": \"シリア\",\n        \"name_ko\": \"시리아\",\n        \"name_nl\": \"Syrië\",\n        \"name_pl\": \"Syria\",\n        \"name_pt\": \"Síria\",\n        \"name_ru\": \"Сирия\",\n        \"name_sv\": \"Syrien\",\n        \"name_tr\": \"Suriye\",\n        \"name_uk\": \"Сирія\",\n        \"name_ur\": \"سوریہ\",\n        \"name_vi\": \"Syria\",\n        \"name_zh\": \"叙利亚\",\n        \"name_zht\": \"敘利亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"SYR.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [35.71991824722275, 32.709192409794866],\n            [35.70079796727475, 32.71601369885738],\n            [35.836396925608625, 32.86812327730851],\n            [35.82110070165024, 33.2774264592763],\n            [36.066460402172055, 33.82491242119255],\n            [36.61175011571589, 34.20178864189718],\n            [36.4481942075121, 34.59393524834407],\n            [35.99840254084364, 34.644914048800004],\n            [35.905023227692226, 35.410009467097325],\n            [36.149762811026534, 35.82153473565367],\n            [36.417550083163036, 36.04061697035506],\n            [36.6853890317318, 36.259699205056464],\n            [36.7394942563414, 36.81752045343109],\n            [37.06676110204583, 36.62303620050062],\n            [38.1677274920242, 36.90121043552777],\n            [38.6998913917659, 36.71292735447234],\n            [39.52258019385255, 36.71605377862599],\n            [40.67325931169569, 37.09127635349729],\n            [41.21208947120305, 37.074352321921694],\n            [42.34959109881177, 37.2298725449041],\n            [41.83706424334096, 36.605853786763575],\n            [41.289707472505455, 36.35881460219227],\n            [41.383965285005814, 35.628316555314356],\n            [41.006158888519934, 34.41937226006212],\n            [38.792340529136084, 33.378686428352225],\n            [36.834062127435544, 32.312937526980775],\n            [35.71991824722275, 32.709192409794866]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"South Korea\",\n        \"sov_a3\": \"KOR\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"South Korea\",\n        \"adm0_a3\": \"KOR\",\n        \"geou_dif\": 0,\n        \"geounit\": \"South Korea\",\n        \"gu_a3\": \"KOR\",\n        \"su_dif\": 0,\n        \"subunit\": \"South Korea\",\n        \"su_a3\": \"KOR\",\n        \"brk_diff\": 0,\n        \"name\": \"South Korea\",\n        \"name_long\": \"Republic of Korea\",\n        \"brk_a3\": \"KOR\",\n        \"brk_name\": \"Republic of Korea\",\n        \"brk_group\": null,\n        \"abbrev\": \"S.K.\",\n        \"postal\": \"KR\",\n        \"formal_en\": \"Republic of Korea\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Korea, South\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Korea, Rep.\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 5,\n        \"pop_est\": 51709098,\n        \"pop_rank\": 16,\n        \"pop_year\": 2019,\n        \"gdp_md\": 1646739,\n        \"gdp_year\": 2019,\n        \"economy\": \"4. Emerging region: MIKT\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"KS\",\n        \"iso_a2\": \"KR\",\n        \"iso_a2_eh\": \"KR\",\n        \"iso_a3\": \"KOR\",\n        \"iso_a3_eh\": \"KOR\",\n        \"iso_n3\": \"410\",\n        \"iso_n3_eh\": \"410\",\n        \"un_a3\": \"410\",\n        \"wb_a2\": \"KR\",\n        \"wb_a3\": \"KOR\",\n        \"woe_id\": 23424868,\n        \"woe_id_eh\": 23424868,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"KOR\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"KOR\",\n        \"adm0_a3_us\": \"KOR\",\n        \"adm0_a3_fr\": \"KOR\",\n        \"adm0_a3_ru\": \"KOR\",\n        \"adm0_a3_es\": \"KOR\",\n        \"adm0_a3_cn\": \"KOR\",\n        \"adm0_a3_tw\": \"KOR\",\n        \"adm0_a3_in\": \"KOR\",\n        \"adm0_a3_np\": \"KOR\",\n        \"adm0_a3_pk\": \"KOR\",\n        \"adm0_a3_de\": \"KOR\",\n        \"adm0_a3_gb\": \"KOR\",\n        \"adm0_a3_br\": \"KOR\",\n        \"adm0_a3_il\": \"KOR\",\n        \"adm0_a3_ps\": \"KOR\",\n        \"adm0_a3_sa\": \"KOR\",\n        \"adm0_a3_eg\": \"KOR\",\n        \"adm0_a3_ma\": \"KOR\",\n        \"adm0_a3_pt\": \"KOR\",\n        \"adm0_a3_ar\": \"KOR\",\n        \"adm0_a3_jp\": \"KOR\",\n        \"adm0_a3_ko\": \"KOR\",\n        \"adm0_a3_vn\": \"KOR\",\n        \"adm0_a3_tr\": \"KOR\",\n        \"adm0_a3_id\": \"KOR\",\n        \"adm0_a3_pl\": \"KOR\",\n        \"adm0_a3_gr\": \"KOR\",\n        \"adm0_a3_it\": \"KOR\",\n        \"adm0_a3_nl\": \"KOR\",\n        \"adm0_a3_se\": \"KOR\",\n        \"adm0_a3_bd\": \"KOR\",\n        \"adm0_a3_ua\": \"KOR\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Eastern Asia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 11,\n        \"long_len\": 17,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.5,\n        \"max_label\": 7,\n        \"label_x\": 128.129504,\n        \"label_y\": 36.384924,\n        \"ne_id\": 1159320985,\n        \"wikidataid\": \"Q884\",\n        \"name_ar\": \"كوريا الجنوبية\",\n        \"name_bn\": \"দক্ষিণ কোরিয়া\",\n        \"name_de\": \"Südkorea\",\n        \"name_en\": \"South Korea\",\n        \"name_es\": \"Corea del Sur\",\n        \"name_fa\": \"کره جنوبی\",\n        \"name_fr\": \"Corée du Sud\",\n        \"name_el\": \"Νότια Κορέα\",\n        \"name_he\": \"קוריאה הדרומית\",\n        \"name_hi\": \"दक्षिण कोरिया\",\n        \"name_hu\": \"Dél-Korea\",\n        \"name_id\": \"Korea Selatan\",\n        \"name_it\": \"Corea del Sud\",\n        \"name_ja\": \"大韓民国\",\n        \"name_ko\": \"대한민국\",\n        \"name_nl\": \"Zuid-Korea\",\n        \"name_pl\": \"Korea Południowa\",\n        \"name_pt\": \"Coreia do Sul\",\n        \"name_ru\": \"Республика Корея\",\n        \"name_sv\": \"Sydkorea\",\n        \"name_tr\": \"Güney Kore\",\n        \"name_uk\": \"Південна Корея\",\n        \"name_ur\": \"جنوبی کوریا\",\n        \"name_vi\": \"Hàn Quốc\",\n        \"name_zh\": \"大韩民国\",\n        \"name_zht\": \"大韓民國\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"KOR.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [126.17475874237624, 37.74968577732804],\n            [126.23733890188176, 37.84037791600028],\n            [126.68371992401893, 37.80477285415118],\n            [127.07330854706737, 38.2561148137884],\n            [127.78003543509101, 38.30453563084589],\n            [128.20574588431145, 38.37039724380189],\n            [128.34971642467661, 38.61224294692785],\n            [129.21291954968007, 37.43239248305595],\n            [129.46044966035817, 36.78418915460283],\n            [129.4683044780665, 35.63214061130395],\n            [129.0913765809296, 35.082484239231434],\n            [128.1858504578791, 34.89037710218639],\n            [127.3865194031884, 34.47567373304412],\n            [126.48574751190876, 34.39004588473648],\n            [126.37391971242914, 34.934560451795946],\n            [126.55923139862779, 35.6845405136479],\n            [126.11739790253229, 36.72548472751926],\n            [126.86014326386339, 36.893924058574626],\n            [126.17475874237624, 37.74968577732804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"North Korea\",\n        \"sov_a3\": \"PRK\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"North Korea\",\n        \"adm0_a3\": \"PRK\",\n        \"geou_dif\": 0,\n        \"geounit\": \"North Korea\",\n        \"gu_a3\": \"PRK\",\n        \"su_dif\": 0,\n        \"subunit\": \"North Korea\",\n        \"su_a3\": \"PRK\",\n        \"brk_diff\": 0,\n        \"name\": \"North Korea\",\n        \"name_long\": \"Dem. Rep. Korea\",\n        \"brk_a3\": \"PRK\",\n        \"brk_name\": \"Dem. Rep. Korea\",\n        \"brk_group\": null,\n        \"abbrev\": \"N.K.\",\n        \"postal\": \"KP\",\n        \"formal_en\": \"Democratic People's Republic of Korea\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Korea, North\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Korea, Dem. Rep.\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 9,\n        \"pop_est\": 25666161,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 40000,\n        \"gdp_year\": 2016,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"KN\",\n        \"iso_a2\": \"KP\",\n        \"iso_a2_eh\": \"KP\",\n        \"iso_a3\": \"PRK\",\n        \"iso_a3_eh\": \"PRK\",\n        \"iso_n3\": \"408\",\n        \"iso_n3_eh\": \"408\",\n        \"un_a3\": \"408\",\n        \"wb_a2\": \"KP\",\n        \"wb_a3\": \"PRK\",\n        \"woe_id\": 23424865,\n        \"woe_id_eh\": 23424865,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"PRK\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"PRK\",\n        \"adm0_a3_us\": \"PRK\",\n        \"adm0_a3_fr\": \"PRK\",\n        \"adm0_a3_ru\": \"PRK\",\n        \"adm0_a3_es\": \"PRK\",\n        \"adm0_a3_cn\": \"PRK\",\n        \"adm0_a3_tw\": \"PRK\",\n        \"adm0_a3_in\": \"PRK\",\n        \"adm0_a3_np\": \"PRK\",\n        \"adm0_a3_pk\": \"PRK\",\n        \"adm0_a3_de\": \"PRK\",\n        \"adm0_a3_gb\": \"PRK\",\n        \"adm0_a3_br\": \"PRK\",\n        \"adm0_a3_il\": \"PRK\",\n        \"adm0_a3_ps\": \"PRK\",\n        \"adm0_a3_sa\": \"PRK\",\n        \"adm0_a3_eg\": \"PRK\",\n        \"adm0_a3_ma\": \"PRK\",\n        \"adm0_a3_pt\": \"PRK\",\n        \"adm0_a3_ar\": \"PRK\",\n        \"adm0_a3_jp\": \"PRK\",\n        \"adm0_a3_ko\": \"PRK\",\n        \"adm0_a3_vn\": \"PRK\",\n        \"adm0_a3_tr\": \"PRK\",\n        \"adm0_a3_id\": \"PRK\",\n        \"adm0_a3_pl\": \"PRK\",\n        \"adm0_a3_gr\": \"PRK\",\n        \"adm0_a3_it\": \"PRK\",\n        \"adm0_a3_nl\": \"PRK\",\n        \"adm0_a3_se\": \"PRK\",\n        \"adm0_a3_bd\": \"PRK\",\n        \"adm0_a3_ua\": \"PRK\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Eastern Asia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 11,\n        \"long_len\": 15,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 126.444516,\n        \"label_y\": 39.885252,\n        \"ne_id\": 1159321181,\n        \"wikidataid\": \"Q423\",\n        \"name_ar\": \"كوريا الشمالية\",\n        \"name_bn\": \"উত্তর কোরিয়া\",\n        \"name_de\": \"Nordkorea\",\n        \"name_en\": \"North Korea\",\n        \"name_es\": \"Corea del Norte\",\n        \"name_fa\": \"کره شمالی\",\n        \"name_fr\": \"Corée du Nord\",\n        \"name_el\": \"Βόρεια Κορέα\",\n        \"name_he\": \"קוריאה הצפונית\",\n        \"name_hi\": \"उत्तर कोरिया\",\n        \"name_hu\": \"Észak-Korea\",\n        \"name_id\": \"Korea Utara\",\n        \"name_it\": \"Corea del Nord\",\n        \"name_ja\": \"朝鮮民主主義人民共和国\",\n        \"name_ko\": \"조선민주주의인민공화국\",\n        \"name_nl\": \"Noord-Korea\",\n        \"name_pl\": \"Korea Północna\",\n        \"name_pt\": \"Coreia do Norte\",\n        \"name_ru\": \"КНДР\",\n        \"name_sv\": \"Nordkorea\",\n        \"name_tr\": \"Kuzey Kore\",\n        \"name_uk\": \"Корейська Народно-Демократична Республіка\",\n        \"name_ur\": \"شمالی کوریا\",\n        \"name_vi\": \"Cộng hòa Dân chủ Nhân dân Triều Tiên\",\n        \"name_zh\": \"朝鲜民主主义人民共和国\",\n        \"name_zht\": \"朝鮮民主主義人民共和國\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"PRK.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [130.78000366004676, 42.220007813203225],\n              [130.78000485358513, 42.22001036108258],\n              [130.78000735893113, 42.22000722916885],\n              [130.78000366004676, 42.220007813203225]\n            ]\n          ],\n          [\n            [\n              [130.63999970690955, 42.39502427522179],\n              [130.6400000000001, 42.395],\n              [130.77999231657833, 42.22000960427719],\n              [130.40003055228902, 42.28000356705971],\n              [129.96594852103726, 41.94136790625106],\n              [129.66736209525482, 41.60110443782523],\n              [129.70518924369247, 40.88282786718433],\n              [129.18811486218, 40.66180776627199],\n              [129.01039961152821, 40.485436102859815],\n              [128.63336836152672, 40.18984691015031],\n              [127.96741417858135, 40.02541250259756],\n              [127.53343550019417, 39.7568500839767],\n              [127.5021195822253, 39.32393077245153],\n              [127.38543419811027, 39.213472398427655],\n              [127.78334272675772, 39.05089834243742],\n              [128.34971642467661, 38.61224294692785],\n              [128.20574588431145, 38.37039724380189],\n              [127.78003543509101, 38.30453563084589],\n              [127.07330854706737, 38.2561148137884],\n              [126.68371992401893, 37.80477285415118],\n              [126.23733890188176, 37.84037791600028],\n              [126.17475874237624, 37.74968577732804],\n              [125.68910363169721, 37.94001007745902],\n              [125.5684391622957, 37.75208873142962],\n              [125.2753304383362, 37.669070542952724],\n              [125.24008711151316, 37.85722443292744],\n              [124.98103315643397, 37.94882090916478],\n              [124.71216067921938, 38.10834605564979],\n              [124.98599409393398, 38.54847422947968],\n              [125.2219486837787, 38.66585724543067],\n              [125.13285851450752, 38.84855927179859],\n              [125.3865897970606, 39.387957872061165],\n              [125.32111575734682, 39.55138458918421],\n              [124.7374821310424, 39.66034434667162],\n              [124.26562462778531, 39.928493353834156],\n              [125.07994184784064, 40.56982371679245],\n              [126.18204511932943, 41.10733612727637],\n              [126.86908328664987, 41.81656932226619],\n              [127.34378299368302, 41.50315176041597],\n              [128.20843305879066, 41.46677155208249],\n              [128.0522152039723, 41.99428457291795],\n              [129.59666873587952, 42.42498179785456],\n              [129.99426720593323, 42.985386867843786],\n              [130.63999970690955, 42.39502427522179]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Bhutan\",\n        \"sov_a3\": \"BTN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Bhutan\",\n        \"adm0_a3\": \"BTN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Bhutan\",\n        \"gu_a3\": \"BTN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Bhutan\",\n        \"su_a3\": \"BTN\",\n        \"brk_diff\": 0,\n        \"name\": \"Bhutan\",\n        \"name_long\": \"Bhutan\",\n        \"brk_a3\": \"BTN\",\n        \"brk_name\": \"Bhutan\",\n        \"brk_group\": null,\n        \"abbrev\": \"Bhutan\",\n        \"postal\": \"BT\",\n        \"formal_en\": \"Kingdom of Bhutan\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Bhutan\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Bhutan\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 8,\n        \"pop_est\": 763092,\n        \"pop_rank\": 11,\n        \"pop_year\": 2019,\n        \"gdp_md\": 2530,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"BT\",\n        \"iso_a2\": \"BT\",\n        \"iso_a2_eh\": \"BT\",\n        \"iso_a3\": \"BTN\",\n        \"iso_a3_eh\": \"BTN\",\n        \"iso_n3\": \"064\",\n        \"iso_n3_eh\": \"064\",\n        \"un_a3\": \"064\",\n        \"wb_a2\": \"BT\",\n        \"wb_a3\": \"BTN\",\n        \"woe_id\": 23424770,\n        \"woe_id_eh\": 23424770,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"BTN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"BTN\",\n        \"adm0_a3_us\": \"BTN\",\n        \"adm0_a3_fr\": \"BTN\",\n        \"adm0_a3_ru\": \"BTN\",\n        \"adm0_a3_es\": \"BTN\",\n        \"adm0_a3_cn\": \"BTN\",\n        \"adm0_a3_tw\": \"BTN\",\n        \"adm0_a3_in\": \"BTN\",\n        \"adm0_a3_np\": \"BTN\",\n        \"adm0_a3_pk\": \"BTN\",\n        \"adm0_a3_de\": \"BTN\",\n        \"adm0_a3_gb\": \"BTN\",\n        \"adm0_a3_br\": \"BTN\",\n        \"adm0_a3_il\": \"BTN\",\n        \"adm0_a3_ps\": \"BTN\",\n        \"adm0_a3_sa\": \"BTN\",\n        \"adm0_a3_eg\": \"BTN\",\n        \"adm0_a3_ma\": \"BTN\",\n        \"adm0_a3_pt\": \"BTN\",\n        \"adm0_a3_ar\": \"BTN\",\n        \"adm0_a3_jp\": \"BTN\",\n        \"adm0_a3_ko\": \"BTN\",\n        \"adm0_a3_vn\": \"BTN\",\n        \"adm0_a3_tr\": \"BTN\",\n        \"adm0_a3_id\": \"BTN\",\n        \"adm0_a3_pl\": \"BTN\",\n        \"adm0_a3_gr\": \"BTN\",\n        \"adm0_a3_it\": \"BTN\",\n        \"adm0_a3_nl\": \"BTN\",\n        \"adm0_a3_se\": \"BTN\",\n        \"adm0_a3_bd\": \"BTN\",\n        \"adm0_a3_ua\": \"BTN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Southern Asia\",\n        \"region_wb\": \"South Asia\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 90.040294,\n        \"label_y\": 27.536685,\n        \"ne_id\": 1159320453,\n        \"wikidataid\": \"Q917\",\n        \"name_ar\": \"بوتان\",\n        \"name_bn\": \"ভুটান\",\n        \"name_de\": \"Bhutan\",\n        \"name_en\": \"Bhutan\",\n        \"name_es\": \"Bután\",\n        \"name_fa\": \"بوتان\",\n        \"name_fr\": \"Bhoutan\",\n        \"name_el\": \"Μπουτάν\",\n        \"name_he\": \"בהוטן\",\n        \"name_hi\": \"भूटान\",\n        \"name_hu\": \"Bhután\",\n        \"name_id\": \"Bhutan\",\n        \"name_it\": \"Bhutan\",\n        \"name_ja\": \"ブータン\",\n        \"name_ko\": \"부탄\",\n        \"name_nl\": \"Bhutan\",\n        \"name_pl\": \"Bhutan\",\n        \"name_pt\": \"Butão\",\n        \"name_ru\": \"Бутан\",\n        \"name_sv\": \"Bhutan\",\n        \"name_tr\": \"Bhutan\",\n        \"name_uk\": \"Бутан\",\n        \"name_ur\": \"بھوٹان\",\n        \"name_vi\": \"Bhutan\",\n        \"name_zh\": \"不丹\",\n        \"name_zht\": \"不丹\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"BTN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [91.69665652869668, 27.771741848251665],\n            [92.10371178585974, 27.452614040633208],\n            [92.03348351437509, 26.83831045176356],\n            [91.21751264848643, 26.808648179628022],\n            [90.37327477413407, 26.87572418874288],\n            [89.74452762243885, 26.719402981059957],\n            [88.83564253128938, 27.098966376243762],\n            [88.81424848832056, 27.299315904239364],\n            [89.47581017452111, 28.042758897406397],\n            [90.01582889197118, 28.296438503527217],\n            [90.7305139505678, 28.064953925075756],\n            [91.25885379431992, 28.040614325466294],\n            [91.69665652869668, 27.771741848251665]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Oman\",\n        \"sov_a3\": \"OMN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Oman\",\n        \"adm0_a3\": \"OMN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Oman\",\n        \"gu_a3\": \"OMN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Oman\",\n        \"su_a3\": \"OMN\",\n        \"brk_diff\": 0,\n        \"name\": \"Oman\",\n        \"name_long\": \"Oman\",\n        \"brk_a3\": \"OMN\",\n        \"brk_name\": \"Oman\",\n        \"brk_group\": null,\n        \"abbrev\": \"Oman\",\n        \"postal\": \"OM\",\n        \"formal_en\": \"Sultanate of Oman\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Oman\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Oman\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 6,\n        \"pop_est\": 4974986,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 76331,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"2. High income: nonOECD\",\n        \"fips_10\": \"MU\",\n        \"iso_a2\": \"OM\",\n        \"iso_a2_eh\": \"OM\",\n        \"iso_a3\": \"OMN\",\n        \"iso_a3_eh\": \"OMN\",\n        \"iso_n3\": \"512\",\n        \"iso_n3_eh\": \"512\",\n        \"un_a3\": \"512\",\n        \"wb_a2\": \"OM\",\n        \"wb_a3\": \"OMN\",\n        \"woe_id\": 23424898,\n        \"woe_id_eh\": 23424898,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"OMN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"OMN\",\n        \"adm0_a3_us\": \"OMN\",\n        \"adm0_a3_fr\": \"OMN\",\n        \"adm0_a3_ru\": \"OMN\",\n        \"adm0_a3_es\": \"OMN\",\n        \"adm0_a3_cn\": \"OMN\",\n        \"adm0_a3_tw\": \"OMN\",\n        \"adm0_a3_in\": \"OMN\",\n        \"adm0_a3_np\": \"OMN\",\n        \"adm0_a3_pk\": \"OMN\",\n        \"adm0_a3_de\": \"OMN\",\n        \"adm0_a3_gb\": \"OMN\",\n        \"adm0_a3_br\": \"OMN\",\n        \"adm0_a3_il\": \"OMN\",\n        \"adm0_a3_ps\": \"OMN\",\n        \"adm0_a3_sa\": \"OMN\",\n        \"adm0_a3_eg\": \"OMN\",\n        \"adm0_a3_ma\": \"OMN\",\n        \"adm0_a3_pt\": \"OMN\",\n        \"adm0_a3_ar\": \"OMN\",\n        \"adm0_a3_jp\": \"OMN\",\n        \"adm0_a3_ko\": \"OMN\",\n        \"adm0_a3_vn\": \"OMN\",\n        \"adm0_a3_tr\": \"OMN\",\n        \"adm0_a3_id\": \"OMN\",\n        \"adm0_a3_pl\": \"OMN\",\n        \"adm0_a3_gr\": \"OMN\",\n        \"adm0_a3_it\": \"OMN\",\n        \"adm0_a3_nl\": \"OMN\",\n        \"adm0_a3_se\": \"OMN\",\n        \"adm0_a3_bd\": \"OMN\",\n        \"adm0_a3_ua\": \"OMN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Western Asia\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 4,\n        \"long_len\": 4,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 57.336553,\n        \"label_y\": 22.120427,\n        \"ne_id\": 1159321151,\n        \"wikidataid\": \"Q842\",\n        \"name_ar\": \"سلطنة عمان\",\n        \"name_bn\": \"ওমান\",\n        \"name_de\": \"Oman\",\n        \"name_en\": \"Oman\",\n        \"name_es\": \"Omán\",\n        \"name_fa\": \"عمان\",\n        \"name_fr\": \"Oman\",\n        \"name_el\": \"Ομάν\",\n        \"name_he\": \"עומאן\",\n        \"name_hi\": \"ओमान\",\n        \"name_hu\": \"Omán\",\n        \"name_id\": \"Oman\",\n        \"name_it\": \"Oman\",\n        \"name_ja\": \"オマーン\",\n        \"name_ko\": \"오만\",\n        \"name_nl\": \"Oman\",\n        \"name_pl\": \"Oman\",\n        \"name_pt\": \"Omã\",\n        \"name_ru\": \"Оман\",\n        \"name_sv\": \"Oman\",\n        \"name_tr\": \"Umman\",\n        \"name_uk\": \"Оман\",\n        \"name_ur\": \"عمان\",\n        \"name_vi\": \"Oman\",\n        \"name_zh\": \"阿曼\",\n        \"name_zht\": \"阿曼\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"OMN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [55.208341098863194, 22.708329982997046],\n              [55.234489373602884, 23.110992743415324],\n              [55.525841098864475, 23.524869289640932],\n              [55.52863162620824, 23.933604030853502],\n              [55.98121382022046, 24.13054291431783],\n              [55.804118686756226, 24.269604193615265],\n              [55.88623253766801, 24.920830593357447],\n              [56.396847365144005, 24.924732163995486],\n              [56.845140415276006, 24.241673081961505],\n              [57.4034525897574, 23.878594468678813],\n              [58.13694786970825, 23.74793060962881],\n              [58.72921146020542, 23.56566783293536],\n              [59.18050174341033, 22.992395331305474],\n              [59.45009769067703, 22.6602709009656],\n              [59.80806033716286, 22.533611965418217],\n              [59.806148309168066, 22.310524807214193],\n              [59.442191196536385, 21.714540513592027],\n              [59.28240766788991, 21.43388580981485],\n              [58.86114139184656, 21.114034532144302],\n              [58.48798587426694, 20.428985907467094],\n              [58.034318475176605, 20.481437486243337],\n              [57.826372511634105, 20.24300242764863],\n              [57.665762160070955, 19.73600495043307],\n              [57.788700392493325, 19.067570298737678],\n              [57.694390903560645, 18.94470958096376],\n              [57.234263950433814, 18.947991034414287],\n              [56.60965091332193, 18.574267076079465],\n              [56.51218916201947, 18.087113348863966],\n              [56.28352094912793, 17.876066799383963],\n              [55.66149173363064, 17.884128322821496],\n              [55.26993940615512, 17.632309068263197],\n              [55.27490034365513, 17.22835439703762],\n              [54.79100223167404, 16.95069692633338],\n              [54.23925296409371, 17.044980577049913],\n              [53.570508253804576, 16.707662665264706],\n              [53.10857262554751, 16.651051133688952],\n              [52.78218427919205, 17.349742336491232],\n              [52.00000980002224, 19.000003363516058],\n              [54.99998172386236, 19.999994004796108],\n              [55.666659376859826, 22.00000112557234],\n              [55.208341098863194, 22.708329982997046]\n            ]\n          ],\n          [\n            [\n              [56.261041701080956, 25.71460643157677],\n              [56.07082075381456, 26.05546417897398],\n              [56.36201744977927, 26.39593435312898],\n              [56.48567915225374, 26.309117946878633],\n              [56.39142133975335, 25.895990708921246],\n              [56.261041701080956, 25.71460643157677]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Uzbekistan\",\n        \"sov_a3\": \"UZB\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Uzbekistan\",\n        \"adm0_a3\": \"UZB\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Uzbekistan\",\n        \"gu_a3\": \"UZB\",\n        \"su_dif\": 0,\n        \"subunit\": \"Uzbekistan\",\n        \"su_a3\": \"UZB\",\n        \"brk_diff\": 0,\n        \"name\": \"Uzbekistan\",\n        \"name_long\": \"Uzbekistan\",\n        \"brk_a3\": \"UZB\",\n        \"brk_name\": \"Uzbekistan\",\n        \"brk_group\": null,\n        \"abbrev\": \"Uzb.\",\n        \"postal\": \"UZ\",\n        \"formal_en\": \"Republic of Uzbekistan\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Uzbekistan\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Uzbekistan\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 4,\n        \"pop_est\": 33580650,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 57921,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"UZ\",\n        \"iso_a2\": \"UZ\",\n        \"iso_a2_eh\": \"UZ\",\n        \"iso_a3\": \"UZB\",\n        \"iso_a3_eh\": \"UZB\",\n        \"iso_n3\": \"860\",\n        \"iso_n3_eh\": \"860\",\n        \"un_a3\": \"860\",\n        \"wb_a2\": \"UZ\",\n        \"wb_a3\": \"UZB\",\n        \"woe_id\": 23424980,\n        \"woe_id_eh\": 23424980,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"UZB\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"UZB\",\n        \"adm0_a3_us\": \"UZB\",\n        \"adm0_a3_fr\": \"UZB\",\n        \"adm0_a3_ru\": \"UZB\",\n        \"adm0_a3_es\": \"UZB\",\n        \"adm0_a3_cn\": \"UZB\",\n        \"adm0_a3_tw\": \"UZB\",\n        \"adm0_a3_in\": \"UZB\",\n        \"adm0_a3_np\": \"UZB\",\n        \"adm0_a3_pk\": \"UZB\",\n        \"adm0_a3_de\": \"UZB\",\n        \"adm0_a3_gb\": \"UZB\",\n        \"adm0_a3_br\": \"UZB\",\n        \"adm0_a3_il\": \"UZB\",\n        \"adm0_a3_ps\": \"UZB\",\n        \"adm0_a3_sa\": \"UZB\",\n        \"adm0_a3_eg\": \"UZB\",\n        \"adm0_a3_ma\": \"UZB\",\n        \"adm0_a3_pt\": \"UZB\",\n        \"adm0_a3_ar\": \"UZB\",\n        \"adm0_a3_jp\": \"UZB\",\n        \"adm0_a3_ko\": \"UZB\",\n        \"adm0_a3_vn\": \"UZB\",\n        \"adm0_a3_tr\": \"UZB\",\n        \"adm0_a3_id\": \"UZB\",\n        \"adm0_a3_pl\": \"UZB\",\n        \"adm0_a3_gr\": \"UZB\",\n        \"adm0_a3_it\": \"UZB\",\n        \"adm0_a3_nl\": \"UZB\",\n        \"adm0_a3_se\": \"UZB\",\n        \"adm0_a3_bd\": \"UZB\",\n        \"adm0_a3_ua\": \"UZB\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Central Asia\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 10,\n        \"long_len\": 10,\n        \"abbrev_len\": 4,\n        \"tiny\": 5,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 64.005429,\n        \"label_y\": 41.693603,\n        \"ne_id\": 1159321405,\n        \"wikidataid\": \"Q265\",\n        \"name_ar\": \"أوزبكستان\",\n        \"name_bn\": \"উজবেকিস্তান\",\n        \"name_de\": \"Usbekistan\",\n        \"name_en\": \"Uzbekistan\",\n        \"name_es\": \"Uzbekistán\",\n        \"name_fa\": \"ازبکستان\",\n        \"name_fr\": \"Ouzbékistan\",\n        \"name_el\": \"Ουζμπεκιστάν\",\n        \"name_he\": \"אוזבקיסטן\",\n        \"name_hi\": \"उज़्बेकिस्तान\",\n        \"name_hu\": \"Üzbegisztán\",\n        \"name_id\": \"Uzbekistan\",\n        \"name_it\": \"Uzbekistan\",\n        \"name_ja\": \"ウズベキスタン\",\n        \"name_ko\": \"우즈베키스탄\",\n        \"name_nl\": \"Oezbekistan\",\n        \"name_pl\": \"Uzbekistan\",\n        \"name_pt\": \"Uzbequistão\",\n        \"name_ru\": \"Узбекистан\",\n        \"name_sv\": \"Uzbekistan\",\n        \"name_tr\": \"Özbekistan\",\n        \"name_uk\": \"Узбекистан\",\n        \"name_ur\": \"ازبکستان\",\n        \"name_vi\": \"Uzbekistan\",\n        \"name_zh\": \"乌兹别克斯坦\",\n        \"name_zht\": \"烏茲別克\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"UZB.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [55.96819135928291, 41.30864166926936],\n            [55.928917270741096, 44.99585846615911],\n            [58.50312706892845, 45.586804307632974],\n            [58.68998904809581, 45.50001373959873],\n            [60.23997195825834, 44.78403677019473],\n            [61.05831994003245, 44.40581696225051],\n            [62.01330040878625, 43.50447663021565],\n            [63.18578698105657, 43.650074978198006],\n            [64.90082441595928, 43.72808055274258],\n            [66.09801232286509, 42.997660020513095],\n            [66.02339155463562, 41.99464630794404],\n            [66.51064863471572, 41.987644151368556],\n            [66.71404707221652, 41.1684435084615],\n            [67.98585574735182, 41.13599070898222],\n            [68.25989586779562, 40.6623245305949],\n            [68.63248294462002, 40.66868073176681],\n            [69.07002729683524, 41.38424428971234],\n            [70.3889648782208, 42.08130768489745],\n            [70.96231489449914, 42.266154283205495],\n            [71.25924767444823, 42.16771067968946],\n            [70.42002241402821, 41.51999827734314],\n            [71.1578585142916, 41.14358714452912],\n            [71.87011478057047, 41.392900092121266],\n            [73.05541710804917, 40.866033026689465],\n            [71.77487511585656, 40.14584442805378],\n            [71.01419803252017, 40.24436554621823],\n            [70.60140669137269, 40.21852733007229],\n            [70.45815962105962, 40.49649485937029],\n            [70.66662234892505, 40.960213324541414],\n            [69.32949466337283, 40.72782440852485],\n            [69.0116329283455, 40.08615814875667],\n            [68.53641645698943, 39.53345286717894],\n            [67.70142866401736, 39.58047842056453],\n            [67.44221967964131, 39.140143541005486],\n            [68.17602501818592, 38.901553453113905],\n            [68.39203250516596, 38.15702525486874],\n            [67.82999962755952, 37.144994004864685],\n            [67.07578209825962, 37.35614390720929],\n            [66.51860680528867, 37.36278432875879],\n            [66.54615034370022, 37.97468496352687],\n            [65.2159989765074, 38.4026950139843],\n            [64.17022301621677, 38.892406724598246],\n            [63.51801476426103, 39.36325653742564],\n            [62.374260288345006, 40.05388621679039],\n            [61.88271406438469, 41.084856879229406],\n            [61.54717898951356, 41.266370347654615],\n            [60.465952996670694, 41.22032664648255],\n            [60.083340691981675, 41.425146185871405],\n            [59.976422153569786, 42.22308197689021],\n            [58.62901085799146, 42.75155101172305],\n            [57.78652998233708, 42.17055288346552],\n            [56.932215203687804, 41.826026109375604],\n            [57.0963912290791, 41.32231008561057],\n            [55.96819135928291, 41.30864166926936]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Kazakhstan\",\n        \"sov_a3\": \"KA1\",\n        \"adm0_dif\": 1,\n        \"level\": 1,\n        \"type\": \"Sovereignty\",\n        \"tlc\": \"1\",\n        \"admin\": \"Kazakhstan\",\n        \"adm0_a3\": \"KAZ\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Kazakhstan\",\n        \"gu_a3\": \"KAZ\",\n        \"su_dif\": 0,\n        \"subunit\": \"Kazakhstan\",\n        \"su_a3\": \"KAZ\",\n        \"brk_diff\": 0,\n        \"name\": \"Kazakhstan\",\n        \"name_long\": \"Kazakhstan\",\n        \"brk_a3\": \"KAZ\",\n        \"brk_name\": \"Kazakhstan\",\n        \"brk_group\": null,\n        \"abbrev\": \"Kaz.\",\n        \"postal\": \"KZ\",\n        \"formal_en\": \"Republic of Kazakhstan\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Kazakhstan\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Kazakhstan\",\n        \"name_alt\": null,\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 6,\n        \"mapcolor13\": 1,\n        \"pop_est\": 18513930,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 181665,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"KZ\",\n        \"iso_a2\": \"KZ\",\n        \"iso_a2_eh\": \"KZ\",\n        \"iso_a3\": \"KAZ\",\n        \"iso_a3_eh\": \"KAZ\",\n        \"iso_n3\": \"398\",\n        \"iso_n3_eh\": \"398\",\n        \"un_a3\": \"398\",\n        \"wb_a2\": \"KZ\",\n        \"wb_a3\": \"KAZ\",\n        \"woe_id\": -90,\n        \"woe_id_eh\": 23424871,\n        \"woe_note\": \"Includes Baykonur Cosmodrome as an Admin-1 states provinces\",\n        \"adm0_iso\": \"KAZ\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"KAZ\",\n        \"adm0_a3_us\": \"KAZ\",\n        \"adm0_a3_fr\": \"KAZ\",\n        \"adm0_a3_ru\": \"KAZ\",\n        \"adm0_a3_es\": \"KAZ\",\n        \"adm0_a3_cn\": \"KAZ\",\n        \"adm0_a3_tw\": \"KAZ\",\n        \"adm0_a3_in\": \"KAZ\",\n        \"adm0_a3_np\": \"KAZ\",\n        \"adm0_a3_pk\": \"KAZ\",\n        \"adm0_a3_de\": \"KAZ\",\n        \"adm0_a3_gb\": \"KAZ\",\n        \"adm0_a3_br\": \"KAZ\",\n        \"adm0_a3_il\": \"KAZ\",\n        \"adm0_a3_ps\": \"KAZ\",\n        \"adm0_a3_sa\": \"KAZ\",\n        \"adm0_a3_eg\": \"KAZ\",\n        \"adm0_a3_ma\": \"KAZ\",\n        \"adm0_a3_pt\": \"KAZ\",\n        \"adm0_a3_ar\": \"KAZ\",\n        \"adm0_a3_jp\": \"KAZ\",\n        \"adm0_a3_ko\": \"KAZ\",\n        \"adm0_a3_vn\": \"KAZ\",\n        \"adm0_a3_tr\": \"KAZ\",\n        \"adm0_a3_id\": \"KAZ\",\n        \"adm0_a3_pl\": \"KAZ\",\n        \"adm0_a3_gr\": \"KAZ\",\n        \"adm0_a3_it\": \"KAZ\",\n        \"adm0_a3_nl\": \"KAZ\",\n        \"adm0_a3_se\": \"KAZ\",\n        \"adm0_a3_bd\": \"KAZ\",\n        \"adm0_a3_ua\": \"KAZ\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Central Asia\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 10,\n        \"long_len\": 10,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.7,\n        \"max_label\": 7,\n        \"label_x\": 68.685548,\n        \"label_y\": 49.054149,\n        \"ne_id\": 1159320967,\n        \"wikidataid\": \"Q232\",\n        \"name_ar\": \"كازاخستان\",\n        \"name_bn\": \"কাজাখস্তান\",\n        \"name_de\": \"Kasachstan\",\n        \"name_en\": \"Kazakhstan\",\n        \"name_es\": \"Kazajistán\",\n        \"name_fa\": \"قزاقستان\",\n        \"name_fr\": \"Kazakhstan\",\n        \"name_el\": \"Καζακστάν\",\n        \"name_he\": \"קזחסטן\",\n        \"name_hi\": \"कज़ाख़िस्तान\",\n        \"name_hu\": \"Kazahsztán\",\n        \"name_id\": \"Kazakhstan\",\n        \"name_it\": \"Kazakistan\",\n        \"name_ja\": \"カザフスタン\",\n        \"name_ko\": \"카자흐스탄\",\n        \"name_nl\": \"Kazachstan\",\n        \"name_pl\": \"Kazachstan\",\n        \"name_pt\": \"Cazaquistão\",\n        \"name_ru\": \"Казахстан\",\n        \"name_sv\": \"Kazakstan\",\n        \"name_tr\": \"Kazakistan\",\n        \"name_uk\": \"Казахстан\",\n        \"name_ur\": \"قازقستان\",\n        \"name_vi\": \"Kazakhstan\",\n        \"name_zh\": \"哈萨克斯坦\",\n        \"name_zht\": \"哈薩克\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"KAZ.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [87.35997033076265, 49.21498078062912],\n            [86.59877648310336, 48.549181626980626],\n            [85.7682328633083, 48.45575063739699],\n            [85.72048383987067, 47.452969468773105],\n            [85.16429039911324, 47.0009557155161],\n            [83.18048383986047, 47.33003123635086],\n            [82.45892581576906, 45.539649563166506],\n            [81.9470707539181, 45.31702749285312],\n            [79.96610639844141, 44.91751699480463],\n            [80.86620649610126, 43.18036204688101],\n            [80.1801501809943, 42.92006785742694],\n            [80.2599902688853, 42.34999929459906],\n            [79.64364546094012, 42.49668284765953],\n            [79.14217736197978, 42.85609243424952],\n            [77.65839196158322, 42.96068553320826],\n            [76.00035363149846, 42.98802236589067],\n            [75.63696495962202, 42.87789988867668],\n            [74.21286583852256, 43.29833934180337],\n            [73.64530358266092, 43.09127187760987],\n            [73.48975752146237, 42.50089447689132],\n            [71.8446382994506, 42.8453954127651],\n            [71.18628055205212, 42.70429291439214],\n            [70.96231489449914, 42.266154283205495],\n            [70.3889648782208, 42.08130768489745],\n            [69.07002729683524, 41.38424428971234],\n            [68.63248294462002, 40.66868073176681],\n            [68.25989586779562, 40.6623245305949],\n            [67.98585574735182, 41.13599070898222],\n            [66.71404707221652, 41.1684435084615],\n            [66.51064863471572, 41.987644151368556],\n            [66.02339155463562, 41.99464630794404],\n            [66.09801232286509, 42.997660020513095],\n            [64.90082441595928, 43.72808055274258],\n            [63.18578698105657, 43.650074978198006],\n            [62.01330040878625, 43.50447663021565],\n            [61.05831994003245, 44.40581696225051],\n            [60.23997195825834, 44.78403677019473],\n            [58.68998904809581, 45.50001373959873],\n            [58.50312706892845, 45.586804307632974],\n            [55.928917270741096, 44.99585846615911],\n            [55.96819135928291, 41.30864166926936],\n            [55.45525109235377, 41.25985911718584],\n            [54.75534549339264, 42.043971462566574],\n            [54.07941775901495, 42.32410940202083],\n            [52.944293247291654, 42.11603424739759],\n            [52.50245975119615, 41.78331553808637],\n            [52.44633914572722, 42.027150783855575],\n            [52.692112257707265, 42.44389537207337],\n            [52.50142622255032, 42.7922978785852],\n            [51.342427199108215, 43.132974758469345],\n            [50.89129194520024, 44.03103363705378],\n            [50.339129266161365, 44.284015611338475],\n            [50.30564293803627, 44.609835516938915],\n            [51.278503452363225, 44.51485423438646],\n            [51.31689904155604, 45.2459982366679],\n            [52.16738976421573, 45.40839142514511],\n            [53.0408764992452, 45.25904653582177],\n            [53.220865512917726, 46.234645901059935],\n            [53.042736850807785, 46.85300608986449],\n            [52.04202273947561, 46.80463694923924],\n            [51.191945428274266, 47.048704738953916],\n            [50.03408328634248, 46.60898997658222],\n            [49.10116000000011, 46.399330000000134],\n            [48.59325000000018, 46.56104],\n            [48.694733514201744, 47.07562816017793],\n            [48.05725, 47.74377],\n            [47.31524000000013, 47.7158500000001],\n            [46.46644575377627, 48.39415233010493],\n            [47.04367150247651, 49.152038886097614],\n            [46.75159630716274, 49.35600576435377],\n            [47.54948042174931, 50.454698391311126],\n            [48.57784142435753, 49.87475962991567],\n            [48.70238162618102, 50.60512848571284],\n            [50.76664839051216, 51.6927623561599],\n            [52.32872358583097, 51.718652248738124],\n            [54.532878452376224, 51.02623973245932],\n            [55.71694, 50.62171000000018],\n            [56.77798000000013, 51.04355],\n            [58.36332, 51.06364],\n            [59.642282342370606, 50.545442206415714],\n            [59.93280724471549, 50.842194118851864],\n            [61.337424350840934, 50.79907013610426],\n            [61.58800337102417, 51.272658799843214],\n            [59.967533807215545, 51.9604204372157],\n            [60.92726850774028, 52.44754832621504],\n            [60.73999311711458, 52.71998647725775],\n            [61.699986199800605, 52.97999644633427],\n            [60.978066440683165, 53.66499339457914],\n            [61.43660000000017, 54.00625],\n            [65.17853356309593, 54.35422781027211],\n            [65.66687, 54.60125000000011],\n            [68.16910037625883, 54.97039175070432],\n            [69.06816694527288, 55.38525014914353],\n            [70.86526655465514, 55.169733588270105],\n            [71.18013105660941, 54.13328522400826],\n            [72.22415001820218, 54.376655381886735],\n            [73.5085160663844, 54.0356167669766],\n            [73.42567874542044, 53.489810289109755],\n            [74.38482000000016, 53.54685000000012],\n            [76.89110029491343, 54.49052440044193],\n            [76.52517947785475, 54.17700348572714],\n            [77.80091556184425, 53.404414984747575],\n            [80.03555952344169, 50.86475088154725],\n            [80.56844689323549, 51.38833649352847],\n            [81.94598554883993, 50.81219594990637],\n            [83.38300377801238, 51.069182847693924],\n            [83.93511478061885, 50.88924551045358],\n            [84.41637739455308, 50.311399644565824],\n            [85.11555952346203, 50.11730296487764],\n            [85.54126997268247, 49.69285858824816],\n            [86.82935672398963, 49.82667470966817],\n            [87.35997033076265, 49.21498078062912]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Tajikistan\",\n        \"sov_a3\": \"TJK\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Tajikistan\",\n        \"adm0_a3\": \"TJK\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Tajikistan\",\n        \"gu_a3\": \"TJK\",\n        \"su_dif\": 0,\n        \"subunit\": \"Tajikistan\",\n        \"su_a3\": \"TJK\",\n        \"brk_diff\": 0,\n        \"name\": \"Tajikistan\",\n        \"name_long\": \"Tajikistan\",\n        \"brk_a3\": \"TJK\",\n        \"brk_name\": \"Tajikistan\",\n        \"brk_group\": null,\n        \"abbrev\": \"Tjk.\",\n        \"postal\": \"TJ\",\n        \"formal_en\": \"Republic of Tajikistan\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Tajikistan\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Tajikistan\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 5,\n        \"pop_est\": 9321018,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 8116,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"TI\",\n        \"iso_a2\": \"TJ\",\n        \"iso_a2_eh\": \"TJ\",\n        \"iso_a3\": \"TJK\",\n        \"iso_a3_eh\": \"TJK\",\n        \"iso_n3\": \"762\",\n        \"iso_n3_eh\": \"762\",\n        \"un_a3\": \"762\",\n        \"wb_a2\": \"TJ\",\n        \"wb_a3\": \"TJK\",\n        \"woe_id\": 23424961,\n        \"woe_id_eh\": 23424961,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"TJK\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"TJK\",\n        \"adm0_a3_us\": \"TJK\",\n        \"adm0_a3_fr\": \"TJK\",\n        \"adm0_a3_ru\": \"TJK\",\n        \"adm0_a3_es\": \"TJK\",\n        \"adm0_a3_cn\": \"TJK\",\n        \"adm0_a3_tw\": \"TJK\",\n        \"adm0_a3_in\": \"TJK\",\n        \"adm0_a3_np\": \"TJK\",\n        \"adm0_a3_pk\": \"TJK\",\n        \"adm0_a3_de\": \"TJK\",\n        \"adm0_a3_gb\": \"TJK\",\n        \"adm0_a3_br\": \"TJK\",\n        \"adm0_a3_il\": \"TJK\",\n        \"adm0_a3_ps\": \"TJK\",\n        \"adm0_a3_sa\": \"TJK\",\n        \"adm0_a3_eg\": \"TJK\",\n        \"adm0_a3_ma\": \"TJK\",\n        \"adm0_a3_pt\": \"TJK\",\n        \"adm0_a3_ar\": \"TJK\",\n        \"adm0_a3_jp\": \"TJK\",\n        \"adm0_a3_ko\": \"TJK\",\n        \"adm0_a3_vn\": \"TJK\",\n        \"adm0_a3_tr\": \"TJK\",\n        \"adm0_a3_id\": \"TJK\",\n        \"adm0_a3_pl\": \"TJK\",\n        \"adm0_a3_gr\": \"TJK\",\n        \"adm0_a3_it\": \"TJK\",\n        \"adm0_a3_nl\": \"TJK\",\n        \"adm0_a3_se\": \"TJK\",\n        \"adm0_a3_bd\": \"TJK\",\n        \"adm0_a3_ua\": \"TJK\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Central Asia\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 10,\n        \"long_len\": 10,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 72.587276,\n        \"label_y\": 38.199835,\n        \"ne_id\": 1159321307,\n        \"wikidataid\": \"Q863\",\n        \"name_ar\": \"طاجيكستان\",\n        \"name_bn\": \"তাজিকিস্তান\",\n        \"name_de\": \"Tadschikistan\",\n        \"name_en\": \"Tajikistan\",\n        \"name_es\": \"Tayikistán\",\n        \"name_fa\": \"تاجیکستان\",\n        \"name_fr\": \"Tadjikistan\",\n        \"name_el\": \"Τατζικιστάν\",\n        \"name_he\": \"טג׳יקיסטן\",\n        \"name_hi\": \"ताजिकिस्तान\",\n        \"name_hu\": \"Tádzsikisztán\",\n        \"name_id\": \"Tajikistan\",\n        \"name_it\": \"Tagikistan\",\n        \"name_ja\": \"タジキスタン\",\n        \"name_ko\": \"타지키스탄\",\n        \"name_nl\": \"Tadzjikistan\",\n        \"name_pl\": \"Tadżykistan\",\n        \"name_pt\": \"Tajiquistão\",\n        \"name_ru\": \"Таджикистан\",\n        \"name_sv\": \"Tadzjikistan\",\n        \"name_tr\": \"Tacikistan\",\n        \"name_uk\": \"Таджикистан\",\n        \"name_ur\": \"تاجکستان\",\n        \"name_vi\": \"Tajikistan\",\n        \"name_zh\": \"塔吉克斯坦\",\n        \"name_zht\": \"塔吉克\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"TJK.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [67.82999962755952, 37.144994004864685],\n            [68.39203250516596, 38.15702525486874],\n            [68.17602501818592, 38.901553453113905],\n            [67.44221967964131, 39.140143541005486],\n            [67.70142866401736, 39.58047842056453],\n            [68.53641645698943, 39.53345286717894],\n            [69.0116329283455, 40.08615814875667],\n            [69.32949466337283, 40.72782440852485],\n            [70.66662234892505, 40.960213324541414],\n            [70.45815962105962, 40.49649485937029],\n            [70.60140669137269, 40.21852733007229],\n            [71.01419803252017, 40.24436554621823],\n            [70.64801883329997, 39.93575389257117],\n            [69.55960981636852, 40.10321137141298],\n            [69.46488691597753, 39.5266832545487],\n            [70.54916181832562, 39.6041979029865],\n            [71.784693637992, 39.27946320246437],\n            [73.6753792662548, 39.4312368841056],\n            [73.92885216664644, 38.50581533462274],\n            [74.25751427602273, 38.60650686294345],\n            [74.86481570831683, 38.3788463404816],\n            [74.8299857929521, 37.9900070257014],\n            [74.98000247589542, 37.419990139305895],\n            [73.9486959166465, 37.4215662704908],\n            [73.26005577992501, 37.495256862939],\n            [72.63688968291729, 37.047558091778356],\n            [72.1930408059624, 36.948287665345674],\n            [71.8446382994506, 36.73817129164692],\n            [71.44869347523024, 37.06564484308052],\n            [71.54191775908478, 37.905774441065645],\n            [71.23940392444817, 37.953265082341886],\n            [71.34813113799026, 38.25890534113216],\n            [70.80682050973289, 38.486281643216415],\n            [70.3763041523093, 38.13839590102752],\n            [70.27057417184014, 37.735164699854025],\n            [70.11657840361033, 37.58822276463209],\n            [69.51878543485796, 37.60899669041342],\n            [69.19627282092438, 37.15114350030743],\n            [68.85944583524594, 37.344335842430596],\n            [68.13556237170138, 37.02311513930431],\n            [67.82999962755952, 37.144994004864685]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Mongolia\",\n        \"sov_a3\": \"MNG\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Mongolia\",\n        \"adm0_a3\": \"MNG\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Mongolia\",\n        \"gu_a3\": \"MNG\",\n        \"su_dif\": 0,\n        \"subunit\": \"Mongolia\",\n        \"su_a3\": \"MNG\",\n        \"brk_diff\": 0,\n        \"name\": \"Mongolia\",\n        \"name_long\": \"Mongolia\",\n        \"brk_a3\": \"MNG\",\n        \"brk_name\": \"Mongolia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Mong.\",\n        \"postal\": \"MN\",\n        \"formal_en\": \"Mongolia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Mongolia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Mongolia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 6,\n        \"pop_est\": 3225167,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 13996,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"MG\",\n        \"iso_a2\": \"MN\",\n        \"iso_a2_eh\": \"MN\",\n        \"iso_a3\": \"MNG\",\n        \"iso_a3_eh\": \"MNG\",\n        \"iso_n3\": \"496\",\n        \"iso_n3_eh\": \"496\",\n        \"un_a3\": \"496\",\n        \"wb_a2\": \"MN\",\n        \"wb_a3\": \"MNG\",\n        \"woe_id\": 23424887,\n        \"woe_id_eh\": 23424887,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"MNG\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"MNG\",\n        \"adm0_a3_us\": \"MNG\",\n        \"adm0_a3_fr\": \"MNG\",\n        \"adm0_a3_ru\": \"MNG\",\n        \"adm0_a3_es\": \"MNG\",\n        \"adm0_a3_cn\": \"MNG\",\n        \"adm0_a3_tw\": \"MNG\",\n        \"adm0_a3_in\": \"MNG\",\n        \"adm0_a3_np\": \"MNG\",\n        \"adm0_a3_pk\": \"MNG\",\n        \"adm0_a3_de\": \"MNG\",\n        \"adm0_a3_gb\": \"MNG\",\n        \"adm0_a3_br\": \"MNG\",\n        \"adm0_a3_il\": \"MNG\",\n        \"adm0_a3_ps\": \"MNG\",\n        \"adm0_a3_sa\": \"MNG\",\n        \"adm0_a3_eg\": \"MNG\",\n        \"adm0_a3_ma\": \"MNG\",\n        \"adm0_a3_pt\": \"MNG\",\n        \"adm0_a3_ar\": \"MNG\",\n        \"adm0_a3_jp\": \"MNG\",\n        \"adm0_a3_ko\": \"MNG\",\n        \"adm0_a3_vn\": \"MNG\",\n        \"adm0_a3_tr\": \"MNG\",\n        \"adm0_a3_id\": \"MNG\",\n        \"adm0_a3_pl\": \"MNG\",\n        \"adm0_a3_gr\": \"MNG\",\n        \"adm0_a3_it\": \"MNG\",\n        \"adm0_a3_nl\": \"MNG\",\n        \"adm0_a3_se\": \"MNG\",\n        \"adm0_a3_bd\": \"MNG\",\n        \"adm0_a3_ua\": \"MNG\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Eastern Asia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 7,\n        \"label_x\": 104.150405,\n        \"label_y\": 45.997488,\n        \"ne_id\": 1159321071,\n        \"wikidataid\": \"Q711\",\n        \"name_ar\": \"منغوليا\",\n        \"name_bn\": \"মঙ্গোলিয়া\",\n        \"name_de\": \"Mongolei\",\n        \"name_en\": \"Mongolia\",\n        \"name_es\": \"Mongolia\",\n        \"name_fa\": \"مغولستان\",\n        \"name_fr\": \"Mongolie\",\n        \"name_el\": \"Μογγολία\",\n        \"name_he\": \"מונגוליה\",\n        \"name_hi\": \"मंगोलिया\",\n        \"name_hu\": \"Mongólia\",\n        \"name_id\": \"Mongolia\",\n        \"name_it\": \"Mongolia\",\n        \"name_ja\": \"モンゴル国\",\n        \"name_ko\": \"몽골\",\n        \"name_nl\": \"Mongolië\",\n        \"name_pl\": \"Mongolia\",\n        \"name_pt\": \"Mongólia\",\n        \"name_ru\": \"Монголия\",\n        \"name_sv\": \"Mongoliet\",\n        \"name_tr\": \"Moğolistan\",\n        \"name_uk\": \"Монголія\",\n        \"name_ur\": \"منگولیا\",\n        \"name_vi\": \"Mông Cổ\",\n        \"name_zh\": \"蒙古国\",\n        \"name_zht\": \"蒙古國\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"MNG.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [87.75126427607671, 49.297197984405486],\n            [88.80556684769552, 49.47052073831242],\n            [90.71366743364068, 50.33181183532109],\n            [92.23471154171968, 50.80217072204172],\n            [93.10421, 50.49529],\n            [94.14756635943559, 50.48053660745717],\n            [94.81594933469873, 50.01343333597085],\n            [95.8140200000002, 49.97746000000012],\n            [97.25976000000014, 49.72605],\n            [98.23176150919156, 50.422400621128745],\n            [97.82573978067431, 51.01099518493318],\n            [98.86149051310034, 52.04736603454669],\n            [99.98173221232354, 51.63400625264399],\n            [100.88948042196262, 51.51685578063832],\n            [102.06521, 51.25991],\n            [102.25589, 50.51056000000011],\n            [103.67654544476022, 50.089966132195116],\n            [104.62158, 50.27532000000019],\n            [105.88659142458675, 50.406019192092224],\n            [106.8888041524553, 50.27429596618032],\n            [107.86817589725095, 49.793705145865815],\n            [108.47516727095129, 49.28254771585074],\n            [109.40244917199664, 49.292960516957635],\n            [110.66201053267878, 49.13012807880585],\n            [111.58123091028662, 49.37796824807769],\n            [112.89773969935436, 49.54356537535699],\n            [114.36245649623527, 50.24830272073741],\n            [114.96210981655018, 50.140247300815126],\n            [115.48569542853136, 49.80517731383475],\n            [116.67880089728612, 49.888531399121405],\n            [116.19180219936757, 49.134598090199106],\n            [115.48528201707306, 48.13538259540344],\n            [115.74283735561579, 47.72654450132629],\n            [116.30895267137323, 47.85341014260284],\n            [117.29550744025741, 47.69770905210743],\n            [118.06414269416672, 48.06673045510369],\n            [118.86657433479495, 47.74706004494617],\n            [119.7728239278975, 47.04805878355013],\n            [119.66326989143876, 46.69267995867892],\n            [118.87432579963873, 46.80541209572365],\n            [117.42170128791419, 46.67273285581426],\n            [116.71786828009886, 46.38820241961521],\n            [115.98509647020009, 45.727235012386004],\n            [114.46033165899607, 45.339816799493825],\n            [113.46390669154417, 44.80889313412712],\n            [112.43606245325881, 45.01164561622429],\n            [111.8733061056003, 45.10207937273506],\n            [111.34837690637946, 44.45744171811009],\n            [111.66773725794323, 44.07317576758771],\n            [111.82958784388137, 43.74311839453952],\n            [111.12968224492023, 43.40683401140015],\n            [110.41210330611528, 42.87123362891103],\n            [109.24359581913146, 42.5194463160841],\n            [107.74477257693795, 42.48151581478187],\n            [106.12931562706169, 42.13432770442891],\n            [104.96499393109347, 41.59740957291635],\n            [104.52228193564899, 41.908346666016556],\n            [103.31227827353482, 41.9074681666676],\n            [101.83304039917994, 42.51487295182628],\n            [100.84586551310827, 42.66380442969145],\n            [99.51581749878004, 42.524691473961724],\n            [97.45175744017801, 42.74888967546002],\n            [96.34939578652781, 42.725635280928685],\n            [95.76245486855669, 43.319449164394605],\n            [95.30687544147153, 44.24133087826547],\n            [94.68892866412533, 44.35233185482842],\n            [93.4807336771413, 44.975472113619965],\n            [92.13389082231822, 45.11507599545646],\n            [90.9455395853343, 45.28607330991028],\n            [90.58576826371828, 45.71971609148753],\n            [90.97080936072501, 46.88814606382293],\n            [90.28082563676392, 47.69354909930793],\n            [88.85429772334676, 48.069081732772965],\n            [88.01383222855173, 48.599462795600616],\n            [87.75126427607671, 49.297197984405486]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Vietnam\",\n        \"sov_a3\": \"VNM\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Vietnam\",\n        \"adm0_a3\": \"VNM\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Vietnam\",\n        \"gu_a3\": \"VNM\",\n        \"su_dif\": 0,\n        \"subunit\": \"Vietnam\",\n        \"su_a3\": \"VNM\",\n        \"brk_diff\": 0,\n        \"name\": \"Vietnam\",\n        \"name_long\": \"Vietnam\",\n        \"brk_a3\": \"VNM\",\n        \"brk_name\": \"Vietnam\",\n        \"brk_group\": null,\n        \"abbrev\": \"Viet.\",\n        \"postal\": \"VN\",\n        \"formal_en\": \"Socialist Republic of Vietnam\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Vietnam\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Vietnam\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 4,\n        \"pop_est\": 96462106,\n        \"pop_rank\": 16,\n        \"pop_year\": 2019,\n        \"gdp_md\": 261921,\n        \"gdp_year\": 2019,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"VM\",\n        \"iso_a2\": \"VN\",\n        \"iso_a2_eh\": \"VN\",\n        \"iso_a3\": \"VNM\",\n        \"iso_a3_eh\": \"VNM\",\n        \"iso_n3\": \"704\",\n        \"iso_n3_eh\": \"704\",\n        \"un_a3\": \"704\",\n        \"wb_a2\": \"VN\",\n        \"wb_a3\": \"VNM\",\n        \"woe_id\": 23424984,\n        \"woe_id_eh\": 23424984,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"VNM\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"VNM\",\n        \"adm0_a3_us\": \"VNM\",\n        \"adm0_a3_fr\": \"VNM\",\n        \"adm0_a3_ru\": \"VNM\",\n        \"adm0_a3_es\": \"VNM\",\n        \"adm0_a3_cn\": \"VNM\",\n        \"adm0_a3_tw\": \"VNM\",\n        \"adm0_a3_in\": \"VNM\",\n        \"adm0_a3_np\": \"VNM\",\n        \"adm0_a3_pk\": \"VNM\",\n        \"adm0_a3_de\": \"VNM\",\n        \"adm0_a3_gb\": \"VNM\",\n        \"adm0_a3_br\": \"VNM\",\n        \"adm0_a3_il\": \"VNM\",\n        \"adm0_a3_ps\": \"VNM\",\n        \"adm0_a3_sa\": \"VNM\",\n        \"adm0_a3_eg\": \"VNM\",\n        \"adm0_a3_ma\": \"VNM\",\n        \"adm0_a3_pt\": \"VNM\",\n        \"adm0_a3_ar\": \"VNM\",\n        \"adm0_a3_jp\": \"VNM\",\n        \"adm0_a3_ko\": \"VNM\",\n        \"adm0_a3_vn\": \"VNM\",\n        \"adm0_a3_tr\": \"VNM\",\n        \"adm0_a3_id\": \"VNM\",\n        \"adm0_a3_pl\": \"VNM\",\n        \"adm0_a3_gr\": \"VNM\",\n        \"adm0_a3_it\": \"VNM\",\n        \"adm0_a3_nl\": \"VNM\",\n        \"adm0_a3_se\": \"VNM\",\n        \"adm0_a3_bd\": \"VNM\",\n        \"adm0_a3_ua\": \"VNM\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"South-Eastern Asia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 5,\n        \"tiny\": 2,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2,\n        \"max_label\": 7,\n        \"label_x\": 105.387292,\n        \"label_y\": 21.715416,\n        \"ne_id\": 1159321417,\n        \"wikidataid\": \"Q881\",\n        \"name_ar\": \"فيتنام\",\n        \"name_bn\": \"ভিয়েতনাম\",\n        \"name_de\": \"Vietnam\",\n        \"name_en\": \"Vietnam\",\n        \"name_es\": \"Vietnam\",\n        \"name_fa\": \"ویتنام\",\n        \"name_fr\": \"Viêt Nam\",\n        \"name_el\": \"Βιετνάμ\",\n        \"name_he\": \"וייטנאם\",\n        \"name_hi\": \"वियतनाम\",\n        \"name_hu\": \"Vietnám\",\n        \"name_id\": \"Vietnam\",\n        \"name_it\": \"Vietnam\",\n        \"name_ja\": \"ベトナム\",\n        \"name_ko\": \"베트남\",\n        \"name_nl\": \"Vietnam\",\n        \"name_pl\": \"Wietnam\",\n        \"name_pt\": \"Vietname\",\n        \"name_ru\": \"Вьетнам\",\n        \"name_sv\": \"Vietnam\",\n        \"name_tr\": \"Vietnam\",\n        \"name_uk\": \"В'єтнам\",\n        \"name_ur\": \"ویتنام\",\n        \"name_vi\": \"Việt Nam\",\n        \"name_zh\": \"越南\",\n        \"name_zht\": \"越南\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"VNM.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [104.33433475140347, 10.48654368737523],\n            [105.19991499229235, 10.889309800658097],\n            [106.24967003786946, 10.961811835163587],\n            [105.81052371625313, 11.567614650921229],\n            [107.49140302941089, 12.337205918827948],\n            [107.61454796756243, 13.535530707244206],\n            [107.38272749230109, 14.202440904186972],\n            [107.5645251811039, 15.20217316330556],\n            [107.3127059265456, 15.90853831630318],\n            [106.55600792849569, 16.604283962464805],\n            [105.92576216026403, 17.48531545660896],\n            [105.09459842328152, 18.66697459561108],\n            [103.89653201702671, 19.265180975821806],\n            [104.18338789267894, 19.62466807706022],\n            [104.8225736836971, 19.886641750563882],\n            [104.43500044150805, 20.75873322192153],\n            [103.20386111858645, 20.76656220141375],\n            [102.75489627483466, 21.675137233969465],\n            [102.17043582561358, 22.464753119389304],\n            [102.7069922221001, 22.708795070887675],\n            [103.50451460166056, 22.70375661873921],\n            [104.47685835166448, 22.819150092046968],\n            [105.32920942588663, 23.352063300056912],\n            [105.81124718630522, 22.976892401617903],\n            [106.72540327354847, 22.79426788989842],\n            [106.56727339073532, 22.21820486092477],\n            [107.04342003787264, 21.811898912029914],\n            [108.05018029178294, 21.55237986906012],\n            [106.7150679870901, 20.69685069425202],\n            [105.88168216351903, 19.752050482659698],\n            [105.66200564984631, 19.05816518806057],\n            [106.42681684776602, 18.004120998603227],\n            [107.36195356651974, 16.697456569887052],\n            [108.26949507042963, 16.07974233648615],\n            [108.87710656131748, 15.27669057867044],\n            [109.33526981001722, 13.426028347217724],\n            [109.20013593957398, 11.666859239137764],\n            [108.36612999881545, 11.008320624226272],\n            [107.22092858279524, 10.364483954301832],\n            [106.40511274620343, 9.53083974856932],\n            [105.15826378786511, 8.599759629750494],\n            [104.79518517458239, 9.241038316276502],\n            [105.07620161338562, 9.918490505406808],\n            [104.33433475140347, 10.48654368737523]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Cambodia\",\n        \"sov_a3\": \"KHM\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Cambodia\",\n        \"adm0_a3\": \"KHM\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Cambodia\",\n        \"gu_a3\": \"KHM\",\n        \"su_dif\": 0,\n        \"subunit\": \"Cambodia\",\n        \"su_a3\": \"KHM\",\n        \"brk_diff\": 0,\n        \"name\": \"Cambodia\",\n        \"name_long\": \"Cambodia\",\n        \"brk_a3\": \"KHM\",\n        \"brk_name\": \"Cambodia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Camb.\",\n        \"postal\": \"KH\",\n        \"formal_en\": \"Kingdom of Cambodia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Cambodia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Cambodia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 6,\n        \"mapcolor13\": 5,\n        \"pop_est\": 16486542,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 27089,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"CB\",\n        \"iso_a2\": \"KH\",\n        \"iso_a2_eh\": \"KH\",\n        \"iso_a3\": \"KHM\",\n        \"iso_a3_eh\": \"KHM\",\n        \"iso_n3\": \"116\",\n        \"iso_n3_eh\": \"116\",\n        \"un_a3\": \"116\",\n        \"wb_a2\": \"KH\",\n        \"wb_a3\": \"KHM\",\n        \"woe_id\": 23424776,\n        \"woe_id_eh\": 23424776,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"KHM\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"KHM\",\n        \"adm0_a3_us\": \"KHM\",\n        \"adm0_a3_fr\": \"KHM\",\n        \"adm0_a3_ru\": \"KHM\",\n        \"adm0_a3_es\": \"KHM\",\n        \"adm0_a3_cn\": \"KHM\",\n        \"adm0_a3_tw\": \"KHM\",\n        \"adm0_a3_in\": \"KHM\",\n        \"adm0_a3_np\": \"KHM\",\n        \"adm0_a3_pk\": \"KHM\",\n        \"adm0_a3_de\": \"KHM\",\n        \"adm0_a3_gb\": \"KHM\",\n        \"adm0_a3_br\": \"KHM\",\n        \"adm0_a3_il\": \"KHM\",\n        \"adm0_a3_ps\": \"KHM\",\n        \"adm0_a3_sa\": \"KHM\",\n        \"adm0_a3_eg\": \"KHM\",\n        \"adm0_a3_ma\": \"KHM\",\n        \"adm0_a3_pt\": \"KHM\",\n        \"adm0_a3_ar\": \"KHM\",\n        \"adm0_a3_jp\": \"KHM\",\n        \"adm0_a3_ko\": \"KHM\",\n        \"adm0_a3_vn\": \"KHM\",\n        \"adm0_a3_tr\": \"KHM\",\n        \"adm0_a3_id\": \"KHM\",\n        \"adm0_a3_pl\": \"KHM\",\n        \"adm0_a3_gr\": \"KHM\",\n        \"adm0_a3_it\": \"KHM\",\n        \"adm0_a3_nl\": \"KHM\",\n        \"adm0_a3_se\": \"KHM\",\n        \"adm0_a3_bd\": \"KHM\",\n        \"adm0_a3_ua\": \"KHM\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"South-Eastern Asia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 104.50487,\n        \"label_y\": 12.647584,\n        \"ne_id\": 1159320979,\n        \"wikidataid\": \"Q424\",\n        \"name_ar\": \"كمبوديا\",\n        \"name_bn\": \"কম্বোডিয়া\",\n        \"name_de\": \"Kambodscha\",\n        \"name_en\": \"Cambodia\",\n        \"name_es\": \"Camboya\",\n        \"name_fa\": \"کامبوج\",\n        \"name_fr\": \"Cambodge\",\n        \"name_el\": \"Καμπότζη\",\n        \"name_he\": \"קמבודיה\",\n        \"name_hi\": \"कम्बोडिया\",\n        \"name_hu\": \"Kambodzsa\",\n        \"name_id\": \"Kamboja\",\n        \"name_it\": \"Cambogia\",\n        \"name_ja\": \"カンボジア\",\n        \"name_ko\": \"캄보디아\",\n        \"name_nl\": \"Cambodja\",\n        \"name_pl\": \"Kambodża\",\n        \"name_pt\": \"Camboja\",\n        \"name_ru\": \"Камбоджа\",\n        \"name_sv\": \"Kambodja\",\n        \"name_tr\": \"Kamboçya\",\n        \"name_uk\": \"Камбоджа\",\n        \"name_ur\": \"کمبوڈیا\",\n        \"name_vi\": \"Campuchia\",\n        \"name_zh\": \"柬埔寨\",\n        \"name_zht\": \"柬埔寨\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"KHM.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [102.5849324890267, 12.186594956913282],\n            [102.34809939983302, 13.394247341358223],\n            [102.98842207236163, 14.225721136934467],\n            [104.28141808473661, 14.416743068901367],\n            [105.21877689007889, 14.273211778210694],\n            [106.04394616091552, 13.881091009979956],\n            [106.49637332563088, 14.570583807834282],\n            [107.38272749230109, 14.202440904186972],\n            [107.61454796756243, 13.535530707244206],\n            [107.49140302941089, 12.337205918827948],\n            [105.81052371625313, 11.567614650921229],\n            [106.24967003786946, 10.961811835163587],\n            [105.19991499229235, 10.889309800658097],\n            [104.33433475140347, 10.48654368737523],\n            [103.4972799011397, 10.632555446815928],\n            [103.09068973186726, 11.153660590047165],\n            [102.5849324890267, 12.186594956913282]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"United Arab Emirates\",\n        \"sov_a3\": \"ARE\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"United Arab Emirates\",\n        \"adm0_a3\": \"ARE\",\n        \"geou_dif\": 0,\n        \"geounit\": \"United Arab Emirates\",\n        \"gu_a3\": \"ARE\",\n        \"su_dif\": 0,\n        \"subunit\": \"United Arab Emirates\",\n        \"su_a3\": \"ARE\",\n        \"brk_diff\": 0,\n        \"name\": \"United Arab Emirates\",\n        \"name_long\": \"United Arab Emirates\",\n        \"brk_a3\": \"ARE\",\n        \"brk_name\": \"United Arab Emirates\",\n        \"brk_group\": null,\n        \"abbrev\": \"U.A.E.\",\n        \"postal\": \"AE\",\n        \"formal_en\": \"United Arab Emirates\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"United Arab Emirates\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"United Arab Emirates\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 3,\n        \"pop_est\": 9770529,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 421142,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"2. High income: nonOECD\",\n        \"fips_10\": \"AE\",\n        \"iso_a2\": \"AE\",\n        \"iso_a2_eh\": \"AE\",\n        \"iso_a3\": \"ARE\",\n        \"iso_a3_eh\": \"ARE\",\n        \"iso_n3\": \"784\",\n        \"iso_n3_eh\": \"784\",\n        \"un_a3\": \"784\",\n        \"wb_a2\": \"AE\",\n        \"wb_a3\": \"ARE\",\n        \"woe_id\": 23424738,\n        \"woe_id_eh\": 23424738,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"ARE\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"ARE\",\n        \"adm0_a3_us\": \"ARE\",\n        \"adm0_a3_fr\": \"ARE\",\n        \"adm0_a3_ru\": \"ARE\",\n        \"adm0_a3_es\": \"ARE\",\n        \"adm0_a3_cn\": \"ARE\",\n        \"adm0_a3_tw\": \"ARE\",\n        \"adm0_a3_in\": \"ARE\",\n        \"adm0_a3_np\": \"ARE\",\n        \"adm0_a3_pk\": \"ARE\",\n        \"adm0_a3_de\": \"ARE\",\n        \"adm0_a3_gb\": \"ARE\",\n        \"adm0_a3_br\": \"ARE\",\n        \"adm0_a3_il\": \"ARE\",\n        \"adm0_a3_ps\": \"ARE\",\n        \"adm0_a3_sa\": \"ARE\",\n        \"adm0_a3_eg\": \"ARE\",\n        \"adm0_a3_ma\": \"ARE\",\n        \"adm0_a3_pt\": \"ARE\",\n        \"adm0_a3_ar\": \"ARE\",\n        \"adm0_a3_jp\": \"ARE\",\n        \"adm0_a3_ko\": \"ARE\",\n        \"adm0_a3_vn\": \"ARE\",\n        \"adm0_a3_tr\": \"ARE\",\n        \"adm0_a3_id\": \"ARE\",\n        \"adm0_a3_pl\": \"ARE\",\n        \"adm0_a3_gr\": \"ARE\",\n        \"adm0_a3_it\": \"ARE\",\n        \"adm0_a3_nl\": \"ARE\",\n        \"adm0_a3_se\": \"ARE\",\n        \"adm0_a3_bd\": \"ARE\",\n        \"adm0_a3_ua\": \"ARE\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Western Asia\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 20,\n        \"long_len\": 20,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 54.547256,\n        \"label_y\": 23.466285,\n        \"ne_id\": 1159320329,\n        \"wikidataid\": \"Q878\",\n        \"name_ar\": \"الإمارات العربية المتحدة\",\n        \"name_bn\": \"সংযুক্ত আরব আমিরাত\",\n        \"name_de\": \"Vereinigte Arabische Emirate\",\n        \"name_en\": \"United Arab Emirates\",\n        \"name_es\": \"Emiratos Árabes Unidos\",\n        \"name_fa\": \"امارات متحده عربی\",\n        \"name_fr\": \"Émirats arabes unis\",\n        \"name_el\": \"Ηνωμένα Αραβικά Εμιράτα\",\n        \"name_he\": \"איחוד האמירויות הערביות\",\n        \"name_hi\": \"संयुक्त अरब अमीरात\",\n        \"name_hu\": \"Egyesült Arab Emírségek\",\n        \"name_id\": \"Uni Emirat Arab\",\n        \"name_it\": \"Emirati Arabi Uniti\",\n        \"name_ja\": \"アラブ首長国連邦\",\n        \"name_ko\": \"아랍에미리트\",\n        \"name_nl\": \"Verenigde Arabische Emiraten\",\n        \"name_pl\": \"Zjednoczone Emiraty Arabskie\",\n        \"name_pt\": \"Emirados Árabes Unidos\",\n        \"name_ru\": \"Объединённые Арабские Эмираты\",\n        \"name_sv\": \"Förenade Arabemiraten\",\n        \"name_tr\": \"Birleşik Arap Emirlikleri\",\n        \"name_uk\": \"Об'єднані Арабські Емірати\",\n        \"name_ur\": \"متحدہ عرب امارات\",\n        \"name_vi\": \"Các Tiểu vương quốc Ả Rập Thống nhất\",\n        \"name_zh\": \"阿拉伯联合酋长国\",\n        \"name_zht\": \"阿拉伯聯合大公國\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"ARE.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [51.57951867046327, 24.245497137951105],\n            [51.757440626844186, 24.29407298430547],\n            [51.79438927593287, 24.019826158132506],\n            [52.57708051942561, 24.177439276622707],\n            [53.404006788960146, 24.15131684009917],\n            [54.00800092958758, 24.121757920828216],\n            [54.69302371604863, 24.79789236093509],\n            [55.43902469261414, 25.43914520924494],\n            [56.07082075381456, 26.05546417897398],\n            [56.261041701080956, 25.71460643157677],\n            [56.396847365144005, 24.924732163995486],\n            [55.88623253766801, 24.920830593357447],\n            [55.804118686756226, 24.269604193615265],\n            [55.98121382022046, 24.13054291431783],\n            [55.52863162620824, 23.933604030853502],\n            [55.525841098864475, 23.524869289640932],\n            [55.234489373602884, 23.110992743415324],\n            [55.208341098863194, 22.708329982997046],\n            [55.006803012924905, 22.496947536707136],\n            [52.000733270074335, 23.00115448657894],\n            [51.61770755392698, 24.01421926522883],\n            [51.57951867046327, 24.245497137951105]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Georgia\",\n        \"sov_a3\": \"GEO\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Georgia\",\n        \"adm0_a3\": \"GEO\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Georgia\",\n        \"gu_a3\": \"GEO\",\n        \"su_dif\": 0,\n        \"subunit\": \"Georgia\",\n        \"su_a3\": \"GEO\",\n        \"brk_diff\": 0,\n        \"name\": \"Georgia\",\n        \"name_long\": \"Georgia\",\n        \"brk_a3\": \"GEO\",\n        \"brk_name\": \"Georgia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Geo.\",\n        \"postal\": \"GE\",\n        \"formal_en\": \"Georgia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Georgia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Georgia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 2,\n        \"pop_est\": 3720382,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 17477,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"GG\",\n        \"iso_a2\": \"GE\",\n        \"iso_a2_eh\": \"GE\",\n        \"iso_a3\": \"GEO\",\n        \"iso_a3_eh\": \"GEO\",\n        \"iso_n3\": \"268\",\n        \"iso_n3_eh\": \"268\",\n        \"un_a3\": \"268\",\n        \"wb_a2\": \"GE\",\n        \"wb_a3\": \"GEO\",\n        \"woe_id\": 23424823,\n        \"woe_id_eh\": 23424823,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"GEO\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"GEO\",\n        \"adm0_a3_us\": \"GEO\",\n        \"adm0_a3_fr\": \"GEO\",\n        \"adm0_a3_ru\": \"GEO\",\n        \"adm0_a3_es\": \"GEO\",\n        \"adm0_a3_cn\": \"GEO\",\n        \"adm0_a3_tw\": \"GEO\",\n        \"adm0_a3_in\": \"GEO\",\n        \"adm0_a3_np\": \"GEO\",\n        \"adm0_a3_pk\": \"GEO\",\n        \"adm0_a3_de\": \"GEO\",\n        \"adm0_a3_gb\": \"GEO\",\n        \"adm0_a3_br\": \"GEO\",\n        \"adm0_a3_il\": \"GEO\",\n        \"adm0_a3_ps\": \"GEO\",\n        \"adm0_a3_sa\": \"GEO\",\n        \"adm0_a3_eg\": \"GEO\",\n        \"adm0_a3_ma\": \"GEO\",\n        \"adm0_a3_pt\": \"GEO\",\n        \"adm0_a3_ar\": \"GEO\",\n        \"adm0_a3_jp\": \"GEO\",\n        \"adm0_a3_ko\": \"GEO\",\n        \"adm0_a3_vn\": \"GEO\",\n        \"adm0_a3_tr\": \"GEO\",\n        \"adm0_a3_id\": \"GEO\",\n        \"adm0_a3_pl\": \"GEO\",\n        \"adm0_a3_gr\": \"GEO\",\n        \"adm0_a3_it\": \"GEO\",\n        \"adm0_a3_nl\": \"GEO\",\n        \"adm0_a3_se\": \"GEO\",\n        \"adm0_a3_bd\": \"GEO\",\n        \"adm0_a3_ua\": \"GEO\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Western Asia\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 43.735724,\n        \"label_y\": 41.870087,\n        \"ne_id\": 1159320779,\n        \"wikidataid\": \"Q230\",\n        \"name_ar\": \"جورجيا\",\n        \"name_bn\": \"জর্জিয়া\",\n        \"name_de\": \"Georgien\",\n        \"name_en\": \"Georgia\",\n        \"name_es\": \"Georgia\",\n        \"name_fa\": \"گرجستان\",\n        \"name_fr\": \"Géorgie\",\n        \"name_el\": \"Γεωργία\",\n        \"name_he\": \"גאורגיה\",\n        \"name_hi\": \"जॉर्जिया\",\n        \"name_hu\": \"Grúzia\",\n        \"name_id\": \"Georgia\",\n        \"name_it\": \"Georgia\",\n        \"name_ja\": \"ジョージア\",\n        \"name_ko\": \"조지아\",\n        \"name_nl\": \"Georgië\",\n        \"name_pl\": \"Gruzja\",\n        \"name_pt\": \"Geórgia\",\n        \"name_ru\": \"Грузия\",\n        \"name_sv\": \"Georgien\",\n        \"name_tr\": \"Gürcistan\",\n        \"name_uk\": \"Грузія\",\n        \"name_ur\": \"جارجیا\",\n        \"name_vi\": \"Gruzia\",\n        \"name_zh\": \"格鲁吉亚\",\n        \"name_zht\": \"喬治亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"GEO.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [39.955008579270924, 43.43499766699922],\n            [40.07696495947977, 43.553104153002316],\n            [40.922190000000114, 43.38215000000014],\n            [42.39440000000013, 43.2203],\n            [43.75599000000011, 42.74083],\n            [43.931210000000135, 42.55496000000011],\n            [44.537622918481986, 42.71199270280363],\n            [45.47027916848572, 42.50278066666998],\n            [45.7764, 42.09244000000018],\n            [46.404950799348825, 41.860675157227305],\n            [46.14543175637902, 41.72280243587258],\n            [46.63790815612058, 41.181672675128226],\n            [46.50163740416693, 41.06444468847411],\n            [45.96260053893039, 41.123872585609774],\n            [45.217426385281584, 41.41145193131405],\n            [44.97248009621808, 41.248128567055595],\n            [43.58274580259273, 41.09214325618257],\n            [42.61954878110449, 41.58317271581994],\n            [41.55408410011066, 41.53565623632757],\n            [41.70317060727271, 41.96294281673292],\n            [41.45347008643839, 42.64512339941794],\n            [40.87546919125379, 43.013628038091284],\n            [40.32139448422032, 43.128633938156845],\n            [39.955008579270924, 43.43499766699922]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Azerbaijan\",\n        \"sov_a3\": \"AZE\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Azerbaijan\",\n        \"adm0_a3\": \"AZE\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Azerbaijan\",\n        \"gu_a3\": \"AZE\",\n        \"su_dif\": 0,\n        \"subunit\": \"Azerbaijan\",\n        \"su_a3\": \"AZE\",\n        \"brk_diff\": 0,\n        \"name\": \"Azerbaijan\",\n        \"name_long\": \"Azerbaijan\",\n        \"brk_a3\": \"AZE\",\n        \"brk_name\": \"Azerbaijan\",\n        \"brk_group\": null,\n        \"abbrev\": \"Aze.\",\n        \"postal\": \"AZ\",\n        \"formal_en\": \"Republic of Azerbaijan\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Azerbaijan\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Azerbaijan\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 8,\n        \"pop_est\": 10023318,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 48047,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"AJ\",\n        \"iso_a2\": \"AZ\",\n        \"iso_a2_eh\": \"AZ\",\n        \"iso_a3\": \"AZE\",\n        \"iso_a3_eh\": \"AZE\",\n        \"iso_n3\": \"031\",\n        \"iso_n3_eh\": \"031\",\n        \"un_a3\": \"031\",\n        \"wb_a2\": \"AZ\",\n        \"wb_a3\": \"AZE\",\n        \"woe_id\": 23424741,\n        \"woe_id_eh\": 23424741,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"AZE\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"AZE\",\n        \"adm0_a3_us\": \"AZE\",\n        \"adm0_a3_fr\": \"AZE\",\n        \"adm0_a3_ru\": \"AZE\",\n        \"adm0_a3_es\": \"AZE\",\n        \"adm0_a3_cn\": \"AZE\",\n        \"adm0_a3_tw\": \"AZE\",\n        \"adm0_a3_in\": \"AZE\",\n        \"adm0_a3_np\": \"AZE\",\n        \"adm0_a3_pk\": \"AZE\",\n        \"adm0_a3_de\": \"AZE\",\n        \"adm0_a3_gb\": \"AZE\",\n        \"adm0_a3_br\": \"AZE\",\n        \"adm0_a3_il\": \"AZE\",\n        \"adm0_a3_ps\": \"AZE\",\n        \"adm0_a3_sa\": \"AZE\",\n        \"adm0_a3_eg\": \"AZE\",\n        \"adm0_a3_ma\": \"AZE\",\n        \"adm0_a3_pt\": \"AZE\",\n        \"adm0_a3_ar\": \"AZE\",\n        \"adm0_a3_jp\": \"AZE\",\n        \"adm0_a3_ko\": \"AZE\",\n        \"adm0_a3_vn\": \"AZE\",\n        \"adm0_a3_tr\": \"AZE\",\n        \"adm0_a3_id\": \"AZE\",\n        \"adm0_a3_pl\": \"AZE\",\n        \"adm0_a3_gr\": \"AZE\",\n        \"adm0_a3_it\": \"AZE\",\n        \"adm0_a3_nl\": \"AZE\",\n        \"adm0_a3_se\": \"AZE\",\n        \"adm0_a3_bd\": \"AZE\",\n        \"adm0_a3_ua\": \"AZE\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Western Asia\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 10,\n        \"long_len\": 10,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 47.210994,\n        \"label_y\": 40.402387,\n        \"ne_id\": 1159320381,\n        \"wikidataid\": \"Q227\",\n        \"name_ar\": \"أذربيجان\",\n        \"name_bn\": \"আজারবাইজান\",\n        \"name_de\": \"Aserbaidschan\",\n        \"name_en\": \"Azerbaijan\",\n        \"name_es\": \"Azerbaiyán\",\n        \"name_fa\": \"جمهوری آذربایجان\",\n        \"name_fr\": \"Azerbaïdjan\",\n        \"name_el\": \"Αζερμπαϊτζάν\",\n        \"name_he\": \"אזרבייג'ן\",\n        \"name_hi\": \"अज़रबैजान\",\n        \"name_hu\": \"Azerbajdzsán\",\n        \"name_id\": \"Azerbaijan\",\n        \"name_it\": \"Azerbaigian\",\n        \"name_ja\": \"アゼルバイジャン\",\n        \"name_ko\": \"아제르바이잔\",\n        \"name_nl\": \"Azerbeidzjan\",\n        \"name_pl\": \"Azerbejdżan\",\n        \"name_pt\": \"Azerbaijão\",\n        \"name_ru\": \"Азербайджан\",\n        \"name_sv\": \"Azerbajdzjan\",\n        \"name_tr\": \"Azerbaycan\",\n        \"name_uk\": \"Азербайджан\",\n        \"name_ur\": \"آذربائیجان\",\n        \"name_vi\": \"Azerbaijan\",\n        \"name_zh\": \"阿塞拜疆\",\n        \"name_zht\": \"亞塞拜然\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"AZE.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [46.404950799348825, 41.860675157227305],\n              [46.68607059101661, 41.82713715266988],\n              [47.37331546406623, 41.2197323675112],\n              [47.81566572448463, 41.15141612402135],\n              [47.98728315612598, 41.40581920019423],\n              [48.58435339611342, 41.80886879162067],\n              [49.110263706260696, 41.28228668880051],\n              [49.6189148293096, 40.57292430272996],\n              [50.08482954285313, 40.52615713150581],\n              [50.39282107931268, 40.25656118423912],\n              [49.569202101444795, 40.176100979160665],\n              [49.395259230350376, 39.39948171646225],\n              [49.22322838725071, 39.04921885838793],\n              [48.85653242370759, 38.81548635513178],\n              [48.88324913920249, 38.32024526626262],\n              [48.63437544128482, 38.27037750910097],\n              [48.01074425638648, 38.79401479751452],\n              [48.35552941263788, 39.28876496027691],\n              [48.06009524922524, 39.58223541926246],\n              [47.685079380083096, 39.50836395930122],\n              [46.50571984231797, 38.770605373686294],\n              [46.48349897643246, 39.464154771475535],\n              [46.034534132680676, 39.628020738273065],\n              [45.61001224140293, 39.89999380142518],\n              [45.89190717955509, 40.21847565364],\n              [45.35917483905817, 40.56150381119346],\n              [45.56035118997045, 40.812289537105926],\n              [45.17949588397934, 40.98535390885141],\n              [44.97248009621808, 41.248128567055595],\n              [45.217426385281584, 41.41145193131405],\n              [45.96260053893039, 41.123872585609774],\n              [46.50163740416693, 41.06444468847411],\n              [46.63790815612058, 41.181672675128226],\n              [46.14543175637902, 41.72280243587258],\n              [46.404950799348825, 41.860675157227305]\n            ]\n          ],\n          [\n            [\n              [46.14362308124882, 38.74120148371222],\n              [45.45772179543877, 38.87413910578306],\n              [44.95268802265031, 39.33576467544637],\n              [44.79398969908195, 39.71300263117705],\n              [45.00198733905675, 39.740003567049555],\n              [45.29814497252146, 39.471751207022436],\n              [45.73997846861698, 39.47399913182713],\n              [45.73537926614301, 39.31971914321974],\n              [46.14362308124882, 38.74120148371222]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Turkey\",\n        \"sov_a3\": \"TUR\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Turkey\",\n        \"adm0_a3\": \"TUR\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Turkey\",\n        \"gu_a3\": \"TUR\",\n        \"su_dif\": 0,\n        \"subunit\": \"Turkey\",\n        \"su_a3\": \"TUR\",\n        \"brk_diff\": 0,\n        \"name\": \"Turkey\",\n        \"name_long\": \"Turkey\",\n        \"brk_a3\": \"TUR\",\n        \"brk_name\": \"Turkey\",\n        \"brk_group\": null,\n        \"abbrev\": \"Tur.\",\n        \"postal\": \"TR\",\n        \"formal_en\": \"Republic of Turkey\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Turkey\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Turkey\",\n        \"name_alt\": null,\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 8,\n        \"mapcolor13\": 4,\n        \"pop_est\": 83429615,\n        \"pop_rank\": 16,\n        \"pop_year\": 2019,\n        \"gdp_md\": 761425,\n        \"gdp_year\": 2019,\n        \"economy\": \"4. Emerging region: MIKT\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"TU\",\n        \"iso_a2\": \"TR\",\n        \"iso_a2_eh\": \"TR\",\n        \"iso_a3\": \"TUR\",\n        \"iso_a3_eh\": \"TUR\",\n        \"iso_n3\": \"792\",\n        \"iso_n3_eh\": \"792\",\n        \"un_a3\": \"792\",\n        \"wb_a2\": \"TR\",\n        \"wb_a3\": \"TUR\",\n        \"woe_id\": 23424969,\n        \"woe_id_eh\": 23424969,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"TUR\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"TUR\",\n        \"adm0_a3_us\": \"TUR\",\n        \"adm0_a3_fr\": \"TUR\",\n        \"adm0_a3_ru\": \"TUR\",\n        \"adm0_a3_es\": \"TUR\",\n        \"adm0_a3_cn\": \"TUR\",\n        \"adm0_a3_tw\": \"TUR\",\n        \"adm0_a3_in\": \"TUR\",\n        \"adm0_a3_np\": \"TUR\",\n        \"adm0_a3_pk\": \"TUR\",\n        \"adm0_a3_de\": \"TUR\",\n        \"adm0_a3_gb\": \"TUR\",\n        \"adm0_a3_br\": \"TUR\",\n        \"adm0_a3_il\": \"TUR\",\n        \"adm0_a3_ps\": \"TUR\",\n        \"adm0_a3_sa\": \"TUR\",\n        \"adm0_a3_eg\": \"TUR\",\n        \"adm0_a3_ma\": \"TUR\",\n        \"adm0_a3_pt\": \"TUR\",\n        \"adm0_a3_ar\": \"TUR\",\n        \"adm0_a3_jp\": \"TUR\",\n        \"adm0_a3_ko\": \"TUR\",\n        \"adm0_a3_vn\": \"TUR\",\n        \"adm0_a3_tr\": \"TUR\",\n        \"adm0_a3_id\": \"TUR\",\n        \"adm0_a3_pl\": \"TUR\",\n        \"adm0_a3_gr\": \"TUR\",\n        \"adm0_a3_it\": \"TUR\",\n        \"adm0_a3_nl\": \"TUR\",\n        \"adm0_a3_se\": \"TUR\",\n        \"adm0_a3_bd\": \"TUR\",\n        \"adm0_a3_ua\": \"TUR\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Western Asia\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2,\n        \"max_label\": 7,\n        \"label_x\": 34.508268,\n        \"label_y\": 39.345388,\n        \"ne_id\": 1159321331,\n        \"wikidataid\": \"Q43\",\n        \"name_ar\": \"تركيا\",\n        \"name_bn\": \"তুরস্ক\",\n        \"name_de\": \"Türkei\",\n        \"name_en\": \"Turkey\",\n        \"name_es\": \"Turquía\",\n        \"name_fa\": \"ترکیه\",\n        \"name_fr\": \"Turquie\",\n        \"name_el\": \"Τουρκία\",\n        \"name_he\": \"טורקיה\",\n        \"name_hi\": \"तुर्की\",\n        \"name_hu\": \"Törökország\",\n        \"name_id\": \"Turki\",\n        \"name_it\": \"Turchia\",\n        \"name_ja\": \"トルコ\",\n        \"name_ko\": \"터키\",\n        \"name_nl\": \"Turkije\",\n        \"name_pl\": \"Turcja\",\n        \"name_pt\": \"Turquia\",\n        \"name_ru\": \"Турция\",\n        \"name_sv\": \"Turkiet\",\n        \"name_tr\": \"Türkiye\",\n        \"name_uk\": \"Туреччина\",\n        \"name_ur\": \"ترکی\",\n        \"name_vi\": \"Thổ Nhĩ Kỳ\",\n        \"name_zh\": \"土耳其\",\n        \"name_zht\": \"土耳其\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"TUR.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [44.77267710159504, 37.17043692561684],\n              [44.29345177590287, 37.0015143906063],\n              [43.9422587420473, 37.25622752537295],\n              [42.77912560402183, 37.385263576805755],\n              [42.34959109881177, 37.2298725449041],\n              [41.21208947120305, 37.074352321921694],\n              [40.67325931169569, 37.09127635349729],\n              [39.52258019385255, 36.71605377862599],\n              [38.6998913917659, 36.71292735447234],\n              [38.1677274920242, 36.90121043552777],\n              [37.06676110204583, 36.62303620050062],\n              [36.7394942563414, 36.81752045343109],\n              [36.6853890317318, 36.259699205056464],\n              [36.417550083163036, 36.04061697035506],\n              [36.149762811026534, 35.82153473565367],\n              [35.782084995269855, 36.27499542901485],\n              [36.160821567537, 36.65060557712833],\n              [35.55093631362831, 36.565442816711325],\n              [34.714553256984345, 36.7955321314909],\n              [34.026894972476384, 36.219960028624016],\n              [32.509158156064075, 36.107563788389186],\n              [31.699595167779567, 36.64427521417258],\n              [30.621624790171097, 36.6778648951623],\n              [30.391096225717064, 36.26298065850699],\n              [29.69997562024554, 36.144357408180994],\n              [28.732902866335422, 36.67683136651647],\n              [27.641186557737317, 36.65882212986274],\n              [27.048767937943264, 37.653360907536],\n              [26.318218214633045, 38.208133246405396],\n              [26.804700148228733, 38.985760199533516],\n              [26.17078535330433, 39.463612168936464],\n              [27.28001997244939, 40.42001373957831],\n              [28.81997765474722, 40.46001129817221],\n              [29.240003696415584, 41.21999074967267],\n              [31.14593387220444, 41.08762156835702],\n              [32.34797936374571, 41.736264146484615],\n              [33.51328291192746, 42.01896006933731],\n              [35.167703891751785, 42.040224921225416],\n              [36.9131270688421, 41.33535838476427],\n              [38.34766482926452, 40.94858612727573],\n              [39.512606642420195, 41.10276276301855],\n              [40.373432651538224, 41.01367259374735],\n              [41.55408410011066, 41.53565623632757],\n              [42.61954878110449, 41.58317271581994],\n              [43.58274580259273, 41.09214325618257],\n              [43.75265791196841, 40.74020091405876],\n              [43.65643639504094, 40.253563951166186],\n              [44.4000085792887, 40.00500031184228],\n              [44.79398969908195, 39.71300263117705],\n              [44.10922529478234, 39.4281362981681],\n              [44.421402622257546, 38.28128123631454],\n              [44.22575564960053, 37.97158437758935],\n              [44.77267, 37.17045],\n              [44.77267710159504, 37.17043692561684]\n            ]\n          ],\n          [\n            [\n              [26.1170418637208, 41.82690460872456],\n              [27.13573937349048, 42.14148489030134],\n              [27.99672041190539, 42.00735871028779],\n              [28.115524529744416, 41.62288605403624],\n              [28.988442824018733, 41.29993419042819],\n              [28.806438429486743, 41.05496206314856],\n              [27.61901736828409, 40.99982330989314],\n              [27.19237674328238, 40.69056570084242],\n              [26.35800906749779, 40.151993923496505],\n              [26.04335127127257, 40.61775360774317],\n              [26.05694217296534, 40.82412344010076],\n              [26.294602085075667, 40.93626129817413],\n              [26.60419559093623, 41.562114569661105],\n              [26.1170418637208, 41.82690460872456]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Laos\",\n        \"sov_a3\": \"LAO\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Laos\",\n        \"adm0_a3\": \"LAO\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Laos\",\n        \"gu_a3\": \"LAO\",\n        \"su_dif\": 0,\n        \"subunit\": \"Laos\",\n        \"su_a3\": \"LAO\",\n        \"brk_diff\": 0,\n        \"name\": \"Laos\",\n        \"name_long\": \"Lao PDR\",\n        \"brk_a3\": \"LAO\",\n        \"brk_name\": \"Laos\",\n        \"brk_group\": null,\n        \"abbrev\": \"Laos\",\n        \"postal\": \"LA\",\n        \"formal_en\": \"Lao People's Democratic Republic\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Laos\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Lao PDR\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 9,\n        \"pop_est\": 7169455,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 18173,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"LA\",\n        \"iso_a2\": \"LA\",\n        \"iso_a2_eh\": \"LA\",\n        \"iso_a3\": \"LAO\",\n        \"iso_a3_eh\": \"LAO\",\n        \"iso_n3\": \"418\",\n        \"iso_n3_eh\": \"418\",\n        \"un_a3\": \"418\",\n        \"wb_a2\": \"LA\",\n        \"wb_a3\": \"LAO\",\n        \"woe_id\": 23424872,\n        \"woe_id_eh\": 23424872,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"LAO\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"LAO\",\n        \"adm0_a3_us\": \"LAO\",\n        \"adm0_a3_fr\": \"LAO\",\n        \"adm0_a3_ru\": \"LAO\",\n        \"adm0_a3_es\": \"LAO\",\n        \"adm0_a3_cn\": \"LAO\",\n        \"adm0_a3_tw\": \"LAO\",\n        \"adm0_a3_in\": \"LAO\",\n        \"adm0_a3_np\": \"LAO\",\n        \"adm0_a3_pk\": \"LAO\",\n        \"adm0_a3_de\": \"LAO\",\n        \"adm0_a3_gb\": \"LAO\",\n        \"adm0_a3_br\": \"LAO\",\n        \"adm0_a3_il\": \"LAO\",\n        \"adm0_a3_ps\": \"LAO\",\n        \"adm0_a3_sa\": \"LAO\",\n        \"adm0_a3_eg\": \"LAO\",\n        \"adm0_a3_ma\": \"LAO\",\n        \"adm0_a3_pt\": \"LAO\",\n        \"adm0_a3_ar\": \"LAO\",\n        \"adm0_a3_jp\": \"LAO\",\n        \"adm0_a3_ko\": \"LAO\",\n        \"adm0_a3_vn\": \"LAO\",\n        \"adm0_a3_tr\": \"LAO\",\n        \"adm0_a3_id\": \"LAO\",\n        \"adm0_a3_pl\": \"LAO\",\n        \"adm0_a3_gr\": \"LAO\",\n        \"adm0_a3_it\": \"LAO\",\n        \"adm0_a3_nl\": \"LAO\",\n        \"adm0_a3_se\": \"LAO\",\n        \"adm0_a3_bd\": \"LAO\",\n        \"adm0_a3_ua\": \"LAO\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"South-Eastern Asia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 4,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 102.533912,\n        \"label_y\": 19.431821,\n        \"ne_id\": 1159321011,\n        \"wikidataid\": \"Q819\",\n        \"name_ar\": \"لاوس\",\n        \"name_bn\": \"লাওস\",\n        \"name_de\": \"Laos\",\n        \"name_en\": \"Laos\",\n        \"name_es\": \"Laos\",\n        \"name_fa\": \"لائوس\",\n        \"name_fr\": \"Laos\",\n        \"name_el\": \"Λάος\",\n        \"name_he\": \"לאוס\",\n        \"name_hi\": \"लाओस\",\n        \"name_hu\": \"Laosz\",\n        \"name_id\": \"Laos\",\n        \"name_it\": \"Laos\",\n        \"name_ja\": \"ラオス\",\n        \"name_ko\": \"라오스\",\n        \"name_nl\": \"Laos\",\n        \"name_pl\": \"Laos\",\n        \"name_pt\": \"Laos\",\n        \"name_ru\": \"Лаос\",\n        \"name_sv\": \"Laos\",\n        \"name_tr\": \"Laos\",\n        \"name_uk\": \"Лаос\",\n        \"name_ur\": \"لاؤس\",\n        \"name_vi\": \"Lào\",\n        \"name_zh\": \"老挝\",\n        \"name_zht\": \"寮國\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"LAO.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [107.38272749230109, 14.202440904186972],\n            [106.49637332563088, 14.570583807834282],\n            [106.04394616091552, 13.881091009979956],\n            [105.21877689007889, 14.273211778210694],\n            [105.54433841351769, 14.723933620660418],\n            [105.58903852745016, 15.570316066952858],\n            [104.7793205098688, 16.44186493577145],\n            [104.7169470560925, 17.42885895433008],\n            [103.9564766784853, 18.24095408779688],\n            [103.20019209189374, 18.309632066312773],\n            [102.99870568238771, 17.9616946476916],\n            [102.41300499879162, 17.932781683824288],\n            [102.11359175009248, 18.109101670804165],\n            [101.05954756063517, 17.51249725999449],\n            [101.03593143107777, 18.408928330961615],\n            [101.2820146016517, 19.462584947176765],\n            [100.60629357300316, 19.508344427971224],\n            [100.54888105672688, 20.109237982661128],\n            [100.11598758341785, 20.417849636308187],\n            [100.32910119018953, 20.786121731036232],\n            [101.18000532430754, 21.436572984294028],\n            [101.27002566935997, 21.201651923095184],\n            [101.80311974488293, 21.17436676684507],\n            [101.65201785686152, 22.318198757409547],\n            [102.17043582561358, 22.464753119389304],\n            [102.75489627483466, 21.675137233969465],\n            [103.20386111858645, 20.76656220141375],\n            [104.43500044150805, 20.75873322192153],\n            [104.8225736836971, 19.886641750563882],\n            [104.18338789267894, 19.62466807706022],\n            [103.89653201702671, 19.265180975821806],\n            [105.09459842328152, 18.66697459561108],\n            [105.92576216026403, 17.48531545660896],\n            [106.55600792849569, 16.604283962464805],\n            [107.3127059265456, 15.90853831630318],\n            [107.5645251811039, 15.20217316330556],\n            [107.38272749230109, 14.202440904186972]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Kyrgyzstan\",\n        \"sov_a3\": \"KGZ\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Kyrgyzstan\",\n        \"adm0_a3\": \"KGZ\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Kyrgyzstan\",\n        \"gu_a3\": \"KGZ\",\n        \"su_dif\": 0,\n        \"subunit\": \"Kyrgyzstan\",\n        \"su_a3\": \"KGZ\",\n        \"brk_diff\": 0,\n        \"name\": \"Kyrgyzstan\",\n        \"name_long\": \"Kyrgyzstan\",\n        \"brk_a3\": \"KGZ\",\n        \"brk_name\": \"Kyrgyzstan\",\n        \"brk_group\": null,\n        \"abbrev\": \"Kgz.\",\n        \"postal\": \"KG\",\n        \"formal_en\": \"Kyrgyz Republic\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Kyrgyzstan\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Kyrgyz Republic\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 7,\n        \"mapcolor9\": 7,\n        \"mapcolor13\": 6,\n        \"pop_est\": 6456900,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 8454,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"KG\",\n        \"iso_a2\": \"KG\",\n        \"iso_a2_eh\": \"KG\",\n        \"iso_a3\": \"KGZ\",\n        \"iso_a3_eh\": \"KGZ\",\n        \"iso_n3\": \"417\",\n        \"iso_n3_eh\": \"417\",\n        \"un_a3\": \"417\",\n        \"wb_a2\": \"KG\",\n        \"wb_a3\": \"KGZ\",\n        \"woe_id\": 23424864,\n        \"woe_id_eh\": 23424864,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"KGZ\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"KGZ\",\n        \"adm0_a3_us\": \"KGZ\",\n        \"adm0_a3_fr\": \"KGZ\",\n        \"adm0_a3_ru\": \"KGZ\",\n        \"adm0_a3_es\": \"KGZ\",\n        \"adm0_a3_cn\": \"KGZ\",\n        \"adm0_a3_tw\": \"KGZ\",\n        \"adm0_a3_in\": \"KGZ\",\n        \"adm0_a3_np\": \"KGZ\",\n        \"adm0_a3_pk\": \"KGZ\",\n        \"adm0_a3_de\": \"KGZ\",\n        \"adm0_a3_gb\": \"KGZ\",\n        \"adm0_a3_br\": \"KGZ\",\n        \"adm0_a3_il\": \"KGZ\",\n        \"adm0_a3_ps\": \"KGZ\",\n        \"adm0_a3_sa\": \"KGZ\",\n        \"adm0_a3_eg\": \"KGZ\",\n        \"adm0_a3_ma\": \"KGZ\",\n        \"adm0_a3_pt\": \"KGZ\",\n        \"adm0_a3_ar\": \"KGZ\",\n        \"adm0_a3_jp\": \"KGZ\",\n        \"adm0_a3_ko\": \"KGZ\",\n        \"adm0_a3_vn\": \"KGZ\",\n        \"adm0_a3_tr\": \"KGZ\",\n        \"adm0_a3_id\": \"KGZ\",\n        \"adm0_a3_pl\": \"KGZ\",\n        \"adm0_a3_gr\": \"KGZ\",\n        \"adm0_a3_it\": \"KGZ\",\n        \"adm0_a3_nl\": \"KGZ\",\n        \"adm0_a3_se\": \"KGZ\",\n        \"adm0_a3_bd\": \"KGZ\",\n        \"adm0_a3_ua\": \"KGZ\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Central Asia\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 10,\n        \"long_len\": 10,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 74.532637,\n        \"label_y\": 41.66854,\n        \"ne_id\": 1159320977,\n        \"wikidataid\": \"Q813\",\n        \"name_ar\": \"قيرغيزستان\",\n        \"name_bn\": \"কিরগিজস্তান\",\n        \"name_de\": \"Kirgisistan\",\n        \"name_en\": \"Kyrgyzstan\",\n        \"name_es\": \"Kirguistán\",\n        \"name_fa\": \"قرقیزستان\",\n        \"name_fr\": \"Kirghizistan\",\n        \"name_el\": \"Κιργιζία\",\n        \"name_he\": \"קירגיזסטן\",\n        \"name_hi\": \"किर्गिज़स्तान\",\n        \"name_hu\": \"Kirgizisztán\",\n        \"name_id\": \"Kirgizstan\",\n        \"name_it\": \"Kirghizistan\",\n        \"name_ja\": \"キルギス\",\n        \"name_ko\": \"키르기스스탄\",\n        \"name_nl\": \"Kirgizië\",\n        \"name_pl\": \"Kirgistan\",\n        \"name_pt\": \"Quirguistão\",\n        \"name_ru\": \"Киргизия\",\n        \"name_sv\": \"Kirgizistan\",\n        \"name_tr\": \"Kırgızistan\",\n        \"name_uk\": \"Киргизстан\",\n        \"name_ur\": \"کرغیزستان\",\n        \"name_vi\": \"Kyrgyzstan\",\n        \"name_zh\": \"吉尔吉斯斯坦\",\n        \"name_zht\": \"吉爾吉斯\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"KGZ.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [70.96231489449914, 42.266154283205495],\n            [71.18628055205212, 42.70429291439214],\n            [71.8446382994506, 42.8453954127651],\n            [73.48975752146237, 42.50089447689132],\n            [73.64530358266092, 43.09127187760987],\n            [74.21286583852256, 43.29833934180337],\n            [75.63696495962202, 42.87789988867668],\n            [76.00035363149846, 42.98802236589067],\n            [77.65839196158322, 42.96068553320826],\n            [79.14217736197978, 42.85609243424952],\n            [79.64364546094012, 42.49668284765953],\n            [80.2599902688853, 42.34999929459906],\n            [80.11943037305139, 42.12394074153825],\n            [78.54366092317531, 41.58224254003869],\n            [78.18719689322597, 41.18531586360481],\n            [76.90448449087708, 41.06648590754965],\n            [76.52636803579745, 40.42794607193512],\n            [75.4678279967307, 40.56207225194867],\n            [74.77686242055606, 40.36642527929163],\n            [73.8222436868283, 39.893973497063186],\n            [73.96001305531843, 39.660008449861735],\n            [73.6753792662548, 39.4312368841056],\n            [71.784693637992, 39.27946320246437],\n            [70.54916181832562, 39.6041979029865],\n            [69.46488691597753, 39.5266832545487],\n            [69.55960981636852, 40.10321137141298],\n            [70.64801883329997, 39.93575389257117],\n            [71.01419803252017, 40.24436554621823],\n            [71.77487511585656, 40.14584442805378],\n            [73.05541710804917, 40.866033026689465],\n            [71.87011478057047, 41.392900092121266],\n            [71.1578585142916, 41.14358714452912],\n            [70.42002241402821, 41.51999827734314],\n            [71.25924767444823, 42.16771067968946],\n            [70.96231489449914, 42.266154283205495]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Armenia\",\n        \"sov_a3\": \"ARM\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Armenia\",\n        \"adm0_a3\": \"ARM\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Armenia\",\n        \"gu_a3\": \"ARM\",\n        \"su_dif\": 0,\n        \"subunit\": \"Armenia\",\n        \"su_a3\": \"ARM\",\n        \"brk_diff\": 0,\n        \"name\": \"Armenia\",\n        \"name_long\": \"Armenia\",\n        \"brk_a3\": \"ARM\",\n        \"brk_name\": \"Armenia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Arm.\",\n        \"postal\": \"ARM\",\n        \"formal_en\": \"Republic of Armenia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Armenia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Armenia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 10,\n        \"pop_est\": 2957731,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 13672,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"AM\",\n        \"iso_a2\": \"AM\",\n        \"iso_a2_eh\": \"AM\",\n        \"iso_a3\": \"ARM\",\n        \"iso_a3_eh\": \"ARM\",\n        \"iso_n3\": \"051\",\n        \"iso_n3_eh\": \"051\",\n        \"un_a3\": \"051\",\n        \"wb_a2\": \"AM\",\n        \"wb_a3\": \"ARM\",\n        \"woe_id\": 23424743,\n        \"woe_id_eh\": 23424743,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"ARM\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"ARM\",\n        \"adm0_a3_us\": \"ARM\",\n        \"adm0_a3_fr\": \"ARM\",\n        \"adm0_a3_ru\": \"ARM\",\n        \"adm0_a3_es\": \"ARM\",\n        \"adm0_a3_cn\": \"ARM\",\n        \"adm0_a3_tw\": \"ARM\",\n        \"adm0_a3_in\": \"ARM\",\n        \"adm0_a3_np\": \"ARM\",\n        \"adm0_a3_pk\": \"ARM\",\n        \"adm0_a3_de\": \"ARM\",\n        \"adm0_a3_gb\": \"ARM\",\n        \"adm0_a3_br\": \"ARM\",\n        \"adm0_a3_il\": \"ARM\",\n        \"adm0_a3_ps\": \"ARM\",\n        \"adm0_a3_sa\": \"ARM\",\n        \"adm0_a3_eg\": \"ARM\",\n        \"adm0_a3_ma\": \"ARM\",\n        \"adm0_a3_pt\": \"ARM\",\n        \"adm0_a3_ar\": \"ARM\",\n        \"adm0_a3_jp\": \"ARM\",\n        \"adm0_a3_ko\": \"ARM\",\n        \"adm0_a3_vn\": \"ARM\",\n        \"adm0_a3_tr\": \"ARM\",\n        \"adm0_a3_id\": \"ARM\",\n        \"adm0_a3_pl\": \"ARM\",\n        \"adm0_a3_gr\": \"ARM\",\n        \"adm0_a3_it\": \"ARM\",\n        \"adm0_a3_nl\": \"ARM\",\n        \"adm0_a3_se\": \"ARM\",\n        \"adm0_a3_bd\": \"ARM\",\n        \"adm0_a3_ua\": \"ARM\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Western Asia\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 5,\n        \"max_label\": 10,\n        \"label_x\": 44.800564,\n        \"label_y\": 40.459077,\n        \"ne_id\": 1159320333,\n        \"wikidataid\": \"Q399\",\n        \"name_ar\": \"أرمينيا\",\n        \"name_bn\": \"আর্মেনিয়া\",\n        \"name_de\": \"Armenien\",\n        \"name_en\": \"Armenia\",\n        \"name_es\": \"Armenia\",\n        \"name_fa\": \"ارمنستان\",\n        \"name_fr\": \"Arménie\",\n        \"name_el\": \"Αρμενία\",\n        \"name_he\": \"ארמניה\",\n        \"name_hi\": \"आर्मीनिया\",\n        \"name_hu\": \"Örményország\",\n        \"name_id\": \"Armenia\",\n        \"name_it\": \"Armenia\",\n        \"name_ja\": \"アルメニア\",\n        \"name_ko\": \"아르메니아\",\n        \"name_nl\": \"Armenië\",\n        \"name_pl\": \"Armenia\",\n        \"name_pt\": \"Arménia\",\n        \"name_ru\": \"Армения\",\n        \"name_sv\": \"Armenien\",\n        \"name_tr\": \"Ermenistan\",\n        \"name_uk\": \"Вірменія\",\n        \"name_ur\": \"آرمینیا\",\n        \"name_vi\": \"Armenia\",\n        \"name_zh\": \"亚美尼亚\",\n        \"name_zht\": \"亞美尼亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"ARM.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [46.50571984231797, 38.770605373686294],\n            [46.14362308124882, 38.74120148371222],\n            [45.73537926614301, 39.31971914321974],\n            [45.73997846861698, 39.47399913182713],\n            [45.29814497252146, 39.471751207022436],\n            [45.00198733905675, 39.740003567049555],\n            [44.79398969908195, 39.71300263117705],\n            [44.4000085792887, 40.00500031184228],\n            [43.65643639504094, 40.253563951166186],\n            [43.75265791196841, 40.74020091405876],\n            [43.58274580259273, 41.09214325618257],\n            [44.97248009621808, 41.248128567055595],\n            [45.17949588397934, 40.98535390885141],\n            [45.56035118997045, 40.812289537105926],\n            [45.35917483905817, 40.56150381119346],\n            [45.89190717955509, 40.21847565364],\n            [45.61001224140293, 39.89999380142518],\n            [46.034534132680676, 39.628020738273065],\n            [46.48349897643246, 39.464154771475535],\n            [46.50571984231797, 38.770605373686294]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Iraq\",\n        \"sov_a3\": \"IRQ\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Iraq\",\n        \"adm0_a3\": \"IRQ\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Iraq\",\n        \"gu_a3\": \"IRQ\",\n        \"su_dif\": 0,\n        \"subunit\": \"Iraq\",\n        \"su_a3\": \"IRQ\",\n        \"brk_diff\": 0,\n        \"name\": \"Iraq\",\n        \"name_long\": \"Iraq\",\n        \"brk_a3\": \"IRQ\",\n        \"brk_name\": \"Iraq\",\n        \"brk_group\": null,\n        \"abbrev\": \"Iraq\",\n        \"postal\": \"IRQ\",\n        \"formal_en\": \"Republic of Iraq\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Iraq\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Iraq\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 1,\n        \"pop_est\": 39309783,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 234094,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"IZ\",\n        \"iso_a2\": \"IQ\",\n        \"iso_a2_eh\": \"IQ\",\n        \"iso_a3\": \"IRQ\",\n        \"iso_a3_eh\": \"IRQ\",\n        \"iso_n3\": \"368\",\n        \"iso_n3_eh\": \"368\",\n        \"un_a3\": \"368\",\n        \"wb_a2\": \"IQ\",\n        \"wb_a3\": \"IRQ\",\n        \"woe_id\": 23424855,\n        \"woe_id_eh\": 23424855,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"IRQ\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"IRQ\",\n        \"adm0_a3_us\": \"IRQ\",\n        \"adm0_a3_fr\": \"IRQ\",\n        \"adm0_a3_ru\": \"IRQ\",\n        \"adm0_a3_es\": \"IRQ\",\n        \"adm0_a3_cn\": \"IRQ\",\n        \"adm0_a3_tw\": \"IRQ\",\n        \"adm0_a3_in\": \"IRQ\",\n        \"adm0_a3_np\": \"IRQ\",\n        \"adm0_a3_pk\": \"IRQ\",\n        \"adm0_a3_de\": \"IRQ\",\n        \"adm0_a3_gb\": \"IRQ\",\n        \"adm0_a3_br\": \"IRQ\",\n        \"adm0_a3_il\": \"IRQ\",\n        \"adm0_a3_ps\": \"IRQ\",\n        \"adm0_a3_sa\": \"IRQ\",\n        \"adm0_a3_eg\": \"IRQ\",\n        \"adm0_a3_ma\": \"IRQ\",\n        \"adm0_a3_pt\": \"IRQ\",\n        \"adm0_a3_ar\": \"IRQ\",\n        \"adm0_a3_jp\": \"IRQ\",\n        \"adm0_a3_ko\": \"IRQ\",\n        \"adm0_a3_vn\": \"IRQ\",\n        \"adm0_a3_tr\": \"IRQ\",\n        \"adm0_a3_id\": \"IRQ\",\n        \"adm0_a3_pl\": \"IRQ\",\n        \"adm0_a3_gr\": \"IRQ\",\n        \"adm0_a3_it\": \"IRQ\",\n        \"adm0_a3_nl\": \"IRQ\",\n        \"adm0_a3_se\": \"IRQ\",\n        \"adm0_a3_bd\": \"IRQ\",\n        \"adm0_a3_ua\": \"IRQ\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Western Asia\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 4,\n        \"long_len\": 4,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 7.5,\n        \"label_x\": 43.26181,\n        \"label_y\": 33.09403,\n        \"ne_id\": 1159320887,\n        \"wikidataid\": \"Q796\",\n        \"name_ar\": \"العراق\",\n        \"name_bn\": \"ইরাক\",\n        \"name_de\": \"Irak\",\n        \"name_en\": \"Iraq\",\n        \"name_es\": \"Irak\",\n        \"name_fa\": \"عراق\",\n        \"name_fr\": \"Irak\",\n        \"name_el\": \"Ιράκ\",\n        \"name_he\": \"עיראק\",\n        \"name_hi\": \"इराक\",\n        \"name_hu\": \"Irak\",\n        \"name_id\": \"Irak\",\n        \"name_it\": \"Iraq\",\n        \"name_ja\": \"イラク\",\n        \"name_ko\": \"이라크\",\n        \"name_nl\": \"Irak\",\n        \"name_pl\": \"Irak\",\n        \"name_pt\": \"Iraque\",\n        \"name_ru\": \"Ирак\",\n        \"name_sv\": \"Irak\",\n        \"name_tr\": \"Irak\",\n        \"name_uk\": \"Ірак\",\n        \"name_ur\": \"عراق\",\n        \"name_vi\": \"Iraq\",\n        \"name_zh\": \"伊拉克\",\n        \"name_zht\": \"伊拉克\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"IRQ.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [39.19546837744497, 32.16100881604267],\n            [38.792340529136084, 33.378686428352225],\n            [41.006158888519934, 34.41937226006212],\n            [41.383965285005814, 35.628316555314356],\n            [41.289707472505455, 36.35881460219227],\n            [41.83706424334096, 36.605853786763575],\n            [42.34959109881177, 37.2298725449041],\n            [42.77912560402183, 37.385263576805755],\n            [43.9422587420473, 37.25622752537295],\n            [44.29345177590287, 37.0015143906063],\n            [44.77267710159504, 37.17043692561684],\n            [45.42061811705321, 35.977545884742824],\n            [46.0763403664048, 35.67738332777549],\n            [46.15178795755094, 35.09325877536429],\n            [45.64845950702809, 34.748137722303014],\n            [45.41669070819904, 33.967797756479584],\n            [46.10936160663932, 33.017287299119005],\n            [47.33466149271191, 32.46915538179911],\n            [47.8492037290421, 31.70917593029867],\n            [47.68528608581227, 30.984853217079632],\n            [48.004698113808324, 30.985137437457244],\n            [48.0145683123761, 30.452456773392598],\n            [48.567971225789755, 29.926778265903522],\n            [47.974519077349896, 29.975819200148504],\n            [47.30262210469096, 30.059069932570722],\n            [46.568713413281756, 29.09902517345229],\n            [44.70949873228474, 29.178891099559383],\n            [41.889980910007836, 31.19000865327837],\n            [40.399994337736246, 31.889991766887935],\n            [39.19546837744497, 32.16100881604267]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Iran\",\n        \"sov_a3\": \"IRN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Iran\",\n        \"adm0_a3\": \"IRN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Iran\",\n        \"gu_a3\": \"IRN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Iran\",\n        \"su_a3\": \"IRN\",\n        \"brk_diff\": 0,\n        \"name\": \"Iran\",\n        \"name_long\": \"Iran\",\n        \"brk_a3\": \"IRN\",\n        \"brk_name\": \"Iran\",\n        \"brk_group\": null,\n        \"abbrev\": \"Iran\",\n        \"postal\": \"IRN\",\n        \"formal_en\": \"Islamic Republic of Iran\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Iran\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Iran, Islamic Rep.\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 13,\n        \"pop_est\": 82913906,\n        \"pop_rank\": 16,\n        \"pop_year\": 2019,\n        \"gdp_md\": 453996,\n        \"gdp_year\": 2018,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"IR\",\n        \"iso_a2\": \"IR\",\n        \"iso_a2_eh\": \"IR\",\n        \"iso_a3\": \"IRN\",\n        \"iso_a3_eh\": \"IRN\",\n        \"iso_n3\": \"364\",\n        \"iso_n3_eh\": \"364\",\n        \"un_a3\": \"364\",\n        \"wb_a2\": \"IR\",\n        \"wb_a3\": \"IRN\",\n        \"woe_id\": 23424851,\n        \"woe_id_eh\": 23424851,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"IRN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"IRN\",\n        \"adm0_a3_us\": \"IRN\",\n        \"adm0_a3_fr\": \"IRN\",\n        \"adm0_a3_ru\": \"IRN\",\n        \"adm0_a3_es\": \"IRN\",\n        \"adm0_a3_cn\": \"IRN\",\n        \"adm0_a3_tw\": \"IRN\",\n        \"adm0_a3_in\": \"IRN\",\n        \"adm0_a3_np\": \"IRN\",\n        \"adm0_a3_pk\": \"IRN\",\n        \"adm0_a3_de\": \"IRN\",\n        \"adm0_a3_gb\": \"IRN\",\n        \"adm0_a3_br\": \"IRN\",\n        \"adm0_a3_il\": \"IRN\",\n        \"adm0_a3_ps\": \"IRN\",\n        \"adm0_a3_sa\": \"IRN\",\n        \"adm0_a3_eg\": \"IRN\",\n        \"adm0_a3_ma\": \"IRN\",\n        \"adm0_a3_pt\": \"IRN\",\n        \"adm0_a3_ar\": \"IRN\",\n        \"adm0_a3_jp\": \"IRN\",\n        \"adm0_a3_ko\": \"IRN\",\n        \"adm0_a3_vn\": \"IRN\",\n        \"adm0_a3_tr\": \"IRN\",\n        \"adm0_a3_id\": \"IRN\",\n        \"adm0_a3_pl\": \"IRN\",\n        \"adm0_a3_gr\": \"IRN\",\n        \"adm0_a3_it\": \"IRN\",\n        \"adm0_a3_nl\": \"IRN\",\n        \"adm0_a3_se\": \"IRN\",\n        \"adm0_a3_bd\": \"IRN\",\n        \"adm0_a3_ua\": \"IRN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Southern Asia\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 4,\n        \"long_len\": 4,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.5,\n        \"max_label\": 6.7,\n        \"label_x\": 54.931495,\n        \"label_y\": 32.166225,\n        \"ne_id\": 1159320881,\n        \"wikidataid\": \"Q794\",\n        \"name_ar\": \"إيران\",\n        \"name_bn\": \"ইরান\",\n        \"name_de\": \"Iran\",\n        \"name_en\": \"Iran\",\n        \"name_es\": \"Irán\",\n        \"name_fa\": \"ایران\",\n        \"name_fr\": \"Iran\",\n        \"name_el\": \"Ιράν\",\n        \"name_he\": \"איראן\",\n        \"name_hi\": \"ईरान\",\n        \"name_hu\": \"Irán\",\n        \"name_id\": \"Iran\",\n        \"name_it\": \"Iran\",\n        \"name_ja\": \"イラン\",\n        \"name_ko\": \"이란\",\n        \"name_nl\": \"Iran\",\n        \"name_pl\": \"Iran\",\n        \"name_pt\": \"Irão\",\n        \"name_ru\": \"Иран\",\n        \"name_sv\": \"Iran\",\n        \"name_tr\": \"İran\",\n        \"name_uk\": \"Іран\",\n        \"name_ur\": \"ایران\",\n        \"name_vi\": \"Iran\",\n        \"name_zh\": \"伊朗\",\n        \"name_zht\": \"伊朗\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"IRN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [48.567971225789755, 29.926778265903522],\n            [48.0145683123761, 30.452456773392598],\n            [48.004698113808324, 30.985137437457244],\n            [47.68528608581227, 30.984853217079632],\n            [47.8492037290421, 31.70917593029867],\n            [47.33466149271191, 32.46915538179911],\n            [46.10936160663932, 33.017287299119005],\n            [45.41669070819904, 33.967797756479584],\n            [45.64845950702809, 34.748137722303014],\n            [46.15178795755094, 35.09325877536429],\n            [46.0763403664048, 35.67738332777549],\n            [45.42061811705321, 35.977545884742824],\n            [44.77267710159504, 37.17043692561684],\n            [44.77267, 37.17045],\n            [44.22575564960053, 37.97158437758935],\n            [44.421402622257546, 38.28128123631454],\n            [44.10922529478234, 39.4281362981681],\n            [44.79398969908195, 39.71300263117705],\n            [44.95268802265031, 39.33576467544637],\n            [45.45772179543877, 38.87413910578306],\n            [46.14362308124882, 38.74120148371222],\n            [46.50571984231797, 38.770605373686294],\n            [47.685079380083096, 39.50836395930122],\n            [48.06009524922524, 39.58223541926246],\n            [48.35552941263788, 39.28876496027691],\n            [48.01074425638648, 38.79401479751452],\n            [48.63437544128482, 38.27037750910097],\n            [48.88324913920249, 38.32024526626262],\n            [49.19961225769334, 37.582874253889884],\n            [50.14777143738462, 37.37456655532134],\n            [50.84235436381971, 36.8728142359834],\n            [52.264024692601424, 36.7004216578577],\n            [53.82578982932642, 36.965030829408235],\n            [53.92159793479556, 37.19891836196126],\n            [54.800303989486565, 37.392420762678185],\n            [55.51157840355191, 37.96411713312317],\n            [56.18037479027333, 37.93512665460743],\n            [56.61936608259282, 38.121394354803485],\n            [57.330433790928986, 38.02922943781094],\n            [58.436154412678206, 37.5223094752438],\n            [59.23476199731681, 37.41298798273034],\n            [60.37763797388388, 36.52738312432837],\n            [61.123070509694145, 36.491597194966246],\n            [61.210817091725744, 35.650072333309225],\n            [60.80319339380745, 34.40410187431986],\n            [60.52842980331158, 33.676446031218006],\n            [60.963700392506006, 33.52883230237626],\n            [60.536077915290775, 32.98126882581157],\n            [60.863654819588966, 32.18291962333443],\n            [60.94194461451113, 31.548074652628753],\n            [61.69931440618083, 31.379506130492672],\n            [61.781221551363444, 30.735850328081238],\n            [60.87424848820879, 29.829238999952608],\n            [61.36930870956494, 29.303276272085924],\n            [61.77186811711863, 28.6993338078908],\n            [62.72783043808599, 28.25964488373539],\n            [62.75542565292986, 27.378923448184988],\n            [63.2338977395203, 27.21704702403071],\n            [63.31663170761959, 26.756532497661667],\n            [61.87418745305655, 26.239974880472104],\n            [61.49736290878419, 25.0782370061185],\n            [59.616134067630846, 25.380156561783778],\n            [58.525761346272304, 25.60996165618573],\n            [57.39725141788239, 25.73990204518364],\n            [56.970765822177555, 26.966106268821363],\n            [56.492138706290206, 27.143304755150197],\n            [55.723710158110066, 26.964633490501043],\n            [54.71508955263727, 26.480657863871514],\n            [53.49309695823135, 26.81236888275305],\n            [52.48359785340961, 27.580849107365495],\n            [51.52076256694742, 27.865689602158298],\n            [50.85294803243954, 28.814520575469388],\n            [50.115008579311585, 30.147772528599717],\n            [49.576850213423995, 29.985715236932407],\n            [48.94133344909855, 30.317090359004037],\n            [48.567971225789755, 29.926778265903522]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Qatar\",\n        \"sov_a3\": \"QAT\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Qatar\",\n        \"adm0_a3\": \"QAT\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Qatar\",\n        \"gu_a3\": \"QAT\",\n        \"su_dif\": 0,\n        \"subunit\": \"Qatar\",\n        \"su_a3\": \"QAT\",\n        \"brk_diff\": 0,\n        \"name\": \"Qatar\",\n        \"name_long\": \"Qatar\",\n        \"brk_a3\": \"QAT\",\n        \"brk_name\": \"Qatar\",\n        \"brk_group\": null,\n        \"abbrev\": \"Qatar\",\n        \"postal\": \"QA\",\n        \"formal_en\": \"State of Qatar\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Qatar\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Qatar\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 4,\n        \"pop_est\": 2832067,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 175837,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"2. High income: nonOECD\",\n        \"fips_10\": \"QA\",\n        \"iso_a2\": \"QA\",\n        \"iso_a2_eh\": \"QA\",\n        \"iso_a3\": \"QAT\",\n        \"iso_a3_eh\": \"QAT\",\n        \"iso_n3\": \"634\",\n        \"iso_n3_eh\": \"634\",\n        \"un_a3\": \"634\",\n        \"wb_a2\": \"QA\",\n        \"wb_a3\": \"QAT\",\n        \"woe_id\": 23424930,\n        \"woe_id_eh\": 23424930,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"QAT\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"QAT\",\n        \"adm0_a3_us\": \"QAT\",\n        \"adm0_a3_fr\": \"QAT\",\n        \"adm0_a3_ru\": \"QAT\",\n        \"adm0_a3_es\": \"QAT\",\n        \"adm0_a3_cn\": \"QAT\",\n        \"adm0_a3_tw\": \"QAT\",\n        \"adm0_a3_in\": \"QAT\",\n        \"adm0_a3_np\": \"QAT\",\n        \"adm0_a3_pk\": \"QAT\",\n        \"adm0_a3_de\": \"QAT\",\n        \"adm0_a3_gb\": \"QAT\",\n        \"adm0_a3_br\": \"QAT\",\n        \"adm0_a3_il\": \"QAT\",\n        \"adm0_a3_ps\": \"QAT\",\n        \"adm0_a3_sa\": \"QAT\",\n        \"adm0_a3_eg\": \"QAT\",\n        \"adm0_a3_ma\": \"QAT\",\n        \"adm0_a3_pt\": \"QAT\",\n        \"adm0_a3_ar\": \"QAT\",\n        \"adm0_a3_jp\": \"QAT\",\n        \"adm0_a3_ko\": \"QAT\",\n        \"adm0_a3_vn\": \"QAT\",\n        \"adm0_a3_tr\": \"QAT\",\n        \"adm0_a3_id\": \"QAT\",\n        \"adm0_a3_pl\": \"QAT\",\n        \"adm0_a3_gr\": \"QAT\",\n        \"adm0_a3_it\": \"QAT\",\n        \"adm0_a3_nl\": \"QAT\",\n        \"adm0_a3_se\": \"QAT\",\n        \"adm0_a3_bd\": \"QAT\",\n        \"adm0_a3_ua\": \"QAT\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Western Asia\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 51.143509,\n        \"label_y\": 25.237383,\n        \"ne_id\": 1159321197,\n        \"wikidataid\": \"Q846\",\n        \"name_ar\": \"قطر\",\n        \"name_bn\": \"কাতার\",\n        \"name_de\": \"Katar\",\n        \"name_en\": \"Qatar\",\n        \"name_es\": \"Catar\",\n        \"name_fa\": \"قطر\",\n        \"name_fr\": \"Qatar\",\n        \"name_el\": \"Κατάρ\",\n        \"name_he\": \"קטר\",\n        \"name_hi\": \"क़तर\",\n        \"name_hu\": \"Katar\",\n        \"name_id\": \"Qatar\",\n        \"name_it\": \"Qatar\",\n        \"name_ja\": \"カタール\",\n        \"name_ko\": \"카타르\",\n        \"name_nl\": \"Qatar\",\n        \"name_pl\": \"Katar\",\n        \"name_pt\": \"Catar\",\n        \"name_ru\": \"Катар\",\n        \"name_sv\": \"Qatar\",\n        \"name_tr\": \"Katar\",\n        \"name_uk\": \"Катар\",\n        \"name_ur\": \"قطر\",\n        \"name_vi\": \"Qatar\",\n        \"name_zh\": \"卡塔尔\",\n        \"name_zht\": \"卡達\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"QAT.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [50.81010827006958, 24.754742539971378],\n            [50.74391076030369, 25.482424221289396],\n            [51.013351678273494, 26.006991685484195],\n            [51.28646162293606, 26.11458201751587],\n            [51.58907881043726, 25.80111277923338],\n            [51.60670047384881, 25.21567047779874],\n            [51.38960778179063, 24.62738597258806],\n            [51.11241539897702, 24.556330878186724],\n            [50.81010827006958, 24.754742539971378]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Saudi Arabia\",\n        \"sov_a3\": \"SAU\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Saudi Arabia\",\n        \"adm0_a3\": \"SAU\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Saudi Arabia\",\n        \"gu_a3\": \"SAU\",\n        \"su_dif\": 0,\n        \"subunit\": \"Saudi Arabia\",\n        \"su_a3\": \"SAU\",\n        \"brk_diff\": 0,\n        \"name\": \"Saudi Arabia\",\n        \"name_long\": \"Saudi Arabia\",\n        \"brk_a3\": \"SAU\",\n        \"brk_name\": \"Saudi Arabia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Saud.\",\n        \"postal\": \"SA\",\n        \"formal_en\": \"Kingdom of Saudi Arabia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Saudi Arabia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Saudi Arabia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 6,\n        \"mapcolor13\": 7,\n        \"pop_est\": 34268528,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 792966,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"2. High income: nonOECD\",\n        \"fips_10\": \"SA\",\n        \"iso_a2\": \"SA\",\n        \"iso_a2_eh\": \"SA\",\n        \"iso_a3\": \"SAU\",\n        \"iso_a3_eh\": \"SAU\",\n        \"iso_n3\": \"682\",\n        \"iso_n3_eh\": \"682\",\n        \"un_a3\": \"682\",\n        \"wb_a2\": \"SA\",\n        \"wb_a3\": \"SAU\",\n        \"woe_id\": 23424938,\n        \"woe_id_eh\": 23424938,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"SAU\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"SAU\",\n        \"adm0_a3_us\": \"SAU\",\n        \"adm0_a3_fr\": \"SAU\",\n        \"adm0_a3_ru\": \"SAU\",\n        \"adm0_a3_es\": \"SAU\",\n        \"adm0_a3_cn\": \"SAU\",\n        \"adm0_a3_tw\": \"SAU\",\n        \"adm0_a3_in\": \"SAU\",\n        \"adm0_a3_np\": \"SAU\",\n        \"adm0_a3_pk\": \"SAU\",\n        \"adm0_a3_de\": \"SAU\",\n        \"adm0_a3_gb\": \"SAU\",\n        \"adm0_a3_br\": \"SAU\",\n        \"adm0_a3_il\": \"SAU\",\n        \"adm0_a3_ps\": \"SAU\",\n        \"adm0_a3_sa\": \"SAU\",\n        \"adm0_a3_eg\": \"SAU\",\n        \"adm0_a3_ma\": \"SAU\",\n        \"adm0_a3_pt\": \"SAU\",\n        \"adm0_a3_ar\": \"SAU\",\n        \"adm0_a3_jp\": \"SAU\",\n        \"adm0_a3_ko\": \"SAU\",\n        \"adm0_a3_vn\": \"SAU\",\n        \"adm0_a3_tr\": \"SAU\",\n        \"adm0_a3_id\": \"SAU\",\n        \"adm0_a3_pl\": \"SAU\",\n        \"adm0_a3_gr\": \"SAU\",\n        \"adm0_a3_it\": \"SAU\",\n        \"adm0_a3_nl\": \"SAU\",\n        \"adm0_a3_se\": \"SAU\",\n        \"adm0_a3_bd\": \"SAU\",\n        \"adm0_a3_ua\": \"SAU\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Western Asia\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 12,\n        \"long_len\": 12,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 7,\n        \"label_x\": 44.6996,\n        \"label_y\": 23.806908,\n        \"ne_id\": 1159321225,\n        \"wikidataid\": \"Q851\",\n        \"name_ar\": \"السعودية\",\n        \"name_bn\": \"সৌদি আরব\",\n        \"name_de\": \"Saudi-Arabien\",\n        \"name_en\": \"Saudi Arabia\",\n        \"name_es\": \"Arabia Saudita\",\n        \"name_fa\": \"عربستان سعودی\",\n        \"name_fr\": \"Arabie saoudite\",\n        \"name_el\": \"Σαουδική Αραβία\",\n        \"name_he\": \"ערב הסעודית\",\n        \"name_hi\": \"सउदी अरब\",\n        \"name_hu\": \"Szaúd-Arábia\",\n        \"name_id\": \"Arab Saudi\",\n        \"name_it\": \"Arabia Saudita\",\n        \"name_ja\": \"サウジアラビア\",\n        \"name_ko\": \"사우디아라비아\",\n        \"name_nl\": \"Saoedi-Arabië\",\n        \"name_pl\": \"Arabia Saudyjska\",\n        \"name_pt\": \"Arábia Saudita\",\n        \"name_ru\": \"Саудовская Аравия\",\n        \"name_sv\": \"Saudiarabien\",\n        \"name_tr\": \"Suudi Arabistan\",\n        \"name_uk\": \"Саудівська Аравія\",\n        \"name_ur\": \"سعودی عرب\",\n        \"name_vi\": \"Ả Rập Saudi\",\n        \"name_zh\": \"沙特阿拉伯\",\n        \"name_zht\": \"沙烏地阿拉伯\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"SAU.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [34.95603722508426, 29.356554673778845],\n            [36.06894087092206, 29.197494615184453],\n            [36.50121422704359, 29.505253607698705],\n            [36.74052778498725, 29.86528331147619],\n            [37.503581984209035, 30.003776150018407],\n            [37.66811974462638, 30.3386652694859],\n            [37.998848911294374, 30.508499864213135],\n            [37.00216556168101, 31.508412990844747],\n            [39.00488569515255, 32.01021698661498],\n            [39.19546837744497, 32.16100881604267],\n            [40.399994337736246, 31.889991766887935],\n            [41.889980910007836, 31.19000865327837],\n            [44.70949873228474, 29.178891099559383],\n            [46.568713413281756, 29.09902517345229],\n            [47.45982181172283, 29.002519436147224],\n            [47.708850538937384, 28.526062730416143],\n            [48.416094191283946, 28.55200429942667],\n            [48.80759484232718, 27.689627997339883],\n            [49.29955447774583, 27.46121816660981],\n            [49.47091352722566, 27.109999294538085],\n            [50.15242231629088, 26.689663194275997],\n            [50.212935418504685, 26.277026882425375],\n            [50.11330325704594, 25.94397227630425],\n            [50.239858839728754, 25.608049628190926],\n            [50.527386509000735, 25.327808335872103],\n            [50.66055667501689, 24.999895534764022],\n            [50.81010827006958, 24.754742539971378],\n            [51.11241539897702, 24.556330878186724],\n            [51.38960778179063, 24.62738597258806],\n            [51.57951867046327, 24.245497137951105],\n            [51.61770755392698, 24.01421926522883],\n            [52.000733270074335, 23.00115448657894],\n            [55.006803012924905, 22.496947536707136],\n            [55.208341098863194, 22.708329982997046],\n            [55.666659376859826, 22.00000112557234],\n            [54.99998172386236, 19.999994004796108],\n            [52.00000980002224, 19.000003363516058],\n            [49.11667158386487, 18.616667588774945],\n            [48.18334354024134, 18.166669216377315],\n            [47.46669477721763, 17.116681626854884],\n            [47.000004917189756, 16.949999294497445],\n            [46.74999433776165, 17.283338120996177],\n            [46.366658563020536, 17.233315334537636],\n            [45.39999922056876, 17.333335069238558],\n            [45.21665123879719, 17.433328965723334],\n            [44.06261315285508, 17.410358791569593],\n            [43.79151858905192, 17.31997671149111],\n            [43.380794305196105, 17.57998668056767],\n            [43.11579756040336, 17.088440456607373],\n            [43.21837527850275, 16.66688996018641],\n            [42.77933230975097, 16.347891343648683],\n            [42.649572788266084, 16.774635321514964],\n            [42.34798912941071, 17.075805568912003],\n            [42.270887892431226, 17.474721787989125],\n            [41.75438195167396, 17.833046169500975],\n            [41.22139122901558, 18.67159963630121],\n            [40.93934126156654, 19.486485297111756],\n            [40.247652215339826, 20.17463450772649],\n            [39.80168460466095, 20.338862209550058],\n            [39.139399448408284, 21.291904812092934],\n            [39.023695916506796, 21.986875311770195],\n            [39.06632897314759, 22.57965566659027],\n            [38.49277225114008, 23.688451036060854],\n            [38.02386030452362, 24.078685614512935],\n            [37.483634881344386, 24.285494696545015],\n            [37.154817742671185, 24.85848297779731],\n            [37.209491408036, 25.084541530858107],\n            [36.93162723160259, 25.60295949961018],\n            [36.639603712721225, 25.826227525327223],\n            [36.249136590323815, 26.57013560638488],\n            [35.64018151219639, 27.376520494083422],\n            [35.13018680190788, 28.06335195567472],\n            [34.63233605320798, 28.058546047471566],\n            [34.787778761541944, 28.6074272730597],\n            [34.832220493312946, 28.957483425404845],\n            [34.95603722508426, 29.356554673778845]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Pakistan\",\n        \"sov_a3\": \"PAK\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Pakistan\",\n        \"adm0_a3\": \"PAK\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Pakistan\",\n        \"gu_a3\": \"PAK\",\n        \"su_dif\": 0,\n        \"subunit\": \"Pakistan\",\n        \"su_a3\": \"PAK\",\n        \"brk_diff\": 0,\n        \"name\": \"Pakistan\",\n        \"name_long\": \"Pakistan\",\n        \"brk_a3\": \"PAK\",\n        \"brk_name\": \"Pakistan\",\n        \"brk_group\": null,\n        \"abbrev\": \"Pak.\",\n        \"postal\": \"PK\",\n        \"formal_en\": \"Islamic Republic of Pakistan\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Pakistan\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Pakistan\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 11,\n        \"pop_est\": 216565318,\n        \"pop_rank\": 17,\n        \"pop_year\": 2019,\n        \"gdp_md\": 278221,\n        \"gdp_year\": 2019,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"PK\",\n        \"iso_a2\": \"PK\",\n        \"iso_a2_eh\": \"PK\",\n        \"iso_a3\": \"PAK\",\n        \"iso_a3_eh\": \"PAK\",\n        \"iso_n3\": \"586\",\n        \"iso_n3_eh\": \"586\",\n        \"un_a3\": \"586\",\n        \"wb_a2\": \"PK\",\n        \"wb_a3\": \"PAK\",\n        \"woe_id\": 23424922,\n        \"woe_id_eh\": 23424922,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"PAK\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"PAK\",\n        \"adm0_a3_us\": \"PAK\",\n        \"adm0_a3_fr\": \"PAK\",\n        \"adm0_a3_ru\": \"PAK\",\n        \"adm0_a3_es\": \"PAK\",\n        \"adm0_a3_cn\": \"PAK\",\n        \"adm0_a3_tw\": \"PAK\",\n        \"adm0_a3_in\": \"PAK\",\n        \"adm0_a3_np\": \"PAK\",\n        \"adm0_a3_pk\": \"PAK\",\n        \"adm0_a3_de\": \"PAK\",\n        \"adm0_a3_gb\": \"PAK\",\n        \"adm0_a3_br\": \"PAK\",\n        \"adm0_a3_il\": \"PAK\",\n        \"adm0_a3_ps\": \"PAK\",\n        \"adm0_a3_sa\": \"PAK\",\n        \"adm0_a3_eg\": \"PAK\",\n        \"adm0_a3_ma\": \"PAK\",\n        \"adm0_a3_pt\": \"PAK\",\n        \"adm0_a3_ar\": \"PAK\",\n        \"adm0_a3_jp\": \"PAK\",\n        \"adm0_a3_ko\": \"PAK\",\n        \"adm0_a3_vn\": \"PAK\",\n        \"adm0_a3_tr\": \"PAK\",\n        \"adm0_a3_id\": \"PAK\",\n        \"adm0_a3_pl\": \"PAK\",\n        \"adm0_a3_gr\": \"PAK\",\n        \"adm0_a3_it\": \"PAK\",\n        \"adm0_a3_nl\": \"PAK\",\n        \"adm0_a3_se\": \"PAK\",\n        \"adm0_a3_bd\": \"PAK\",\n        \"adm0_a3_ua\": \"PAK\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Southern Asia\",\n        \"region_wb\": \"South Asia\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.7,\n        \"max_label\": 7,\n        \"label_x\": 68.545632,\n        \"label_y\": 29.328389,\n        \"ne_id\": 1159321153,\n        \"wikidataid\": \"Q843\",\n        \"name_ar\": \"باكستان\",\n        \"name_bn\": \"পাকিস্তান\",\n        \"name_de\": \"Pakistan\",\n        \"name_en\": \"Pakistan\",\n        \"name_es\": \"Pakistán\",\n        \"name_fa\": \"پاکستان\",\n        \"name_fr\": \"Pakistan\",\n        \"name_el\": \"Πακιστάν\",\n        \"name_he\": \"פקיסטן\",\n        \"name_hi\": \"पाकिस्तान\",\n        \"name_hu\": \"Pakisztán\",\n        \"name_id\": \"Pakistan\",\n        \"name_it\": \"Pakistan\",\n        \"name_ja\": \"パキスタン\",\n        \"name_ko\": \"파키스탄\",\n        \"name_nl\": \"Pakistan\",\n        \"name_pl\": \"Pakistan\",\n        \"name_pt\": \"Paquistão\",\n        \"name_ru\": \"Пакистан\",\n        \"name_sv\": \"Pakistan\",\n        \"name_tr\": \"Pakistan\",\n        \"name_uk\": \"Пакистан\",\n        \"name_ur\": \"پاکستان\",\n        \"name_vi\": \"Pakistan\",\n        \"name_zh\": \"巴基斯坦\",\n        \"name_zht\": \"巴基斯坦\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"PAK.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [77.83745079947457, 35.494009507787766],\n            [76.87172163280403, 34.65354401299274],\n            [75.75706098826834, 34.50492259372132],\n            [74.24020267120497, 34.748887030571254],\n            [73.74994835805197, 34.31769887952785],\n            [74.10429365427734, 33.44147329358685],\n            [74.45155927927871, 32.7648996038055],\n            [75.25864179881322, 32.2711054550405],\n            [74.40592898956501, 31.69263947196528],\n            [74.42138024282028, 30.979814764931177],\n            [73.45063846221743, 29.97641347911987],\n            [72.8237516620847, 28.961591701772054],\n            [71.77766564320032, 27.913180243434525],\n            [70.61649620960193, 27.989196275335868],\n            [69.51439293811313, 26.940965684511372],\n            [70.16892662952202, 26.491871649678842],\n            [70.2828731627256, 25.72222870533983],\n            [70.84469933460284, 25.21510203704352],\n            [71.04324018746823, 24.3565239527302],\n            [68.84259931831878, 24.35913361256094],\n            [68.1766451353734, 23.69196503345671],\n            [67.44366661974547, 23.94484365487699],\n            [67.14544192898907, 24.663611151624647],\n            [66.37282758979327, 25.42514089609385],\n            [64.53040774929113, 25.23703868255143],\n            [62.90570071803461, 25.21840932871021],\n            [61.49736290878419, 25.0782370061185],\n            [61.87418745305655, 26.239974880472104],\n            [63.31663170761959, 26.756532497661667],\n            [63.2338977395203, 27.21704702403071],\n            [62.75542565292986, 27.378923448184988],\n            [62.72783043808599, 28.25964488373539],\n            [61.77186811711863, 28.6993338078908],\n            [61.36930870956494, 29.303276272085924],\n            [60.87424848820879, 29.829238999952608],\n            [62.54985680527278, 29.31857249604431],\n            [63.55026085801117, 29.468330796826166],\n            [64.14800215033125, 29.340819200145972],\n            [64.35041873561852, 29.560030625928093],\n            [65.0468620136161, 29.472180691031905],\n            [66.34647260932442, 29.887943427036177],\n            [66.38145755398602, 30.738899237586452],\n            [66.93889122911847, 31.304911200479353],\n            [67.68339358914747, 31.30315420178142],\n            [67.79268924344478, 31.58293040620963],\n            [68.55693200060932, 31.713310044882018],\n            [68.92667687365767, 31.620189113892067],\n            [69.31776411324256, 31.901412258424443],\n            [69.26252200712256, 32.5019440780883],\n            [69.68714725126486, 33.105498969041236],\n            [70.3235941913716, 33.35853261975839],\n            [69.9305432473596, 34.02012014417511],\n            [70.8818030129884, 33.98885590263852],\n            [71.15677330921346, 34.34891144463215],\n            [71.11501875192164, 34.733125718722235],\n            [71.61307620635071, 35.153203436822864],\n            [71.49876793812109, 35.650563259416],\n            [71.26234826038575, 36.074387518857804],\n            [71.84629194528392, 36.50994232842986],\n            [72.92002485544447, 36.72000702569632],\n            [74.06755171091783, 36.83617564548845],\n            [74.57589277537298, 37.02084137628346],\n            [75.15802778514092, 37.13303091078912],\n            [75.89689741405013, 36.666806138651836],\n            [76.19284834178569, 35.89840342868783],\n            [77.83745079947457, 35.494009507787766]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Thailand\",\n        \"sov_a3\": \"THA\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Thailand\",\n        \"adm0_a3\": \"THA\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Thailand\",\n        \"gu_a3\": \"THA\",\n        \"su_dif\": 0,\n        \"subunit\": \"Thailand\",\n        \"su_a3\": \"THA\",\n        \"brk_diff\": 0,\n        \"name\": \"Thailand\",\n        \"name_long\": \"Thailand\",\n        \"brk_a3\": \"THA\",\n        \"brk_name\": \"Thailand\",\n        \"brk_group\": null,\n        \"abbrev\": \"Thai.\",\n        \"postal\": \"TH\",\n        \"formal_en\": \"Kingdom of Thailand\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Thailand\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Thailand\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 8,\n        \"mapcolor13\": 1,\n        \"pop_est\": 69625582,\n        \"pop_rank\": 16,\n        \"pop_year\": 2019,\n        \"gdp_md\": 543548,\n        \"gdp_year\": 2019,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"TH\",\n        \"iso_a2\": \"TH\",\n        \"iso_a2_eh\": \"TH\",\n        \"iso_a3\": \"THA\",\n        \"iso_a3_eh\": \"THA\",\n        \"iso_n3\": \"764\",\n        \"iso_n3_eh\": \"764\",\n        \"un_a3\": \"764\",\n        \"wb_a2\": \"TH\",\n        \"wb_a3\": \"THA\",\n        \"woe_id\": 23424960,\n        \"woe_id_eh\": 23424960,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"THA\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"THA\",\n        \"adm0_a3_us\": \"THA\",\n        \"adm0_a3_fr\": \"THA\",\n        \"adm0_a3_ru\": \"THA\",\n        \"adm0_a3_es\": \"THA\",\n        \"adm0_a3_cn\": \"THA\",\n        \"adm0_a3_tw\": \"THA\",\n        \"adm0_a3_in\": \"THA\",\n        \"adm0_a3_np\": \"THA\",\n        \"adm0_a3_pk\": \"THA\",\n        \"adm0_a3_de\": \"THA\",\n        \"adm0_a3_gb\": \"THA\",\n        \"adm0_a3_br\": \"THA\",\n        \"adm0_a3_il\": \"THA\",\n        \"adm0_a3_ps\": \"THA\",\n        \"adm0_a3_sa\": \"THA\",\n        \"adm0_a3_eg\": \"THA\",\n        \"adm0_a3_ma\": \"THA\",\n        \"adm0_a3_pt\": \"THA\",\n        \"adm0_a3_ar\": \"THA\",\n        \"adm0_a3_jp\": \"THA\",\n        \"adm0_a3_ko\": \"THA\",\n        \"adm0_a3_vn\": \"THA\",\n        \"adm0_a3_tr\": \"THA\",\n        \"adm0_a3_id\": \"THA\",\n        \"adm0_a3_pl\": \"THA\",\n        \"adm0_a3_gr\": \"THA\",\n        \"adm0_a3_it\": \"THA\",\n        \"adm0_a3_nl\": \"THA\",\n        \"adm0_a3_se\": \"THA\",\n        \"adm0_a3_bd\": \"THA\",\n        \"adm0_a3_ua\": \"THA\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"South-Eastern Asia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.7,\n        \"max_label\": 8,\n        \"label_x\": 101.073198,\n        \"label_y\": 15.45974,\n        \"ne_id\": 1159321305,\n        \"wikidataid\": \"Q869\",\n        \"name_ar\": \"تايلاند\",\n        \"name_bn\": \"থাইল্যান্ড\",\n        \"name_de\": \"Thailand\",\n        \"name_en\": \"Thailand\",\n        \"name_es\": \"Tailandia\",\n        \"name_fa\": \"تایلند\",\n        \"name_fr\": \"Thaïlande\",\n        \"name_el\": \"Ταϊλάνδη\",\n        \"name_he\": \"תאילנד\",\n        \"name_hi\": \"थाईलैण्ड\",\n        \"name_hu\": \"Thaiföld\",\n        \"name_id\": \"Thailand\",\n        \"name_it\": \"Thailandia\",\n        \"name_ja\": \"タイ王国\",\n        \"name_ko\": \"태국\",\n        \"name_nl\": \"Thailand\",\n        \"name_pl\": \"Tajlandia\",\n        \"name_pt\": \"Tailândia\",\n        \"name_ru\": \"Таиланд\",\n        \"name_sv\": \"Thailand\",\n        \"name_tr\": \"Tayland\",\n        \"name_uk\": \"Таїланд\",\n        \"name_ur\": \"تھائی لینڈ\",\n        \"name_vi\": \"Thái Lan\",\n        \"name_zh\": \"泰国\",\n        \"name_zht\": \"泰國\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"THA.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [105.21877689007889, 14.273211778210694],\n            [104.28141808473661, 14.416743068901367],\n            [102.98842207236163, 14.225721136934467],\n            [102.34809939983302, 13.394247341358223],\n            [102.5849324890267, 12.186594956913282],\n            [101.68715783081996, 12.645740057826572],\n            [100.83180952352487, 12.627084865769206],\n            [100.9784672383692, 13.412721665902566],\n            [100.09779747925111, 13.406856390837433],\n            [100.01873253784456, 12.307001044153354],\n            [99.47892052612363, 10.846366685423547],\n            [99.15377241414316, 9.963061428258555],\n            [99.22239871622676, 9.239255479362427],\n            [99.87383182169813, 9.20786204674512],\n            [100.27964684448622, 8.295152899606052],\n            [100.45927412313276, 7.429572658717177],\n            [101.01732791545273, 6.856868597842478],\n            [101.62307905477806, 6.74062246340192],\n            [102.14118696493638, 6.221636053894628],\n            [101.81428185425798, 5.810808417174242],\n            [101.15421878459387, 5.691384182147715],\n            [101.07551557821336, 6.204867051615921],\n            [100.25959638875696, 6.642824815289543],\n            [100.0857568705271, 6.464489447450291],\n            [99.69069054565576, 6.848212795433597],\n            [99.51964155476963, 7.34345388430276],\n            [98.9882528015123, 7.907993068875328],\n            [98.503786248776, 8.382305202666288],\n            [98.339661899817, 7.794511623562386],\n            [98.15000939330582, 8.350007432483878],\n            [98.25915001830626, 8.973922837759801],\n            [98.55355065307305, 9.932959906448545],\n            [99.03812055867398, 10.960545762572437],\n            [99.58728600463972, 11.892762762901697],\n            [99.19635379435167, 12.80474843998867],\n            [99.21201175333609, 13.269293728076464],\n            [99.09775516153876, 13.827502549693278],\n            [98.43081912637987, 14.622027696180837],\n            [98.1920740091914, 15.123702500870351],\n            [98.53737592976572, 15.308497422746084],\n            [98.90334842325676, 16.17782420497612],\n            [98.49376102091135, 16.83783559820793],\n            [97.85912275593486, 17.567946071843664],\n            [97.37589643757354, 18.445437730375815],\n            [97.79778283080441, 18.627080389881755],\n            [98.25372399291561, 19.708203029860044],\n            [98.95967573445488, 19.752980658440947],\n            [99.54330936075931, 20.186597601802063],\n            [100.11598758341785, 20.417849636308187],\n            [100.54888105672688, 20.109237982661128],\n            [100.60629357300316, 19.508344427971224],\n            [101.2820146016517, 19.462584947176765],\n            [101.03593143107777, 18.408928330961615],\n            [101.05954756063517, 17.51249725999449],\n            [102.11359175009248, 18.109101670804165],\n            [102.41300499879162, 17.932781683824288],\n            [102.99870568238771, 17.9616946476916],\n            [103.20019209189374, 18.309632066312773],\n            [103.9564766784853, 18.24095408779688],\n            [104.7169470560925, 17.42885895433008],\n            [104.7793205098688, 16.44186493577145],\n            [105.58903852745016, 15.570316066952858],\n            [105.54433841351769, 14.723933620660418],\n            [105.21877689007889, 14.273211778210694]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Kuwait\",\n        \"sov_a3\": \"KWT\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Kuwait\",\n        \"adm0_a3\": \"KWT\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Kuwait\",\n        \"gu_a3\": \"KWT\",\n        \"su_dif\": 0,\n        \"subunit\": \"Kuwait\",\n        \"su_a3\": \"KWT\",\n        \"brk_diff\": 0,\n        \"name\": \"Kuwait\",\n        \"name_long\": \"Kuwait\",\n        \"brk_a3\": \"KWT\",\n        \"brk_name\": \"Kuwait\",\n        \"brk_group\": null,\n        \"abbrev\": \"Kwt.\",\n        \"postal\": \"KW\",\n        \"formal_en\": \"State of Kuwait\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Kuwait\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Kuwait\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 2,\n        \"pop_est\": 4207083,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 134628,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"2. High income: nonOECD\",\n        \"fips_10\": \"KU\",\n        \"iso_a2\": \"KW\",\n        \"iso_a2_eh\": \"KW\",\n        \"iso_a3\": \"KWT\",\n        \"iso_a3_eh\": \"KWT\",\n        \"iso_n3\": \"414\",\n        \"iso_n3_eh\": \"414\",\n        \"un_a3\": \"414\",\n        \"wb_a2\": \"KW\",\n        \"wb_a3\": \"KWT\",\n        \"woe_id\": 23424870,\n        \"woe_id_eh\": 23424870,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"KWT\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"KWT\",\n        \"adm0_a3_us\": \"KWT\",\n        \"adm0_a3_fr\": \"KWT\",\n        \"adm0_a3_ru\": \"KWT\",\n        \"adm0_a3_es\": \"KWT\",\n        \"adm0_a3_cn\": \"KWT\",\n        \"adm0_a3_tw\": \"KWT\",\n        \"adm0_a3_in\": \"KWT\",\n        \"adm0_a3_np\": \"KWT\",\n        \"adm0_a3_pk\": \"KWT\",\n        \"adm0_a3_de\": \"KWT\",\n        \"adm0_a3_gb\": \"KWT\",\n        \"adm0_a3_br\": \"KWT\",\n        \"adm0_a3_il\": \"KWT\",\n        \"adm0_a3_ps\": \"KWT\",\n        \"adm0_a3_sa\": \"KWT\",\n        \"adm0_a3_eg\": \"KWT\",\n        \"adm0_a3_ma\": \"KWT\",\n        \"adm0_a3_pt\": \"KWT\",\n        \"adm0_a3_ar\": \"KWT\",\n        \"adm0_a3_jp\": \"KWT\",\n        \"adm0_a3_ko\": \"KWT\",\n        \"adm0_a3_vn\": \"KWT\",\n        \"adm0_a3_tr\": \"KWT\",\n        \"adm0_a3_id\": \"KWT\",\n        \"adm0_a3_pl\": \"KWT\",\n        \"adm0_a3_gr\": \"KWT\",\n        \"adm0_a3_it\": \"KWT\",\n        \"adm0_a3_nl\": \"KWT\",\n        \"adm0_a3_se\": \"KWT\",\n        \"adm0_a3_bd\": \"KWT\",\n        \"adm0_a3_ua\": \"KWT\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Western Asia\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 5,\n        \"max_label\": 10,\n        \"label_x\": 47.313999,\n        \"label_y\": 29.413628,\n        \"ne_id\": 1159321009,\n        \"wikidataid\": \"Q817\",\n        \"name_ar\": \"الكويت\",\n        \"name_bn\": \"কুয়েত\",\n        \"name_de\": \"Kuwait\",\n        \"name_en\": \"Kuwait\",\n        \"name_es\": \"Kuwait\",\n        \"name_fa\": \"کویت\",\n        \"name_fr\": \"Koweït\",\n        \"name_el\": \"Κουβέιτ\",\n        \"name_he\": \"כווית\",\n        \"name_hi\": \"कुवैत\",\n        \"name_hu\": \"Kuvait\",\n        \"name_id\": \"Kuwait\",\n        \"name_it\": \"Kuwait\",\n        \"name_ja\": \"クウェート\",\n        \"name_ko\": \"쿠웨이트\",\n        \"name_nl\": \"Koeweit\",\n        \"name_pl\": \"Kuwejt\",\n        \"name_pt\": \"Kuwait\",\n        \"name_ru\": \"Кувейт\",\n        \"name_sv\": \"Kuwait\",\n        \"name_tr\": \"Kuveyt\",\n        \"name_uk\": \"Кувейт\",\n        \"name_ur\": \"کویت\",\n        \"name_vi\": \"Kuwait\",\n        \"name_zh\": \"科威特\",\n        \"name_zht\": \"科威特\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"KWT.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [47.974519077349896, 29.975819200148504],\n            [48.18318851094449, 29.534476630159762],\n            [48.09394331237642, 29.306299343375002],\n            [48.416094191283946, 28.55200429942667],\n            [47.708850538937384, 28.526062730416143],\n            [47.45982181172283, 29.002519436147224],\n            [46.568713413281756, 29.09902517345229],\n            [47.30262210469096, 30.059069932570722],\n            [47.974519077349896, 29.975819200148504]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"East Timor\",\n        \"sov_a3\": \"TLS\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"East Timor\",\n        \"adm0_a3\": \"TLS\",\n        \"geou_dif\": 0,\n        \"geounit\": \"East Timor\",\n        \"gu_a3\": \"TLS\",\n        \"su_dif\": 0,\n        \"subunit\": \"East Timor\",\n        \"su_a3\": \"TLS\",\n        \"brk_diff\": 0,\n        \"name\": \"Timor-Leste\",\n        \"name_long\": \"Timor-Leste\",\n        \"brk_a3\": \"TLS\",\n        \"brk_name\": \"Timor-Leste\",\n        \"brk_group\": null,\n        \"abbrev\": \"T.L.\",\n        \"postal\": \"TL\",\n        \"formal_en\": \"Democratic Republic of Timor-Leste\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Timor-Leste\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Timor-Leste\",\n        \"name_alt\": \"East Timor\",\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 3,\n        \"pop_est\": 1293119,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 2017,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"TT\",\n        \"iso_a2\": \"TL\",\n        \"iso_a2_eh\": \"TL\",\n        \"iso_a3\": \"TLS\",\n        \"iso_a3_eh\": \"TLS\",\n        \"iso_n3\": \"626\",\n        \"iso_n3_eh\": \"626\",\n        \"un_a3\": \"626\",\n        \"wb_a2\": \"TP\",\n        \"wb_a3\": \"TMP\",\n        \"woe_id\": 23424968,\n        \"woe_id_eh\": 23424968,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"TLS\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"TLS\",\n        \"adm0_a3_us\": \"TLS\",\n        \"adm0_a3_fr\": \"TLS\",\n        \"adm0_a3_ru\": \"TLS\",\n        \"adm0_a3_es\": \"TLS\",\n        \"adm0_a3_cn\": \"TLS\",\n        \"adm0_a3_tw\": \"TLS\",\n        \"adm0_a3_in\": \"TLS\",\n        \"adm0_a3_np\": \"TLS\",\n        \"adm0_a3_pk\": \"TLS\",\n        \"adm0_a3_de\": \"TLS\",\n        \"adm0_a3_gb\": \"TLS\",\n        \"adm0_a3_br\": \"TLS\",\n        \"adm0_a3_il\": \"TLS\",\n        \"adm0_a3_ps\": \"TLS\",\n        \"adm0_a3_sa\": \"TLS\",\n        \"adm0_a3_eg\": \"TLS\",\n        \"adm0_a3_ma\": \"TLS\",\n        \"adm0_a3_pt\": \"TLS\",\n        \"adm0_a3_ar\": \"TLS\",\n        \"adm0_a3_jp\": \"TLS\",\n        \"adm0_a3_ko\": \"TLS\",\n        \"adm0_a3_vn\": \"TLS\",\n        \"adm0_a3_tr\": \"TLS\",\n        \"adm0_a3_id\": \"TLS\",\n        \"adm0_a3_pl\": \"TLS\",\n        \"adm0_a3_gr\": \"TLS\",\n        \"adm0_a3_it\": \"TLS\",\n        \"adm0_a3_nl\": \"TLS\",\n        \"adm0_a3_se\": \"TLS\",\n        \"adm0_a3_bd\": \"TLS\",\n        \"adm0_a3_ua\": \"TLS\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"South-Eastern Asia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 11,\n        \"long_len\": 11,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 125.854679,\n        \"label_y\": -8.803705,\n        \"ne_id\": 1159321313,\n        \"wikidataid\": \"Q574\",\n        \"name_ar\": \"تيمور الشرقية\",\n        \"name_bn\": \"পূর্ব তিমুর\",\n        \"name_de\": \"Osttimor\",\n        \"name_en\": \"East Timor\",\n        \"name_es\": \"Timor Oriental\",\n        \"name_fa\": \"تیمور شرقی\",\n        \"name_fr\": \"Timor oriental\",\n        \"name_el\": \"Ανατολικό Τιμόρ\",\n        \"name_he\": \"מזרח טימור\",\n        \"name_hi\": \"पूर्वी तिमोर\",\n        \"name_hu\": \"Kelet-Timor\",\n        \"name_id\": \"Timor Leste\",\n        \"name_it\": \"Timor Est\",\n        \"name_ja\": \"東ティモール\",\n        \"name_ko\": \"동티모르\",\n        \"name_nl\": \"Oost-Timor\",\n        \"name_pl\": \"Timor Wschodni\",\n        \"name_pt\": \"Timor-Leste\",\n        \"name_ru\": \"Восточный Тимор\",\n        \"name_sv\": \"Östtimor\",\n        \"name_tr\": \"Doğu Timor\",\n        \"name_uk\": \"Східний Тимор\",\n        \"name_ur\": \"مشرقی تیمور\",\n        \"name_vi\": \"Đông Timor\",\n        \"name_zh\": \"东帝汶\",\n        \"name_zht\": \"東帝汶\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"TLS.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [124.96868248911623, -8.892790215697083],\n            [125.08624637258026, -8.65688730228468],\n            [125.94707238169826, -8.432094821815035],\n            [126.64470421763855, -8.398246758663852],\n            [126.95724328013983, -8.273344821814398],\n            [127.33592817597463, -8.397316582882603],\n            [126.96799197805655, -8.668256117388893],\n            [125.9258850444586, -9.106007175333353],\n            [125.08852013560109, -9.393173109579294],\n            [125.07001997284061, -9.089987481322872],\n            [124.96868248911623, -8.892790215697083]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Brunei\",\n        \"sov_a3\": \"BRN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Brunei\",\n        \"adm0_a3\": \"BRN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Brunei\",\n        \"gu_a3\": \"BRN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Brunei\",\n        \"su_a3\": \"BRN\",\n        \"brk_diff\": 0,\n        \"name\": \"Brunei\",\n        \"name_long\": \"Brunei Darussalam\",\n        \"brk_a3\": \"BRN\",\n        \"brk_name\": \"Brunei\",\n        \"brk_group\": null,\n        \"abbrev\": \"Brunei\",\n        \"postal\": \"BN\",\n        \"formal_en\": \"Negara Brunei Darussalam\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Brunei\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Brunei\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 6,\n        \"mapcolor13\": 12,\n        \"pop_est\": 433285,\n        \"pop_rank\": 10,\n        \"pop_year\": 2019,\n        \"gdp_md\": 13469,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"2. High income: nonOECD\",\n        \"fips_10\": \"BX\",\n        \"iso_a2\": \"BN\",\n        \"iso_a2_eh\": \"BN\",\n        \"iso_a3\": \"BRN\",\n        \"iso_a3_eh\": \"BRN\",\n        \"iso_n3\": \"096\",\n        \"iso_n3_eh\": \"096\",\n        \"un_a3\": \"096\",\n        \"wb_a2\": \"BN\",\n        \"wb_a3\": \"BRN\",\n        \"woe_id\": 23424773,\n        \"woe_id_eh\": 23424773,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"BRN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"BRN\",\n        \"adm0_a3_us\": \"BRN\",\n        \"adm0_a3_fr\": \"BRN\",\n        \"adm0_a3_ru\": \"BRN\",\n        \"adm0_a3_es\": \"BRN\",\n        \"adm0_a3_cn\": \"BRN\",\n        \"adm0_a3_tw\": \"BRN\",\n        \"adm0_a3_in\": \"BRN\",\n        \"adm0_a3_np\": \"BRN\",\n        \"adm0_a3_pk\": \"BRN\",\n        \"adm0_a3_de\": \"BRN\",\n        \"adm0_a3_gb\": \"BRN\",\n        \"adm0_a3_br\": \"BRN\",\n        \"adm0_a3_il\": \"BRN\",\n        \"adm0_a3_ps\": \"BRN\",\n        \"adm0_a3_sa\": \"BRN\",\n        \"adm0_a3_eg\": \"BRN\",\n        \"adm0_a3_ma\": \"BRN\",\n        \"adm0_a3_pt\": \"BRN\",\n        \"adm0_a3_ar\": \"BRN\",\n        \"adm0_a3_jp\": \"BRN\",\n        \"adm0_a3_ko\": \"BRN\",\n        \"adm0_a3_vn\": \"BRN\",\n        \"adm0_a3_tr\": \"BRN\",\n        \"adm0_a3_id\": \"BRN\",\n        \"adm0_a3_pl\": \"BRN\",\n        \"adm0_a3_gr\": \"BRN\",\n        \"adm0_a3_it\": \"BRN\",\n        \"adm0_a3_nl\": \"BRN\",\n        \"adm0_a3_se\": \"BRN\",\n        \"adm0_a3_bd\": \"BRN\",\n        \"adm0_a3_ua\": \"BRN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"South-Eastern Asia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 6,\n        \"long_len\": 17,\n        \"abbrev_len\": 6,\n        \"tiny\": 2,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 114.551943,\n        \"label_y\": 4.448298,\n        \"ne_id\": 1159320451,\n        \"wikidataid\": \"Q921\",\n        \"name_ar\": \"بروناي\",\n        \"name_bn\": \"ব্রুনাই\",\n        \"name_de\": \"Brunei\",\n        \"name_en\": \"Brunei\",\n        \"name_es\": \"Brunéi\",\n        \"name_fa\": \"برونئی\",\n        \"name_fr\": \"Brunei\",\n        \"name_el\": \"Μπρουνέι\",\n        \"name_he\": \"ברוניי\",\n        \"name_hi\": \"ब्रुनेई\",\n        \"name_hu\": \"Brunei\",\n        \"name_id\": \"Brunei Darussalam\",\n        \"name_it\": \"Brunei\",\n        \"name_ja\": \"ブルネイ\",\n        \"name_ko\": \"브루나이\",\n        \"name_nl\": \"Brunei\",\n        \"name_pl\": \"Brunei\",\n        \"name_pt\": \"Brunei\",\n        \"name_ru\": \"Бруней\",\n        \"name_sv\": \"Brunei\",\n        \"name_tr\": \"Brunei\",\n        \"name_uk\": \"Бруней\",\n        \"name_ur\": \"برونائی دار السلام\",\n        \"name_vi\": \"Brunei\",\n        \"name_zh\": \"文莱\",\n        \"name_zht\": \"汶萊\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"BRN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [115.45071048386981, 5.447729803891534],\n            [115.40570031134361, 4.955227565933839],\n            [115.34746097215066, 4.316636053887009],\n            [114.8695573263154, 4.348313706881925],\n            [114.65959598191353, 4.007636826997754],\n            [114.20401655482837, 4.525873928236805],\n            [114.59996137904872, 4.900011298029966],\n            [115.45071048386981, 5.447729803891534]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Myanmar\",\n        \"sov_a3\": \"MMR\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Myanmar\",\n        \"adm0_a3\": \"MMR\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Myanmar\",\n        \"gu_a3\": \"MMR\",\n        \"su_dif\": 0,\n        \"subunit\": \"Myanmar\",\n        \"su_a3\": \"MMR\",\n        \"brk_diff\": 0,\n        \"name\": \"Myanmar\",\n        \"name_long\": \"Myanmar\",\n        \"brk_a3\": \"MMR\",\n        \"brk_name\": \"Myanmar\",\n        \"brk_group\": null,\n        \"abbrev\": \"Myan.\",\n        \"postal\": \"MM\",\n        \"formal_en\": \"Republic of the Union of Myanmar\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Burma\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Myanmar\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 13,\n        \"pop_est\": 54045420,\n        \"pop_rank\": 16,\n        \"pop_year\": 2019,\n        \"gdp_md\": 76085,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"BM\",\n        \"iso_a2\": \"MM\",\n        \"iso_a2_eh\": \"MM\",\n        \"iso_a3\": \"MMR\",\n        \"iso_a3_eh\": \"MMR\",\n        \"iso_n3\": \"104\",\n        \"iso_n3_eh\": \"104\",\n        \"un_a3\": \"104\",\n        \"wb_a2\": \"MM\",\n        \"wb_a3\": \"MMR\",\n        \"woe_id\": 23424763,\n        \"woe_id_eh\": 23424763,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"MMR\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"MMR\",\n        \"adm0_a3_us\": \"MMR\",\n        \"adm0_a3_fr\": \"MMR\",\n        \"adm0_a3_ru\": \"MMR\",\n        \"adm0_a3_es\": \"MMR\",\n        \"adm0_a3_cn\": \"MMR\",\n        \"adm0_a3_tw\": \"MMR\",\n        \"adm0_a3_in\": \"MMR\",\n        \"adm0_a3_np\": \"MMR\",\n        \"adm0_a3_pk\": \"MMR\",\n        \"adm0_a3_de\": \"MMR\",\n        \"adm0_a3_gb\": \"MMR\",\n        \"adm0_a3_br\": \"MMR\",\n        \"adm0_a3_il\": \"MMR\",\n        \"adm0_a3_ps\": \"MMR\",\n        \"adm0_a3_sa\": \"MMR\",\n        \"adm0_a3_eg\": \"MMR\",\n        \"adm0_a3_ma\": \"MMR\",\n        \"adm0_a3_pt\": \"MMR\",\n        \"adm0_a3_ar\": \"MMR\",\n        \"adm0_a3_jp\": \"MMR\",\n        \"adm0_a3_ko\": \"MMR\",\n        \"adm0_a3_vn\": \"MMR\",\n        \"adm0_a3_tr\": \"MMR\",\n        \"adm0_a3_id\": \"MMR\",\n        \"adm0_a3_pl\": \"MMR\",\n        \"adm0_a3_gr\": \"MMR\",\n        \"adm0_a3_it\": \"MMR\",\n        \"adm0_a3_nl\": \"MMR\",\n        \"adm0_a3_se\": \"MMR\",\n        \"adm0_a3_bd\": \"MMR\",\n        \"adm0_a3_ua\": \"MMR\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"South-Eastern Asia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 95.804497,\n        \"label_y\": 21.573855,\n        \"ne_id\": 1159321067,\n        \"wikidataid\": \"Q836\",\n        \"name_ar\": \"ميانمار\",\n        \"name_bn\": \"মিয়ানমার\",\n        \"name_de\": \"Myanmar\",\n        \"name_en\": \"Myanmar\",\n        \"name_es\": \"Birmania\",\n        \"name_fa\": \"میانمار\",\n        \"name_fr\": \"Birmanie\",\n        \"name_el\": \"Μιανμάρ\",\n        \"name_he\": \"מיאנמר\",\n        \"name_hi\": \"म्यान्मार\",\n        \"name_hu\": \"Mianmar\",\n        \"name_id\": \"Myanmar\",\n        \"name_it\": \"Birmania\",\n        \"name_ja\": \"ミャンマー\",\n        \"name_ko\": \"미얀마\",\n        \"name_nl\": \"Myanmar\",\n        \"name_pl\": \"Mjanma\",\n        \"name_pt\": \"Myanmar\",\n        \"name_ru\": \"Мьянма\",\n        \"name_sv\": \"Myanmar\",\n        \"name_tr\": \"Myanmar\",\n        \"name_uk\": \"М'янма\",\n        \"name_ur\": \"میانمار\",\n        \"name_vi\": \"Myanma\",\n        \"name_zh\": \"缅甸\",\n        \"name_zht\": \"緬甸\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"MMR.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [100.11598758341785, 20.417849636308187],\n            [99.54330936075931, 20.186597601802063],\n            [98.95967573445488, 19.752980658440947],\n            [98.25372399291561, 19.708203029860044],\n            [97.79778283080441, 18.627080389881755],\n            [97.37589643757354, 18.445437730375815],\n            [97.85912275593486, 17.567946071843664],\n            [98.49376102091135, 16.83783559820793],\n            [98.90334842325676, 16.17782420497612],\n            [98.53737592976572, 15.308497422746084],\n            [98.1920740091914, 15.123702500870351],\n            [98.43081912637987, 14.622027696180837],\n            [99.09775516153876, 13.827502549693278],\n            [99.21201175333609, 13.269293728076464],\n            [99.19635379435167, 12.80474843998867],\n            [99.58728600463972, 11.892762762901697],\n            [99.03812055867398, 10.960545762572437],\n            [98.55355065307305, 9.932959906448545],\n            [98.45717410684873, 10.67526601810515],\n            [98.76454552612078, 11.441291612183749],\n            [98.42833865762985, 12.032986761925685],\n            [98.50957400919268, 13.122377631070677],\n            [98.1036039571077, 13.640459703012851],\n            [97.77773237507517, 14.837285874892642],\n            [97.59707156778276, 16.10056793869977],\n            [97.1645398294998, 16.92873444260934],\n            [96.505768670643, 16.42724050543285],\n            [95.3693522481124, 15.7143899601826],\n            [94.80840457558412, 15.80345429123764],\n            [94.18880415240454, 16.037936102762018],\n            [94.53348595579135, 17.277240301985728],\n            [94.32481652219676, 18.2135139022499],\n            [93.54098839719364, 19.366492621330025],\n            [93.66325483599621, 19.726961574781996],\n            [93.07827762245219, 19.855144965081976],\n            [92.36855350135562, 20.670883287025347],\n            [92.30323449093868, 21.47548533780982],\n            [92.65225711463799, 21.324047552978485],\n            [92.67272098182556, 22.041238918541254],\n            [93.16612755734837, 22.278459580977103],\n            [93.06029422401463, 22.70311066333557],\n            [93.28632693885928, 23.043658352139005],\n            [93.3251876159428, 24.078556423432204],\n            [94.10674197792507, 23.85074087167348],\n            [94.55265791217164, 24.675238348890336],\n            [94.60324913938538, 25.162495428970402],\n            [95.1551534362626, 26.001307277932085],\n            [95.12476769407496, 26.5735720891323],\n            [96.41936567585097, 27.264589341739224],\n            [97.1339990580153, 27.083773505149964],\n            [97.0519885599681, 27.69905894623315],\n            [97.40256147663614, 27.882536119085444],\n            [97.32711388549004, 28.26158274994634],\n            [97.91198774616944, 28.335945136014345],\n            [98.2462309102333, 27.74722138112918],\n            [98.68269005737046, 27.50881216075062],\n            [98.71209394734451, 26.743535874940267],\n            [98.67183800658916, 25.918702500913525],\n            [97.72460900267914, 25.083637193293],\n            [97.60471967976198, 23.897404690033042],\n            [98.66026248575577, 24.063286037689966],\n            [98.89874922078278, 23.14272207284253],\n            [99.5319922220874, 22.94903880461258],\n            [99.24089887898725, 22.11831431730458],\n            [99.98348921102149, 21.7429367131364],\n            [100.41653771362738, 21.558839423096614],\n            [101.15003299357825, 21.849984442629022],\n            [101.18000532430754, 21.436572984294028],\n            [100.32910119018953, 20.786121731036232],\n            [100.11598758341785, 20.417849636308187]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Bangladesh\",\n        \"sov_a3\": \"BGD\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Bangladesh\",\n        \"adm0_a3\": \"BGD\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Bangladesh\",\n        \"gu_a3\": \"BGD\",\n        \"su_dif\": 0,\n        \"subunit\": \"Bangladesh\",\n        \"su_a3\": \"BGD\",\n        \"brk_diff\": 0,\n        \"name\": \"Bangladesh\",\n        \"name_long\": \"Bangladesh\",\n        \"brk_a3\": \"BGD\",\n        \"brk_name\": \"Bangladesh\",\n        \"brk_group\": null,\n        \"abbrev\": \"Bang.\",\n        \"postal\": \"BD\",\n        \"formal_en\": \"People's Republic of Bangladesh\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Bangladesh\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Bangladesh\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 7,\n        \"mapcolor13\": 7,\n        \"pop_est\": 163046161,\n        \"pop_rank\": 17,\n        \"pop_year\": 2019,\n        \"gdp_md\": 302571,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"BG\",\n        \"iso_a2\": \"BD\",\n        \"iso_a2_eh\": \"BD\",\n        \"iso_a3\": \"BGD\",\n        \"iso_a3_eh\": \"BGD\",\n        \"iso_n3\": \"050\",\n        \"iso_n3_eh\": \"050\",\n        \"un_a3\": \"050\",\n        \"wb_a2\": \"BD\",\n        \"wb_a3\": \"BGD\",\n        \"woe_id\": 23424759,\n        \"woe_id_eh\": 23424759,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"BGD\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"BGD\",\n        \"adm0_a3_us\": \"BGD\",\n        \"adm0_a3_fr\": \"BGD\",\n        \"adm0_a3_ru\": \"BGD\",\n        \"adm0_a3_es\": \"BGD\",\n        \"adm0_a3_cn\": \"BGD\",\n        \"adm0_a3_tw\": \"BGD\",\n        \"adm0_a3_in\": \"BGD\",\n        \"adm0_a3_np\": \"BGD\",\n        \"adm0_a3_pk\": \"BGD\",\n        \"adm0_a3_de\": \"BGD\",\n        \"adm0_a3_gb\": \"BGD\",\n        \"adm0_a3_br\": \"BGD\",\n        \"adm0_a3_il\": \"BGD\",\n        \"adm0_a3_ps\": \"BGD\",\n        \"adm0_a3_sa\": \"BGD\",\n        \"adm0_a3_eg\": \"BGD\",\n        \"adm0_a3_ma\": \"BGD\",\n        \"adm0_a3_pt\": \"BGD\",\n        \"adm0_a3_ar\": \"BGD\",\n        \"adm0_a3_jp\": \"BGD\",\n        \"adm0_a3_ko\": \"BGD\",\n        \"adm0_a3_vn\": \"BGD\",\n        \"adm0_a3_tr\": \"BGD\",\n        \"adm0_a3_id\": \"BGD\",\n        \"adm0_a3_pl\": \"BGD\",\n        \"adm0_a3_gr\": \"BGD\",\n        \"adm0_a3_it\": \"BGD\",\n        \"adm0_a3_nl\": \"BGD\",\n        \"adm0_a3_se\": \"BGD\",\n        \"adm0_a3_bd\": \"BGD\",\n        \"adm0_a3_ua\": \"BGD\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Southern Asia\",\n        \"region_wb\": \"South Asia\",\n        \"name_len\": 10,\n        \"long_len\": 10,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 89.684963,\n        \"label_y\": 24.214956,\n        \"ne_id\": 1159320407,\n        \"wikidataid\": \"Q902\",\n        \"name_ar\": \"بنغلاديش\",\n        \"name_bn\": \"বাংলাদেশ\",\n        \"name_de\": \"Bangladesch\",\n        \"name_en\": \"Bangladesh\",\n        \"name_es\": \"Bangladés\",\n        \"name_fa\": \"بنگلادش\",\n        \"name_fr\": \"Bangladesh\",\n        \"name_el\": \"Μπανγκλαντές\",\n        \"name_he\": \"בנגלדש\",\n        \"name_hi\": \"बांग्लादेश\",\n        \"name_hu\": \"Banglades\",\n        \"name_id\": \"Bangladesh\",\n        \"name_it\": \"Bangladesh\",\n        \"name_ja\": \"バングラデシュ\",\n        \"name_ko\": \"방글라데시\",\n        \"name_nl\": \"Bangladesh\",\n        \"name_pl\": \"Bangladesz\",\n        \"name_pt\": \"Bangladesh\",\n        \"name_ru\": \"Бангладеш\",\n        \"name_sv\": \"Bangladesh\",\n        \"name_tr\": \"Bangladeş\",\n        \"name_uk\": \"Бангладеш\",\n        \"name_ur\": \"بنگلہ دیش\",\n        \"name_vi\": \"Bangladesh\",\n        \"name_zh\": \"孟加拉国\",\n        \"name_zht\": \"孟加拉\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"BGD.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [92.67272098182556, 22.041238918541254],\n            [92.65225711463799, 21.324047552978485],\n            [92.30323449093868, 21.47548533780982],\n            [92.36855350135562, 20.670883287025347],\n            [92.08288618364614, 21.19219513598577],\n            [92.02521528520839, 21.701569729086767],\n            [91.83489098507744, 22.182935695885565],\n            [91.41708702999766, 22.76501902922122],\n            [90.49600630082728, 22.80501658781513],\n            [90.58695682166098, 22.392793687422866],\n            [90.27297081905556, 21.83636770272011],\n            [89.84746707556428, 22.039146023033425],\n            [89.70204959509493, 21.857115790285306],\n            [89.41886274613549, 21.9661789006373],\n            [89.03196129756623, 22.055708319582976],\n            [88.87631188350309, 22.87914642993783],\n            [88.52976972855379, 23.631141872649167],\n            [88.69994022009092, 24.23371491138856],\n            [88.08442223506242, 24.501657212821925],\n            [88.30637251175602, 24.866079413344206],\n            [88.93155398962308, 25.238692328384776],\n            [88.2097892598025, 25.768065700782714],\n            [88.56304935094977, 26.446525580342723],\n            [89.35509402868729, 26.014407253518073],\n            [89.83248091019962, 25.96508209889548],\n            [89.92069258012185, 25.26974986419218],\n            [90.87221072791212, 25.132600612889547],\n            [91.79959598182208, 25.147431748957317],\n            [92.37620161333481, 24.976692816664965],\n            [91.91509280799443, 24.130413723237112],\n            [91.46772993364368, 24.072639471934792],\n            [91.15896325069973, 23.50352692310439],\n            [91.70647505083211, 22.985263983649187],\n            [91.86992760617132, 23.624346421802784],\n            [92.14603478390681, 23.627498684172593],\n            [92.67272098182556, 22.041238918541254]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Afghanistan\",\n        \"sov_a3\": \"AFG\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Afghanistan\",\n        \"adm0_a3\": \"AFG\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Afghanistan\",\n        \"gu_a3\": \"AFG\",\n        \"su_dif\": 0,\n        \"subunit\": \"Afghanistan\",\n        \"su_a3\": \"AFG\",\n        \"brk_diff\": 0,\n        \"name\": \"Afghanistan\",\n        \"name_long\": \"Afghanistan\",\n        \"brk_a3\": \"AFG\",\n        \"brk_name\": \"Afghanistan\",\n        \"brk_group\": null,\n        \"abbrev\": \"Afg.\",\n        \"postal\": \"AF\",\n        \"formal_en\": \"Islamic State of Afghanistan\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Afghanistan\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Afghanistan\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 8,\n        \"mapcolor13\": 7,\n        \"pop_est\": 38041754,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 19291,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"AF\",\n        \"iso_a2\": \"AF\",\n        \"iso_a2_eh\": \"AF\",\n        \"iso_a3\": \"AFG\",\n        \"iso_a3_eh\": \"AFG\",\n        \"iso_n3\": \"004\",\n        \"iso_n3_eh\": \"004\",\n        \"un_a3\": \"004\",\n        \"wb_a2\": \"AF\",\n        \"wb_a3\": \"AFG\",\n        \"woe_id\": 23424739,\n        \"woe_id_eh\": 23424739,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"AFG\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"AFG\",\n        \"adm0_a3_us\": \"AFG\",\n        \"adm0_a3_fr\": \"AFG\",\n        \"adm0_a3_ru\": \"AFG\",\n        \"adm0_a3_es\": \"AFG\",\n        \"adm0_a3_cn\": \"AFG\",\n        \"adm0_a3_tw\": \"AFG\",\n        \"adm0_a3_in\": \"AFG\",\n        \"adm0_a3_np\": \"AFG\",\n        \"adm0_a3_pk\": \"AFG\",\n        \"adm0_a3_de\": \"AFG\",\n        \"adm0_a3_gb\": \"AFG\",\n        \"adm0_a3_br\": \"AFG\",\n        \"adm0_a3_il\": \"AFG\",\n        \"adm0_a3_ps\": \"AFG\",\n        \"adm0_a3_sa\": \"AFG\",\n        \"adm0_a3_eg\": \"AFG\",\n        \"adm0_a3_ma\": \"AFG\",\n        \"adm0_a3_pt\": \"AFG\",\n        \"adm0_a3_ar\": \"AFG\",\n        \"adm0_a3_jp\": \"AFG\",\n        \"adm0_a3_ko\": \"AFG\",\n        \"adm0_a3_vn\": \"AFG\",\n        \"adm0_a3_tr\": \"AFG\",\n        \"adm0_a3_id\": \"AFG\",\n        \"adm0_a3_pl\": \"AFG\",\n        \"adm0_a3_gr\": \"AFG\",\n        \"adm0_a3_it\": \"AFG\",\n        \"adm0_a3_nl\": \"AFG\",\n        \"adm0_a3_se\": \"AFG\",\n        \"adm0_a3_bd\": \"AFG\",\n        \"adm0_a3_ua\": \"AFG\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Southern Asia\",\n        \"region_wb\": \"South Asia\",\n        \"name_len\": 11,\n        \"long_len\": 11,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 7,\n        \"label_x\": 66.496586,\n        \"label_y\": 34.164262,\n        \"ne_id\": 1159320319,\n        \"wikidataid\": \"Q889\",\n        \"name_ar\": \"أفغانستان\",\n        \"name_bn\": \"আফগানিস্তান\",\n        \"name_de\": \"Afghanistan\",\n        \"name_en\": \"Afghanistan\",\n        \"name_es\": \"Afganistán\",\n        \"name_fa\": \"افغانستان\",\n        \"name_fr\": \"Afghanistan\",\n        \"name_el\": \"Αφγανιστάν\",\n        \"name_he\": \"אפגניסטן\",\n        \"name_hi\": \"अफ़्गानिस्तान\",\n        \"name_hu\": \"Afganisztán\",\n        \"name_id\": \"Afganistan\",\n        \"name_it\": \"Afghanistan\",\n        \"name_ja\": \"アフガニスタン\",\n        \"name_ko\": \"아프가니스탄\",\n        \"name_nl\": \"Afghanistan\",\n        \"name_pl\": \"Afganistan\",\n        \"name_pt\": \"Afeganistão\",\n        \"name_ru\": \"Афганистан\",\n        \"name_sv\": \"Afghanistan\",\n        \"name_tr\": \"Afganistan\",\n        \"name_uk\": \"Афганістан\",\n        \"name_ur\": \"افغانستان\",\n        \"name_vi\": \"Afghanistan\",\n        \"name_zh\": \"阿富汗\",\n        \"name_zht\": \"阿富汗\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"AFG.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [66.51860680528867, 37.36278432875879],\n            [67.07578209825962, 37.35614390720929],\n            [67.82999962755952, 37.144994004864685],\n            [68.13556237170138, 37.02311513930431],\n            [68.85944583524594, 37.344335842430596],\n            [69.19627282092438, 37.15114350030743],\n            [69.51878543485796, 37.60899669041342],\n            [70.11657840361033, 37.58822276463209],\n            [70.27057417184014, 37.735164699854025],\n            [70.3763041523093, 38.13839590102752],\n            [70.80682050973289, 38.486281643216415],\n            [71.34813113799026, 38.25890534113216],\n            [71.23940392444817, 37.953265082341886],\n            [71.54191775908478, 37.905774441065645],\n            [71.44869347523024, 37.06564484308052],\n            [71.8446382994506, 36.73817129164692],\n            [72.1930408059624, 36.948287665345674],\n            [72.63688968291729, 37.047558091778356],\n            [73.26005577992501, 37.495256862939],\n            [73.9486959166465, 37.4215662704908],\n            [74.98000247589542, 37.419990139305895],\n            [75.15802778514092, 37.13303091078912],\n            [74.57589277537298, 37.02084137628346],\n            [74.06755171091783, 36.83617564548845],\n            [72.92002485544447, 36.72000702569632],\n            [71.84629194528392, 36.50994232842986],\n            [71.26234826038575, 36.074387518857804],\n            [71.49876793812109, 35.650563259416],\n            [71.61307620635071, 35.153203436822864],\n            [71.11501875192164, 34.733125718722235],\n            [71.15677330921346, 34.34891144463215],\n            [70.8818030129884, 33.98885590263852],\n            [69.9305432473596, 34.02012014417511],\n            [70.3235941913716, 33.35853261975839],\n            [69.68714725126486, 33.105498969041236],\n            [69.26252200712256, 32.5019440780883],\n            [69.31776411324256, 31.901412258424443],\n            [68.92667687365767, 31.620189113892067],\n            [68.55693200060932, 31.713310044882018],\n            [67.79268924344478, 31.58293040620963],\n            [67.68339358914747, 31.30315420178142],\n            [66.93889122911847, 31.304911200479353],\n            [66.38145755398602, 30.738899237586452],\n            [66.34647260932442, 29.887943427036177],\n            [65.0468620136161, 29.472180691031905],\n            [64.35041873561852, 29.560030625928093],\n            [64.14800215033125, 29.340819200145972],\n            [63.55026085801117, 29.468330796826166],\n            [62.54985680527278, 29.31857249604431],\n            [60.87424848820879, 29.829238999952608],\n            [61.781221551363444, 30.735850328081238],\n            [61.69931440618083, 31.379506130492672],\n            [60.94194461451113, 31.548074652628753],\n            [60.863654819588966, 32.18291962333443],\n            [60.536077915290775, 32.98126882581157],\n            [60.963700392506006, 33.52883230237626],\n            [60.52842980331158, 33.676446031218006],\n            [60.80319339380745, 34.40410187431986],\n            [61.210817091725744, 35.650072333309225],\n            [62.230651483005886, 35.270663967422294],\n            [62.98466230657661, 35.40404083916762],\n            [63.19353844590035, 35.857165635718914],\n            [63.98289594915871, 36.0079574651466],\n            [64.5464791197339, 36.31207326918427],\n            [64.7461051776774, 37.111817735333304],\n            [65.58894778835784, 37.30521678318564],\n            [65.74563073106683, 37.66116404881207],\n            [66.21738488145934, 37.39379018813392],\n            [66.51860680528867, 37.36278432875879]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Turkmenistan\",\n        \"sov_a3\": \"TKM\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Turkmenistan\",\n        \"adm0_a3\": \"TKM\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Turkmenistan\",\n        \"gu_a3\": \"TKM\",\n        \"su_dif\": 0,\n        \"subunit\": \"Turkmenistan\",\n        \"su_a3\": \"TKM\",\n        \"brk_diff\": 0,\n        \"name\": \"Turkmenistan\",\n        \"name_long\": \"Turkmenistan\",\n        \"brk_a3\": \"TKM\",\n        \"brk_name\": \"Turkmenistan\",\n        \"brk_group\": null,\n        \"abbrev\": \"Turkm.\",\n        \"postal\": \"TM\",\n        \"formal_en\": \"Turkmenistan\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Turkmenistan\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Turkmenistan\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 9,\n        \"pop_est\": 5942089,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 40761,\n        \"gdp_year\": 2018,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"TX\",\n        \"iso_a2\": \"TM\",\n        \"iso_a2_eh\": \"TM\",\n        \"iso_a3\": \"TKM\",\n        \"iso_a3_eh\": \"TKM\",\n        \"iso_n3\": \"795\",\n        \"iso_n3_eh\": \"795\",\n        \"un_a3\": \"795\",\n        \"wb_a2\": \"TM\",\n        \"wb_a3\": \"TKM\",\n        \"woe_id\": 23424972,\n        \"woe_id_eh\": 23424972,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"TKM\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"TKM\",\n        \"adm0_a3_us\": \"TKM\",\n        \"adm0_a3_fr\": \"TKM\",\n        \"adm0_a3_ru\": \"TKM\",\n        \"adm0_a3_es\": \"TKM\",\n        \"adm0_a3_cn\": \"TKM\",\n        \"adm0_a3_tw\": \"TKM\",\n        \"adm0_a3_in\": \"TKM\",\n        \"adm0_a3_np\": \"TKM\",\n        \"adm0_a3_pk\": \"TKM\",\n        \"adm0_a3_de\": \"TKM\",\n        \"adm0_a3_gb\": \"TKM\",\n        \"adm0_a3_br\": \"TKM\",\n        \"adm0_a3_il\": \"TKM\",\n        \"adm0_a3_ps\": \"TKM\",\n        \"adm0_a3_sa\": \"TKM\",\n        \"adm0_a3_eg\": \"TKM\",\n        \"adm0_a3_ma\": \"TKM\",\n        \"adm0_a3_pt\": \"TKM\",\n        \"adm0_a3_ar\": \"TKM\",\n        \"adm0_a3_jp\": \"TKM\",\n        \"adm0_a3_ko\": \"TKM\",\n        \"adm0_a3_vn\": \"TKM\",\n        \"adm0_a3_tr\": \"TKM\",\n        \"adm0_a3_id\": \"TKM\",\n        \"adm0_a3_pl\": \"TKM\",\n        \"adm0_a3_gr\": \"TKM\",\n        \"adm0_a3_it\": \"TKM\",\n        \"adm0_a3_nl\": \"TKM\",\n        \"adm0_a3_se\": \"TKM\",\n        \"adm0_a3_bd\": \"TKM\",\n        \"adm0_a3_ua\": \"TKM\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Central Asia\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 12,\n        \"long_len\": 12,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 58.676647,\n        \"label_y\": 39.855246,\n        \"ne_id\": 1159321309,\n        \"wikidataid\": \"Q874\",\n        \"name_ar\": \"تركمانستان\",\n        \"name_bn\": \"তুর্কমেনিস্তান\",\n        \"name_de\": \"Turkmenistan\",\n        \"name_en\": \"Turkmenistan\",\n        \"name_es\": \"Turkmenistán\",\n        \"name_fa\": \"ترکمنستان\",\n        \"name_fr\": \"Turkménistan\",\n        \"name_el\": \"Τουρκμενιστάν\",\n        \"name_he\": \"טורקמניסטן\",\n        \"name_hi\": \"तुर्कमेनिस्तान\",\n        \"name_hu\": \"Türkmenisztán\",\n        \"name_id\": \"Turkmenistan\",\n        \"name_it\": \"Turkmenistan\",\n        \"name_ja\": \"トルクメニスタン\",\n        \"name_ko\": \"투르크메니스탄\",\n        \"name_nl\": \"Turkmenistan\",\n        \"name_pl\": \"Turkmenistan\",\n        \"name_pt\": \"Turquemenistão\",\n        \"name_ru\": \"Туркмения\",\n        \"name_sv\": \"Turkmenistan\",\n        \"name_tr\": \"Türkmenistan\",\n        \"name_uk\": \"Туркменістан\",\n        \"name_ur\": \"ترکمانستان\",\n        \"name_vi\": \"Turkmenistan\",\n        \"name_zh\": \"土库曼斯坦\",\n        \"name_zht\": \"土庫曼\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"TKM.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [52.50245975119615, 41.78331553808637],\n            [52.944293247291654, 42.11603424739759],\n            [54.07941775901495, 42.32410940202083],\n            [54.75534549339264, 42.043971462566574],\n            [55.45525109235377, 41.25985911718584],\n            [55.96819135928291, 41.30864166926936],\n            [57.0963912290791, 41.32231008561057],\n            [56.932215203687804, 41.826026109375604],\n            [57.78652998233708, 42.17055288346552],\n            [58.62901085799146, 42.75155101172305],\n            [59.976422153569786, 42.22308197689021],\n            [60.083340691981675, 41.425146185871405],\n            [60.465952996670694, 41.22032664648255],\n            [61.54717898951356, 41.266370347654615],\n            [61.88271406438469, 41.084856879229406],\n            [62.374260288345006, 40.05388621679039],\n            [63.51801476426103, 39.36325653742564],\n            [64.17022301621677, 38.892406724598246],\n            [65.2159989765074, 38.4026950139843],\n            [66.54615034370022, 37.97468496352687],\n            [66.51860680528867, 37.36278432875879],\n            [66.21738488145934, 37.39379018813392],\n            [65.74563073106683, 37.66116404881207],\n            [65.58894778835784, 37.30521678318564],\n            [64.7461051776774, 37.111817735333304],\n            [64.5464791197339, 36.31207326918427],\n            [63.98289594915871, 36.0079574651466],\n            [63.19353844590035, 35.857165635718914],\n            [62.98466230657661, 35.40404083916762],\n            [62.230651483005886, 35.270663967422294],\n            [61.210817091725744, 35.650072333309225],\n            [61.123070509694145, 36.491597194966246],\n            [60.37763797388388, 36.52738312432837],\n            [59.23476199731681, 37.41298798273034],\n            [58.436154412678206, 37.5223094752438],\n            [57.330433790928986, 38.02922943781094],\n            [56.61936608259282, 38.121394354803485],\n            [56.18037479027333, 37.93512665460743],\n            [55.51157840355191, 37.96411713312317],\n            [54.800303989486565, 37.392420762678185],\n            [53.92159793479556, 37.19891836196126],\n            [53.73551110211252, 37.90613617609169],\n            [53.880928582581845, 38.95209300389536],\n            [53.1010278664329, 39.29057363540713],\n            [53.35780805849123, 39.97528636327445],\n            [52.69397260926982, 40.03362905533197],\n            [52.915251092343624, 40.87652334244473],\n            [53.858139275941134, 40.63103445084218],\n            [54.73684533063215, 40.95101491959346],\n            [54.008310988181314, 41.55121084244742],\n            [53.72171349469059, 42.12319143327003],\n            [52.916749708880076, 41.86811656347733],\n            [52.81468875510362, 41.13537059179471],\n            [52.50245975119615, 41.78331553808637]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Jordan\",\n        \"sov_a3\": \"JOR\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Jordan\",\n        \"adm0_a3\": \"JOR\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Jordan\",\n        \"gu_a3\": \"JOR\",\n        \"su_dif\": 0,\n        \"subunit\": \"Jordan\",\n        \"su_a3\": \"JOR\",\n        \"brk_diff\": 0,\n        \"name\": \"Jordan\",\n        \"name_long\": \"Jordan\",\n        \"brk_a3\": \"JOR\",\n        \"brk_name\": \"Jordan\",\n        \"brk_group\": null,\n        \"abbrev\": \"Jord.\",\n        \"postal\": \"J\",\n        \"formal_en\": \"Hashemite Kingdom of Jordan\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Jordan\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Jordan\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 4,\n        \"pop_est\": 10101694,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 44502,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"JO\",\n        \"iso_a2\": \"JO\",\n        \"iso_a2_eh\": \"JO\",\n        \"iso_a3\": \"JOR\",\n        \"iso_a3_eh\": \"JOR\",\n        \"iso_n3\": \"400\",\n        \"iso_n3_eh\": \"400\",\n        \"un_a3\": \"400\",\n        \"wb_a2\": \"JO\",\n        \"wb_a3\": \"JOR\",\n        \"woe_id\": 23424860,\n        \"woe_id_eh\": 23424860,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"JOR\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"JOR\",\n        \"adm0_a3_us\": \"JOR\",\n        \"adm0_a3_fr\": \"JOR\",\n        \"adm0_a3_ru\": \"JOR\",\n        \"adm0_a3_es\": \"JOR\",\n        \"adm0_a3_cn\": \"JOR\",\n        \"adm0_a3_tw\": \"JOR\",\n        \"adm0_a3_in\": \"JOR\",\n        \"adm0_a3_np\": \"JOR\",\n        \"adm0_a3_pk\": \"JOR\",\n        \"adm0_a3_de\": \"JOR\",\n        \"adm0_a3_gb\": \"JOR\",\n        \"adm0_a3_br\": \"JOR\",\n        \"adm0_a3_il\": \"JOR\",\n        \"adm0_a3_ps\": \"JOR\",\n        \"adm0_a3_sa\": \"JOR\",\n        \"adm0_a3_eg\": \"JOR\",\n        \"adm0_a3_ma\": \"JOR\",\n        \"adm0_a3_pt\": \"JOR\",\n        \"adm0_a3_ar\": \"JOR\",\n        \"adm0_a3_jp\": \"JOR\",\n        \"adm0_a3_ko\": \"JOR\",\n        \"adm0_a3_vn\": \"JOR\",\n        \"adm0_a3_tr\": \"JOR\",\n        \"adm0_a3_id\": \"JOR\",\n        \"adm0_a3_pl\": \"JOR\",\n        \"adm0_a3_gr\": \"JOR\",\n        \"adm0_a3_it\": \"JOR\",\n        \"adm0_a3_nl\": \"JOR\",\n        \"adm0_a3_se\": \"JOR\",\n        \"adm0_a3_bd\": \"JOR\",\n        \"adm0_a3_ua\": \"JOR\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Western Asia\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 36.375991,\n        \"label_y\": 30.805025,\n        \"ne_id\": 1159320935,\n        \"wikidataid\": \"Q810\",\n        \"name_ar\": \"الأردن\",\n        \"name_bn\": \"জর্ডান\",\n        \"name_de\": \"Jordanien\",\n        \"name_en\": \"Jordan\",\n        \"name_es\": \"Jordania\",\n        \"name_fa\": \"اردن\",\n        \"name_fr\": \"Jordanie\",\n        \"name_el\": \"Ιορδανία\",\n        \"name_he\": \"ירדן\",\n        \"name_hi\": \"जॉर्डन\",\n        \"name_hu\": \"Jordánia\",\n        \"name_id\": \"Yordania\",\n        \"name_it\": \"Giordania\",\n        \"name_ja\": \"ヨルダン\",\n        \"name_ko\": \"요르단\",\n        \"name_nl\": \"Jordanië\",\n        \"name_pl\": \"Jordania\",\n        \"name_pt\": \"Jordânia\",\n        \"name_ru\": \"Иордания\",\n        \"name_sv\": \"Jordanien\",\n        \"name_tr\": \"Ürdün\",\n        \"name_uk\": \"Йорданія\",\n        \"name_ur\": \"اردن\",\n        \"name_vi\": \"Jordan\",\n        \"name_zh\": \"约旦\",\n        \"name_zht\": \"約旦\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"JOR.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [35.54566531753454, 32.393992011030576],\n            [35.71991824722275, 32.709192409794866],\n            [36.834062127435544, 32.312937526980775],\n            [38.792340529136084, 33.378686428352225],\n            [39.19546837744497, 32.16100881604267],\n            [39.00488569515255, 32.01021698661498],\n            [37.00216556168101, 31.508412990844747],\n            [37.998848911294374, 30.508499864213135],\n            [37.66811974462638, 30.3386652694859],\n            [37.503581984209035, 30.003776150018407],\n            [36.74052778498725, 29.86528331147619],\n            [36.50121422704359, 29.505253607698705],\n            [36.06894087092206, 29.197494615184453],\n            [34.95603722508426, 29.356554673778845],\n            [34.92260257339143, 29.501326198844524],\n            [35.420918409981965, 31.100065822874356],\n            [35.397560662586045, 31.489086005167582],\n            [35.5452519060762, 31.78250478772084],\n            [35.54566531753454, 32.393992011030576]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Nepal\",\n        \"sov_a3\": \"NPL\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Nepal\",\n        \"adm0_a3\": \"NPL\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Nepal\",\n        \"gu_a3\": \"NPL\",\n        \"su_dif\": 0,\n        \"subunit\": \"Nepal\",\n        \"su_a3\": \"NPL\",\n        \"brk_diff\": 0,\n        \"name\": \"Nepal\",\n        \"name_long\": \"Nepal\",\n        \"brk_a3\": \"NPL\",\n        \"brk_name\": \"Nepal\",\n        \"brk_group\": null,\n        \"abbrev\": \"Nepal\",\n        \"postal\": \"NP\",\n        \"formal_en\": \"Nepal\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Nepal\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Nepal\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 12,\n        \"pop_est\": 28608710,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 30641,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"NP\",\n        \"iso_a2\": \"NP\",\n        \"iso_a2_eh\": \"NP\",\n        \"iso_a3\": \"NPL\",\n        \"iso_a3_eh\": \"NPL\",\n        \"iso_n3\": \"524\",\n        \"iso_n3_eh\": \"524\",\n        \"un_a3\": \"524\",\n        \"wb_a2\": \"NP\",\n        \"wb_a3\": \"NPL\",\n        \"woe_id\": 23424911,\n        \"woe_id_eh\": 23424911,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"NPL\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"NPL\",\n        \"adm0_a3_us\": \"NPL\",\n        \"adm0_a3_fr\": \"NPL\",\n        \"adm0_a3_ru\": \"NPL\",\n        \"adm0_a3_es\": \"NPL\",\n        \"adm0_a3_cn\": \"NPL\",\n        \"adm0_a3_tw\": \"NPL\",\n        \"adm0_a3_in\": \"NPL\",\n        \"adm0_a3_np\": \"NPL\",\n        \"adm0_a3_pk\": \"NPL\",\n        \"adm0_a3_de\": \"NPL\",\n        \"adm0_a3_gb\": \"NPL\",\n        \"adm0_a3_br\": \"NPL\",\n        \"adm0_a3_il\": \"NPL\",\n        \"adm0_a3_ps\": \"NPL\",\n        \"adm0_a3_sa\": \"NPL\",\n        \"adm0_a3_eg\": \"NPL\",\n        \"adm0_a3_ma\": \"NPL\",\n        \"adm0_a3_pt\": \"NPL\",\n        \"adm0_a3_ar\": \"NPL\",\n        \"adm0_a3_jp\": \"NPL\",\n        \"adm0_a3_ko\": \"NPL\",\n        \"adm0_a3_vn\": \"NPL\",\n        \"adm0_a3_tr\": \"NPL\",\n        \"adm0_a3_id\": \"NPL\",\n        \"adm0_a3_pl\": \"NPL\",\n        \"adm0_a3_gr\": \"NPL\",\n        \"adm0_a3_it\": \"NPL\",\n        \"adm0_a3_nl\": \"NPL\",\n        \"adm0_a3_se\": \"NPL\",\n        \"adm0_a3_bd\": \"NPL\",\n        \"adm0_a3_ua\": \"NPL\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Southern Asia\",\n        \"region_wb\": \"South Asia\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 83.639914,\n        \"label_y\": 28.297925,\n        \"ne_id\": 1159321121,\n        \"wikidataid\": \"Q837\",\n        \"name_ar\": \"نيبال\",\n        \"name_bn\": \"নেপাল\",\n        \"name_de\": \"Nepal\",\n        \"name_en\": \"Nepal\",\n        \"name_es\": \"Nepal\",\n        \"name_fa\": \"نپال\",\n        \"name_fr\": \"Népal\",\n        \"name_el\": \"Νεπάλ\",\n        \"name_he\": \"נפאל\",\n        \"name_hi\": \"नेपाल\",\n        \"name_hu\": \"Nepál\",\n        \"name_id\": \"Nepal\",\n        \"name_it\": \"Nepal\",\n        \"name_ja\": \"ネパール\",\n        \"name_ko\": \"네팔\",\n        \"name_nl\": \"Nepal\",\n        \"name_pl\": \"Nepal\",\n        \"name_pt\": \"Nepal\",\n        \"name_ru\": \"Непал\",\n        \"name_sv\": \"Nepal\",\n        \"name_tr\": \"Nepal\",\n        \"name_uk\": \"Непал\",\n        \"name_ur\": \"نیپال\",\n        \"name_vi\": \"Nepal\",\n        \"name_zh\": \"尼泊尔\",\n        \"name_zht\": \"尼泊爾\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"NPL.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [88.12044070836987, 27.876541652939594],\n            [88.04313276566123, 27.445818589786825],\n            [88.17480431514092, 26.81040517832595],\n            [88.06023766474982, 26.41461538340249],\n            [87.2274719583663, 26.397898057556077],\n            [86.02439293817918, 26.63098460540857],\n            [85.25177859898338, 26.726198431906344],\n            [84.6750179381738, 27.234901231387536],\n            [83.30424889519955, 27.36450572357556],\n            [81.99998742058497, 27.925479234319994],\n            [81.05720258985203, 28.416095282499043],\n            [80.08842451367627, 28.79447011974014],\n            [80.4767212259174, 29.72986522065534],\n            [81.11125613802932, 30.183480943313402],\n            [81.52580447787474, 30.42271698660863],\n            [82.32751264845088, 30.115268052688137],\n            [83.33711510613719, 29.463731594352197],\n            [83.89899295444673, 29.320226141877658],\n            [84.23457970575015, 28.839893703724698],\n            [85.01163821812304, 28.642773952747344],\n            [85.82331994013151, 28.203575954698707],\n            [86.9545170430006, 27.974261786403517],\n            [88.12044070836987, 27.876541652939594]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Yemen\",\n        \"sov_a3\": \"YEM\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Yemen\",\n        \"adm0_a3\": \"YEM\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Yemen\",\n        \"gu_a3\": \"YEM\",\n        \"su_dif\": 0,\n        \"subunit\": \"Yemen\",\n        \"su_a3\": \"YEM\",\n        \"brk_diff\": 0,\n        \"name\": \"Yemen\",\n        \"name_long\": \"Yemen\",\n        \"brk_a3\": \"YEM\",\n        \"brk_name\": \"Yemen\",\n        \"brk_group\": null,\n        \"abbrev\": \"Yem.\",\n        \"postal\": \"YE\",\n        \"formal_en\": \"Republic of Yemen\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Yemen\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Yemen, Rep.\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 11,\n        \"pop_est\": 29161922,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 22581,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"YM\",\n        \"iso_a2\": \"YE\",\n        \"iso_a2_eh\": \"YE\",\n        \"iso_a3\": \"YEM\",\n        \"iso_a3_eh\": \"YEM\",\n        \"iso_n3\": \"887\",\n        \"iso_n3_eh\": \"887\",\n        \"un_a3\": \"887\",\n        \"wb_a2\": \"RY\",\n        \"wb_a3\": \"YEM\",\n        \"woe_id\": 23425002,\n        \"woe_id_eh\": 23425002,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"YEM\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"YEM\",\n        \"adm0_a3_us\": \"YEM\",\n        \"adm0_a3_fr\": \"YEM\",\n        \"adm0_a3_ru\": \"YEM\",\n        \"adm0_a3_es\": \"YEM\",\n        \"adm0_a3_cn\": \"YEM\",\n        \"adm0_a3_tw\": \"YEM\",\n        \"adm0_a3_in\": \"YEM\",\n        \"adm0_a3_np\": \"YEM\",\n        \"adm0_a3_pk\": \"YEM\",\n        \"adm0_a3_de\": \"YEM\",\n        \"adm0_a3_gb\": \"YEM\",\n        \"adm0_a3_br\": \"YEM\",\n        \"adm0_a3_il\": \"YEM\",\n        \"adm0_a3_ps\": \"YEM\",\n        \"adm0_a3_sa\": \"YEM\",\n        \"adm0_a3_eg\": \"YEM\",\n        \"adm0_a3_ma\": \"YEM\",\n        \"adm0_a3_pt\": \"YEM\",\n        \"adm0_a3_ar\": \"YEM\",\n        \"adm0_a3_jp\": \"YEM\",\n        \"adm0_a3_ko\": \"YEM\",\n        \"adm0_a3_vn\": \"YEM\",\n        \"adm0_a3_tr\": \"YEM\",\n        \"adm0_a3_id\": \"YEM\",\n        \"adm0_a3_pl\": \"YEM\",\n        \"adm0_a3_gr\": \"YEM\",\n        \"adm0_a3_it\": \"YEM\",\n        \"adm0_a3_nl\": \"YEM\",\n        \"adm0_a3_se\": \"YEM\",\n        \"adm0_a3_bd\": \"YEM\",\n        \"adm0_a3_ua\": \"YEM\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Western Asia\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 45.874383,\n        \"label_y\": 15.328226,\n        \"ne_id\": 1159321425,\n        \"wikidataid\": \"Q805\",\n        \"name_ar\": \"اليمن\",\n        \"name_bn\": \"ইয়েমেন\",\n        \"name_de\": \"Jemen\",\n        \"name_en\": \"Yemen\",\n        \"name_es\": \"Yemen\",\n        \"name_fa\": \"یمن\",\n        \"name_fr\": \"Yémen\",\n        \"name_el\": \"Υεμένη\",\n        \"name_he\": \"תימן\",\n        \"name_hi\": \"यमन\",\n        \"name_hu\": \"Jemen\",\n        \"name_id\": \"Yaman\",\n        \"name_it\": \"Yemen\",\n        \"name_ja\": \"イエメン\",\n        \"name_ko\": \"예멘\",\n        \"name_nl\": \"Jemen\",\n        \"name_pl\": \"Jemen\",\n        \"name_pt\": \"Iémen\",\n        \"name_ru\": \"Йемен\",\n        \"name_sv\": \"Jemen\",\n        \"name_tr\": \"Yemen\",\n        \"name_uk\": \"Ємен\",\n        \"name_ur\": \"یمن\",\n        \"name_vi\": \"Yemen\",\n        \"name_zh\": \"也门\",\n        \"name_zht\": \"葉門\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"YEM.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [52.00000980002224, 19.000003363516058],\n            [52.78218427919205, 17.349742336491232],\n            [53.10857262554751, 16.651051133688952],\n            [52.38520592632588, 16.382411200419654],\n            [52.19172936382509, 15.93843313238402],\n            [52.1681649107, 15.597420355689948],\n            [51.172515089732485, 15.175249742081492],\n            [49.57457645040315, 14.708766587782748],\n            [48.67923058451416, 14.00320241948566],\n            [48.23894738138742, 13.948089504446372],\n            [47.938914015500785, 14.007233181204427],\n            [47.354453566279716, 13.592219753468383],\n            [46.717076450391744, 13.39969920496502],\n            [45.87759280781027, 13.347764390511685],\n            [45.62505008319988, 13.290946153206763],\n            [45.406458774605255, 13.026905422411433],\n            [45.14435591002086, 12.95393830001531],\n            [44.989533318874415, 12.69958690027471],\n            [44.49457645038285, 12.721652736863348],\n            [44.17511274595449, 12.585950425664876],\n            [43.48295861183713, 12.636800035040084],\n            [43.22287112811213, 13.220950425667425],\n            [43.25144819516953, 13.767583726450852],\n            [43.08794396339806, 14.06263031662131],\n            [42.892245314308724, 14.802249253798749],\n            [42.60487267433362, 15.213335272680595],\n            [42.80501549660005, 15.261962795467255],\n            [42.70243777850066, 15.718885809791999],\n            [42.823670688657415, 15.911742255105267],\n            [42.77933230975097, 16.347891343648683],\n            [43.21837527850275, 16.66688996018641],\n            [43.11579756040336, 17.088440456607373],\n            [43.380794305196105, 17.57998668056767],\n            [43.79151858905192, 17.31997671149111],\n            [44.06261315285508, 17.410358791569593],\n            [45.21665123879719, 17.433328965723334],\n            [45.39999922056876, 17.333335069238558],\n            [46.366658563020536, 17.233315334537636],\n            [46.74999433776165, 17.283338120996177],\n            [47.000004917189756, 16.949999294497445],\n            [47.46669477721763, 17.116681626854884],\n            [48.18334354024134, 18.166669216377315],\n            [49.11667158386487, 18.616667588774945],\n            [52.00000980002224, 19.000003363516058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Northern Cyprus\",\n        \"sov_a3\": \"CYN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Northern Cyprus\",\n        \"adm0_a3\": \"CYN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Northern Cyprus\",\n        \"gu_a3\": \"CYN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Northern Cyprus\",\n        \"su_a3\": \"CYN\",\n        \"brk_diff\": 0,\n        \"name\": \"N. Cyprus\",\n        \"name_long\": \"Northern Cyprus\",\n        \"brk_a3\": \"CYN\",\n        \"brk_name\": \"N. Cyprus\",\n        \"brk_group\": null,\n        \"abbrev\": \"N. Cy.\",\n        \"postal\": \"CN\",\n        \"formal_en\": \"Turkish Republic of Northern Cyprus\",\n        \"formal_fr\": null,\n        \"name_ciawf\": null,\n        \"note_adm0\": \"Self admin.\",\n        \"note_brk\": \"Self admin.; Claimed by Cyprus\",\n        \"name_sort\": \"Cyprus, Northern\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 8,\n        \"pop_est\": 326000,\n        \"pop_rank\": 10,\n        \"pop_year\": 2017,\n        \"gdp_md\": 3600,\n        \"gdp_year\": 2013,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"-99\",\n        \"iso_a2\": \"-99\",\n        \"iso_a2_eh\": \"-99\",\n        \"iso_a3\": \"-99\",\n        \"iso_a3_eh\": \"-99\",\n        \"iso_n3\": \"-99\",\n        \"iso_n3_eh\": \"-99\",\n        \"un_a3\": \"-099\",\n        \"wb_a2\": \"-99\",\n        \"wb_a3\": \"-99\",\n        \"woe_id\": -90,\n        \"woe_id_eh\": 23424995,\n        \"woe_note\": \"WOE lists as subunit of united Cyprus\",\n        \"adm0_iso\": \"CYP\",\n        \"adm0_diff\": \"1\",\n        \"adm0_tlc\": \"CYN\",\n        \"adm0_a3_us\": \"CYP\",\n        \"adm0_a3_fr\": \"CYP\",\n        \"adm0_a3_ru\": \"CYP\",\n        \"adm0_a3_es\": \"CYP\",\n        \"adm0_a3_cn\": \"CYP\",\n        \"adm0_a3_tw\": \"CYP\",\n        \"adm0_a3_in\": \"CYP\",\n        \"adm0_a3_np\": \"CYP\",\n        \"adm0_a3_pk\": \"CYP\",\n        \"adm0_a3_de\": \"CYP\",\n        \"adm0_a3_gb\": \"CYP\",\n        \"adm0_a3_br\": \"CYP\",\n        \"adm0_a3_il\": \"CYP\",\n        \"adm0_a3_ps\": \"CYP\",\n        \"adm0_a3_sa\": \"CYP\",\n        \"adm0_a3_eg\": \"CYP\",\n        \"adm0_a3_ma\": \"CYP\",\n        \"adm0_a3_pt\": \"CYP\",\n        \"adm0_a3_ar\": \"CYP\",\n        \"adm0_a3_jp\": \"CYP\",\n        \"adm0_a3_ko\": \"CYP\",\n        \"adm0_a3_vn\": \"CYP\",\n        \"adm0_a3_tr\": \"CYN\",\n        \"adm0_a3_id\": \"CYP\",\n        \"adm0_a3_pl\": \"CYP\",\n        \"adm0_a3_gr\": \"CYP\",\n        \"adm0_a3_it\": \"CYP\",\n        \"adm0_a3_nl\": \"CYP\",\n        \"adm0_a3_se\": \"CYP\",\n        \"adm0_a3_bd\": \"CYP\",\n        \"adm0_a3_ua\": \"CYP\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Western Asia\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 9,\n        \"long_len\": 15,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 6,\n        \"max_label\": 10,\n        \"label_x\": 33.692434,\n        \"label_y\": 35.216071,\n        \"ne_id\": 1159320531,\n        \"wikidataid\": \"Q23681\",\n        \"name_ar\": \"قبرص الشمالية\",\n        \"name_bn\": \"উত্তর সাইপ্রাস\",\n        \"name_de\": \"Türkische Republik Nordzypern\",\n        \"name_en\": \"Turkish Republic of Northern Cyprus\",\n        \"name_es\": \"República Turca del Norte de Chipre\",\n        \"name_fa\": \"جمهوری ترک قبرس شمالی\",\n        \"name_fr\": \"Chypre du Nord\",\n        \"name_el\": \"Τουρκική Δημοκρατία της Βόρειας Κύπρου\",\n        \"name_he\": \"הרפובליקה הטורקית של צפון קפריסין\",\n        \"name_hi\": \"उत्तरी साइप्रस\",\n        \"name_hu\": \"Észak-Ciprus\",\n        \"name_id\": \"Republik Turki Siprus Utara\",\n        \"name_it\": \"Cipro del Nord\",\n        \"name_ja\": \"北キプロス・トルコ共和国\",\n        \"name_ko\": \"북키프로스\",\n        \"name_nl\": \"Noord-Cyprus\",\n        \"name_pl\": \"Cypr Północny\",\n        \"name_pt\": \"República Turca do Chipre do Norte\",\n        \"name_ru\": \"Турецкая Республика Северного Кипра\",\n        \"name_sv\": \"Nordcypern\",\n        \"name_tr\": \"Kuzey Kıbrıs Türk Cumhuriyeti\",\n        \"name_uk\": \"Турецька Республіка Північного Кіпру\",\n        \"name_ur\": \"ترک جمہوریہ شمالی قبرص\",\n        \"name_vi\": \"Bắc Síp\",\n        \"name_zh\": \"北塞浦路斯土耳其共和国\",\n        \"name_zht\": \"北賽普勒斯土耳其共和國\",\n        \"fclass_iso\": \"Unrecognized\",\n        \"tlc_diff\": \"1\",\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": \"Admin-0 breakaway and disputed\",\n        \"fclass_fr\": \"Unrecognized\",\n        \"fclass_ru\": \"Unrecognized\",\n        \"fclass_es\": \"Unrecognized\",\n        \"fclass_cn\": \"Unrecognized\",\n        \"fclass_tw\": \"Unrecognized\",\n        \"fclass_in\": \"Unrecognized\",\n        \"fclass_np\": \"Unrecognized\",\n        \"fclass_pk\": \"Unrecognized\",\n        \"fclass_de\": \"Unrecognized\",\n        \"fclass_gb\": \"Unrecognized\",\n        \"fclass_br\": \"Unrecognized\",\n        \"fclass_il\": \"Unrecognized\",\n        \"fclass_ps\": \"Unrecognized\",\n        \"fclass_sa\": \"Unrecognized\",\n        \"fclass_eg\": \"Unrecognized\",\n        \"fclass_ma\": \"Unrecognized\",\n        \"fclass_pt\": \"Unrecognized\",\n        \"fclass_ar\": \"Unrecognized\",\n        \"fclass_jp\": \"Unrecognized\",\n        \"fclass_ko\": \"Unrecognized\",\n        \"fclass_vn\": \"Unrecognized\",\n        \"fclass_tr\": \"Admin-0 country\",\n        \"fclass_id\": \"Unrecognized\",\n        \"fclass_pl\": \"Unrecognized\",\n        \"fclass_gr\": \"Unrecognized\",\n        \"fclass_it\": \"Unrecognized\",\n        \"fclass_nl\": \"Unrecognized\",\n        \"fclass_se\": \"Unrecognized\",\n        \"fclass_bd\": \"Unrecognized\",\n        \"fclass_ua\": \"Unrecognized\",\n        \"filename\": \"CYN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [32.73178022637745, 35.14002594658844],\n            [32.80247358575275, 35.14550364841138],\n            [32.946960890440806, 35.3867033961337],\n            [33.667227003724946, 35.37321584730552],\n            [34.576473829900465, 35.67159556735879],\n            [33.900804477684204, 35.245755927057616],\n            [33.97361657078346, 35.058506374648005],\n            [33.86643965021011, 35.09359467217419],\n            [33.675391880027064, 35.01786286065045],\n            [33.5256852556775, 35.03868846286407],\n            [33.47581749851585, 35.000344550103506],\n            [33.45592207208347, 35.10142365166641],\n            [33.3838334490363, 35.16271190036457],\n            [33.19097700372305, 35.17312470147138],\n            [32.919572381326134, 35.08783274997364],\n            [32.73178022637745, 35.14002594658844]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Philippines\",\n        \"sov_a3\": \"PHL\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Philippines\",\n        \"adm0_a3\": \"PHL\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Philippines\",\n        \"gu_a3\": \"PHL\",\n        \"su_dif\": 0,\n        \"subunit\": \"Philippines\",\n        \"su_a3\": \"PHL\",\n        \"brk_diff\": 0,\n        \"name\": \"Philippines\",\n        \"name_long\": \"Philippines\",\n        \"brk_a3\": \"PHL\",\n        \"brk_name\": \"Philippines\",\n        \"brk_group\": null,\n        \"abbrev\": \"Phil.\",\n        \"postal\": \"PH\",\n        \"formal_en\": \"Republic of the Philippines\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Philippines\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Philippines\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 8,\n        \"pop_est\": 108116615,\n        \"pop_rank\": 17,\n        \"pop_year\": 2019,\n        \"gdp_md\": 376795,\n        \"gdp_year\": 2019,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"RP\",\n        \"iso_a2\": \"PH\",\n        \"iso_a2_eh\": \"PH\",\n        \"iso_a3\": \"PHL\",\n        \"iso_a3_eh\": \"PHL\",\n        \"iso_n3\": \"608\",\n        \"iso_n3_eh\": \"608\",\n        \"un_a3\": \"608\",\n        \"wb_a2\": \"PH\",\n        \"wb_a3\": \"PHL\",\n        \"woe_id\": 23424934,\n        \"woe_id_eh\": 23424934,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"PHL\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"PHL\",\n        \"adm0_a3_us\": \"PHL\",\n        \"adm0_a3_fr\": \"PHL\",\n        \"adm0_a3_ru\": \"PHL\",\n        \"adm0_a3_es\": \"PHL\",\n        \"adm0_a3_cn\": \"PHL\",\n        \"adm0_a3_tw\": \"PHL\",\n        \"adm0_a3_in\": \"PHL\",\n        \"adm0_a3_np\": \"PHL\",\n        \"adm0_a3_pk\": \"PHL\",\n        \"adm0_a3_de\": \"PHL\",\n        \"adm0_a3_gb\": \"PHL\",\n        \"adm0_a3_br\": \"PHL\",\n        \"adm0_a3_il\": \"PHL\",\n        \"adm0_a3_ps\": \"PHL\",\n        \"adm0_a3_sa\": \"PHL\",\n        \"adm0_a3_eg\": \"PHL\",\n        \"adm0_a3_ma\": \"PHL\",\n        \"adm0_a3_pt\": \"PHL\",\n        \"adm0_a3_ar\": \"PHL\",\n        \"adm0_a3_jp\": \"PHL\",\n        \"adm0_a3_ko\": \"PHL\",\n        \"adm0_a3_vn\": \"PHL\",\n        \"adm0_a3_tr\": \"PHL\",\n        \"adm0_a3_id\": \"PHL\",\n        \"adm0_a3_pl\": \"PHL\",\n        \"adm0_a3_gr\": \"PHL\",\n        \"adm0_a3_it\": \"PHL\",\n        \"adm0_a3_nl\": \"PHL\",\n        \"adm0_a3_se\": \"PHL\",\n        \"adm0_a3_bd\": \"PHL\",\n        \"adm0_a3_ua\": \"PHL\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"South-Eastern Asia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 11,\n        \"long_len\": 11,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.5,\n        \"max_label\": 7,\n        \"label_x\": 122.465,\n        \"label_y\": 11.198,\n        \"ne_id\": 1159321169,\n        \"wikidataid\": \"Q928\",\n        \"name_ar\": \"الفلبين\",\n        \"name_bn\": \"ফিলিপাইন\",\n        \"name_de\": \"Philippinen\",\n        \"name_en\": \"Philippines\",\n        \"name_es\": \"Filipinas\",\n        \"name_fa\": \"فیلیپین\",\n        \"name_fr\": \"Philippines\",\n        \"name_el\": \"Φιλιππίνες\",\n        \"name_he\": \"הפיליפינים\",\n        \"name_hi\": \"फ़िलीपीन्स\",\n        \"name_hu\": \"Fülöp-szigetek\",\n        \"name_id\": \"Filipina\",\n        \"name_it\": \"Filippine\",\n        \"name_ja\": \"フィリピン\",\n        \"name_ko\": \"필리핀\",\n        \"name_nl\": \"Filipijnen\",\n        \"name_pl\": \"Filipiny\",\n        \"name_pt\": \"Filipinas\",\n        \"name_ru\": \"Филиппины\",\n        \"name_sv\": \"Filippinerna\",\n        \"name_tr\": \"Filipinler\",\n        \"name_uk\": \"Філіппіни\",\n        \"name_ur\": \"فلپائن\",\n        \"name_vi\": \"Philippines\",\n        \"name_zh\": \"菲律宾\",\n        \"name_zht\": \"菲律賓\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"PHL.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [120.83389611214656, 12.704496161342433],\n              [120.32343631396745, 13.466413479053825],\n              [121.18012820850211, 13.429697373910443],\n              [121.5273938335035, 13.06959015548452],\n              [121.26219038298159, 12.205560207564403],\n              [120.83389611214656, 12.704496161342433]\n            ]\n          ],\n          [\n            [\n              [122.5860889018671, 9.981044826696134],\n              [122.83708133350875, 10.261156927934225],\n              [122.9474105164519, 10.88186839440806],\n              [123.49884972543845, 10.94062449792392],\n              [123.33777428598472, 10.267383938025404],\n              [124.0779358257012, 11.232725531453738],\n              [123.98243777882584, 10.278778591345755],\n              [123.62318322153271, 9.950090643753299],\n              [123.30992068897939, 9.318268744336706],\n              [122.99588300994166, 9.022188625520414],\n              [122.38005496631942, 9.713360907424217],\n              [122.5860889018671, 9.981044826696134]\n            ]\n          ],\n          [\n            [\n              [126.37681359263745, 8.414706325713297],\n              [126.47851281138789, 7.750354112168978],\n              [126.53742394420061, 7.189380601424545],\n              [126.19677290253259, 6.274294338400054],\n              [125.83142052622907, 7.293715318221842],\n              [125.36385216685221, 6.786485297060949],\n              [125.68316084198369, 6.049656887227272],\n              [125.39651167206063, 5.581003322772276],\n              [124.21978763234239, 6.161355495626154],\n              [123.9387195171069, 6.885135606306136],\n              [124.24366214406128, 7.360610459823661],\n              [123.61021243702749, 7.83352732994274],\n              [123.29607140512519, 7.418875637232759],\n              [122.82550581267537, 7.457374579290204],\n              [122.08549930225573, 6.899424139834836],\n              [121.91992801319256, 7.192119452336015],\n              [122.31235884001705, 8.034962063016465],\n              [122.94239790251959, 8.316236883981134],\n              [123.48768761606347, 8.69300975182118],\n              [123.84115441293983, 8.240324204944372],\n              [124.60146976125021, 8.514157619659002],\n              [124.76461225799562, 8.960409450715488],\n              [125.47139082245155, 8.986996975129657],\n              [125.41211795461277, 9.760334784377534],\n              [126.2227144715431, 9.286074327018866],\n              [126.30663699758514, 8.78248749433456],\n              [126.37681359263745, 8.414706325713297]\n            ]\n          ],\n          [\n            [\n              [118.50458092659036, 9.316382554558047],\n              [117.17427453010066, 8.367499904814679],\n              [117.66447716682137, 9.066888739452892],\n              [118.38691369026175, 9.68449961998921],\n              [118.98734215706105, 10.376292019080523],\n              [119.51149620979751, 11.3696680770272],\n              [119.68967654833989, 10.554291490109875],\n              [119.02945844937892, 10.003653265823829],\n              [118.50458092659036, 9.316382554558047]\n            ]\n          ],\n          [\n            [\n              [122.336956821788, 18.224882717354106],\n              [122.17427941293317, 17.810282701076403],\n              [122.5156539246533, 17.093504746971973],\n              [122.25231082569393, 16.26244436285407],\n              [121.66278608610821, 15.931017564350142],\n              [121.50506961475342, 15.124813544164622],\n              [121.7288285665772, 14.328376369682275],\n              [122.25892540902726, 14.21820221603599],\n              [122.70127566944569, 14.336541245984378],\n              [123.9502950379403, 13.782130642141027],\n              [123.85510704965867, 13.237771104378425],\n              [124.18128869028493, 12.9975273706535],\n              [124.0774190613783, 12.536676947474575],\n              [123.29803510955225, 13.02752553959894],\n              [122.92865197152994, 13.552919826710422],\n              [122.6713550151487, 13.185836289925092],\n              [122.03464969288052, 13.784481919810304],\n              [121.12638471891857, 13.636687323455547],\n              [120.62863732308324, 13.857655747935596],\n              [120.67938357959386, 14.271015529838294],\n              [120.99181928923053, 14.52539276779504],\n              [120.69333621631267, 14.756670640517312],\n              [120.56414513558299, 14.396279201713796],\n              [120.07042850146644, 14.970869452367126],\n              [119.92092858284605, 15.406346747290739],\n              [119.88377322802819, 16.363704331929995],\n              [120.28648766487875, 16.034628811095345],\n              [120.39004723519167, 17.599081122299523],\n              [120.71586714079191, 18.505227362537525],\n              [121.32130822152351, 18.504064642810945],\n              [121.9376013530364, 18.218552354398355],\n              [122.24600630095429, 18.478949896717097],\n              [122.336956821788, 18.224882717354106]\n            ]\n          ],\n          [\n            [\n              [122.03837039600555, 11.415840969279998],\n              [121.88354780485909, 11.891755072471994],\n              [122.48382124236149, 11.582187404827538],\n              [123.12021650603594, 11.583660183147856],\n              [123.10083784392646, 11.16593374271649],\n              [122.63771365772669, 10.74130849857417],\n              [122.00261030485957, 10.441016750526089],\n              [121.96736697803652, 10.905691229694625],\n              [122.03837039600555, 11.415840969279998]\n            ]\n          ],\n          [\n            [\n              [125.50255171112354, 12.162694606978292],\n              [125.78346479706221, 11.046121934447783],\n              [125.01188398651226, 11.311454576050409],\n              [125.03276126515817, 10.975816148314692],\n              [125.27744917206019, 10.358722032101284],\n              [124.80181928924577, 10.134678859899864],\n              [124.76016808481853, 10.837995103392258],\n              [124.45910119028605, 10.889929917845592],\n              [124.30252160044171, 11.495370998577187],\n              [124.89101281138153, 11.415582587118536],\n              [124.87799035044401, 11.794189968304947],\n              [124.26676150929569, 12.557760931849671],\n              [125.22711632700788, 12.53572093347718],\n              [125.50255171112354, 12.162694606978292]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Sri Lanka\",\n        \"sov_a3\": \"LKA\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Sri Lanka\",\n        \"adm0_a3\": \"LKA\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Sri Lanka\",\n        \"gu_a3\": \"LKA\",\n        \"su_dif\": 0,\n        \"subunit\": \"Sri Lanka\",\n        \"su_a3\": \"LKA\",\n        \"brk_diff\": 0,\n        \"name\": \"Sri Lanka\",\n        \"name_long\": \"Sri Lanka\",\n        \"brk_a3\": \"LKA\",\n        \"brk_name\": \"Sri Lanka\",\n        \"brk_group\": null,\n        \"abbrev\": \"Sri L.\",\n        \"postal\": \"LK\",\n        \"formal_en\": \"Democratic Socialist Republic of Sri Lanka\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Sri Lanka\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Sri Lanka\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 9,\n        \"pop_est\": 21803000,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 84008,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"CE\",\n        \"iso_a2\": \"LK\",\n        \"iso_a2_eh\": \"LK\",\n        \"iso_a3\": \"LKA\",\n        \"iso_a3_eh\": \"LKA\",\n        \"iso_n3\": \"144\",\n        \"iso_n3_eh\": \"144\",\n        \"un_a3\": \"144\",\n        \"wb_a2\": \"LK\",\n        \"wb_a3\": \"LKA\",\n        \"woe_id\": 23424778,\n        \"woe_id_eh\": 23424778,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"LKA\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"LKA\",\n        \"adm0_a3_us\": \"LKA\",\n        \"adm0_a3_fr\": \"LKA\",\n        \"adm0_a3_ru\": \"LKA\",\n        \"adm0_a3_es\": \"LKA\",\n        \"adm0_a3_cn\": \"LKA\",\n        \"adm0_a3_tw\": \"LKA\",\n        \"adm0_a3_in\": \"LKA\",\n        \"adm0_a3_np\": \"LKA\",\n        \"adm0_a3_pk\": \"LKA\",\n        \"adm0_a3_de\": \"LKA\",\n        \"adm0_a3_gb\": \"LKA\",\n        \"adm0_a3_br\": \"LKA\",\n        \"adm0_a3_il\": \"LKA\",\n        \"adm0_a3_ps\": \"LKA\",\n        \"adm0_a3_sa\": \"LKA\",\n        \"adm0_a3_eg\": \"LKA\",\n        \"adm0_a3_ma\": \"LKA\",\n        \"adm0_a3_pt\": \"LKA\",\n        \"adm0_a3_ar\": \"LKA\",\n        \"adm0_a3_jp\": \"LKA\",\n        \"adm0_a3_ko\": \"LKA\",\n        \"adm0_a3_vn\": \"LKA\",\n        \"adm0_a3_tr\": \"LKA\",\n        \"adm0_a3_id\": \"LKA\",\n        \"adm0_a3_pl\": \"LKA\",\n        \"adm0_a3_gr\": \"LKA\",\n        \"adm0_a3_it\": \"LKA\",\n        \"adm0_a3_nl\": \"LKA\",\n        \"adm0_a3_se\": \"LKA\",\n        \"adm0_a3_bd\": \"LKA\",\n        \"adm0_a3_ua\": \"LKA\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Southern Asia\",\n        \"region_wb\": \"South Asia\",\n        \"name_len\": 9,\n        \"long_len\": 9,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 80.704823,\n        \"label_y\": 7.581097,\n        \"ne_id\": 1159321025,\n        \"wikidataid\": \"Q854\",\n        \"name_ar\": \"سريلانكا\",\n        \"name_bn\": \"শ্রীলঙ্কা\",\n        \"name_de\": \"Sri Lanka\",\n        \"name_en\": \"Sri Lanka\",\n        \"name_es\": \"Sri Lanka\",\n        \"name_fa\": \"سریلانکا\",\n        \"name_fr\": \"Sri Lanka\",\n        \"name_el\": \"Σρι Λάνκα\",\n        \"name_he\": \"סרי לנקה\",\n        \"name_hi\": \"श्रीलंका\",\n        \"name_hu\": \"Srí Lanka\",\n        \"name_id\": \"Sri Lanka\",\n        \"name_it\": \"Sri Lanka\",\n        \"name_ja\": \"スリランカ\",\n        \"name_ko\": \"스리랑카\",\n        \"name_nl\": \"Sri Lanka\",\n        \"name_pl\": \"Sri Lanka\",\n        \"name_pt\": \"Sri Lanka\",\n        \"name_ru\": \"Шри-Ланка\",\n        \"name_sv\": \"Sri Lanka\",\n        \"name_tr\": \"Sri Lanka\",\n        \"name_uk\": \"Шрі-Ланка\",\n        \"name_ur\": \"سری لنکا\",\n        \"name_vi\": \"Sri Lanka\",\n        \"name_zh\": \"斯里兰卡\",\n        \"name_zht\": \"斯里蘭卡\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"LKA.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [81.7879590188914, 7.523055324733164],\n            [81.63732221876059, 6.481775214051922],\n            [81.21801964714433, 6.197141424988288],\n            [80.34835696810441, 5.968369859232155],\n            [79.87246870312853, 6.76346344647493],\n            [79.69516686393513, 8.200843410673386],\n            [80.14780073437964, 9.824077663609557],\n            [80.83881798698656, 9.268426825391188],\n            [81.30431928907177, 8.56420624433369],\n            [81.7879590188914, 7.523055324733164]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Taiwan\",\n        \"sov_a3\": \"TWN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Taiwan\",\n        \"adm0_a3\": \"TWN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Taiwan\",\n        \"gu_a3\": \"TWN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Taiwan\",\n        \"su_a3\": \"TWN\",\n        \"brk_diff\": 0,\n        \"name\": \"Taiwan\",\n        \"name_long\": \"Taiwan\",\n        \"brk_a3\": \"TWN\",\n        \"brk_name\": \"Taiwan\",\n        \"brk_group\": null,\n        \"abbrev\": \"Taiwan\",\n        \"postal\": \"TW\",\n        \"formal_en\": null,\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Taiwan\",\n        \"note_adm0\": null,\n        \"note_brk\": \"Self admin.; Claimed by China\",\n        \"name_sort\": \"Taiwan\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 7,\n        \"mapcolor13\": 2,\n        \"pop_est\": 23568378,\n        \"pop_rank\": 15,\n        \"pop_year\": 2020,\n        \"gdp_md\": 1127000,\n        \"gdp_year\": 2016,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"2. High income: nonOECD\",\n        \"fips_10\": \"TW\",\n        \"iso_a2\": \"CN-TW\",\n        \"iso_a2_eh\": \"TW\",\n        \"iso_a3\": \"TWN\",\n        \"iso_a3_eh\": \"TWN\",\n        \"iso_n3\": \"158\",\n        \"iso_n3_eh\": \"158\",\n        \"un_a3\": \"-099\",\n        \"wb_a2\": \"-99\",\n        \"wb_a3\": \"-99\",\n        \"woe_id\": 23424971,\n        \"woe_id_eh\": 23424971,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"TWN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"TWN\",\n        \"adm0_a3_us\": \"TWN\",\n        \"adm0_a3_fr\": \"TWN\",\n        \"adm0_a3_ru\": \"CHN\",\n        \"adm0_a3_es\": \"TWN\",\n        \"adm0_a3_cn\": \"CHN\",\n        \"adm0_a3_tw\": \"TWN\",\n        \"adm0_a3_in\": \"TWN\",\n        \"adm0_a3_np\": \"CHN\",\n        \"adm0_a3_pk\": \"CHN\",\n        \"adm0_a3_de\": \"TWN\",\n        \"adm0_a3_gb\": \"TWN\",\n        \"adm0_a3_br\": \"TWN\",\n        \"adm0_a3_il\": \"TWN\",\n        \"adm0_a3_ps\": \"TWN\",\n        \"adm0_a3_sa\": \"TWN\",\n        \"adm0_a3_eg\": \"CHN\",\n        \"adm0_a3_ma\": \"CHN\",\n        \"adm0_a3_pt\": \"TWN\",\n        \"adm0_a3_ar\": \"TWN\",\n        \"adm0_a3_jp\": \"TWN\",\n        \"adm0_a3_ko\": \"TWN\",\n        \"adm0_a3_vn\": \"TWN\",\n        \"adm0_a3_tr\": \"TWN\",\n        \"adm0_a3_id\": \"CHN\",\n        \"adm0_a3_pl\": \"TWN\",\n        \"adm0_a3_gr\": \"TWN\",\n        \"adm0_a3_it\": \"TWN\",\n        \"adm0_a3_nl\": \"TWN\",\n        \"adm0_a3_se\": \"TWN\",\n        \"adm0_a3_bd\": \"CHN\",\n        \"adm0_a3_ua\": \"TWN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Eastern Asia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4.5,\n        \"max_label\": 8,\n        \"label_x\": 120.868204,\n        \"label_y\": 23.652408,\n        \"ne_id\": 1159321335,\n        \"wikidataid\": \"Q865\",\n        \"name_ar\": \"تايوان\",\n        \"name_bn\": \"তাইওয়ান\",\n        \"name_de\": \"Republik China\",\n        \"name_en\": \"Taiwan\",\n        \"name_es\": \"República de China\",\n        \"name_fa\": \"تایوان\",\n        \"name_fr\": \"Taïwan\",\n        \"name_el\": \"Δημοκρατία της Κίνας\",\n        \"name_he\": \"טאיוואן\",\n        \"name_hi\": \"चीनी गणराज्य\",\n        \"name_hu\": \"Kínai Köztársaság\",\n        \"name_id\": \"Taiwan\",\n        \"name_it\": \"Taiwan\",\n        \"name_ja\": \"中華民国\",\n        \"name_ko\": \"중화민국\",\n        \"name_nl\": \"Taiwan\",\n        \"name_pl\": \"Republika Chińska\",\n        \"name_pt\": \"Taiwan\",\n        \"name_ru\": \"Тайвань\",\n        \"name_sv\": \"Taiwan\",\n        \"name_tr\": \"Çin Cumhuriyeti\",\n        \"name_uk\": \"Республіка Китай\",\n        \"name_ur\": \"تائیوان\",\n        \"name_vi\": \"Đài Loan\",\n        \"name_zh\": \"中华民国\",\n        \"name_zht\": \"中華民國\",\n        \"fclass_iso\": \"Admin-1 states provinces\",\n        \"tlc_diff\": \"1\",\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": \"Admin-1 states provinces\",\n        \"fclass_tw\": \"Admin-0 country\",\n        \"fclass_in\": null,\n        \"fclass_np\": \"Admin-1 states provinces\",\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": \"Admin-1 states provinces\",\n        \"fclass_ma\": \"Admin-1 states provinces\",\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": \"Admin-1 states provinces\",\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": \"Admin-1 states provinces\",\n        \"fclass_ua\": null,\n        \"filename\": \"TWN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [121.77781782438993, 24.3942735865194],\n            [121.17563235889274, 22.790857245367167],\n            [120.74707970589623, 21.970571397382113],\n            [120.22008344938368, 22.81486094816674],\n            [120.1061885926124, 23.556262722258236],\n            [120.69467980355225, 24.538450832613737],\n            [121.49504438688878, 25.295458889257386],\n            [121.95124393116146, 24.997595933527037],\n            [121.77781782438993, 24.3942735865194]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Japan\",\n        \"sov_a3\": \"JPN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Japan\",\n        \"adm0_a3\": \"JPN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Japan\",\n        \"gu_a3\": \"JPN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Japan\",\n        \"su_a3\": \"JPN\",\n        \"brk_diff\": 0,\n        \"name\": \"Japan\",\n        \"name_long\": \"Japan\",\n        \"brk_a3\": \"JPN\",\n        \"brk_name\": \"Japan\",\n        \"brk_group\": null,\n        \"abbrev\": \"Japan\",\n        \"postal\": \"J\",\n        \"formal_en\": \"Japan\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Japan\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Japan\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 4,\n        \"pop_est\": 126264931,\n        \"pop_rank\": 17,\n        \"pop_year\": 2019,\n        \"gdp_md\": 5081769,\n        \"gdp_year\": 2019,\n        \"economy\": \"1. Developed region: G7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"JA\",\n        \"iso_a2\": \"JP\",\n        \"iso_a2_eh\": \"JP\",\n        \"iso_a3\": \"JPN\",\n        \"iso_a3_eh\": \"JPN\",\n        \"iso_n3\": \"392\",\n        \"iso_n3_eh\": \"392\",\n        \"un_a3\": \"392\",\n        \"wb_a2\": \"JP\",\n        \"wb_a3\": \"JPN\",\n        \"woe_id\": 23424856,\n        \"woe_id_eh\": 23424856,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"JPN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"JPN\",\n        \"adm0_a3_us\": \"JPN\",\n        \"adm0_a3_fr\": \"JPN\",\n        \"adm0_a3_ru\": \"JPN\",\n        \"adm0_a3_es\": \"JPN\",\n        \"adm0_a3_cn\": \"JPN\",\n        \"adm0_a3_tw\": \"JPN\",\n        \"adm0_a3_in\": \"JPN\",\n        \"adm0_a3_np\": \"JPN\",\n        \"adm0_a3_pk\": \"JPN\",\n        \"adm0_a3_de\": \"JPN\",\n        \"adm0_a3_gb\": \"JPN\",\n        \"adm0_a3_br\": \"JPN\",\n        \"adm0_a3_il\": \"JPN\",\n        \"adm0_a3_ps\": \"JPN\",\n        \"adm0_a3_sa\": \"JPN\",\n        \"adm0_a3_eg\": \"JPN\",\n        \"adm0_a3_ma\": \"JPN\",\n        \"adm0_a3_pt\": \"JPN\",\n        \"adm0_a3_ar\": \"JPN\",\n        \"adm0_a3_jp\": \"JPN\",\n        \"adm0_a3_ko\": \"JPN\",\n        \"adm0_a3_vn\": \"JPN\",\n        \"adm0_a3_tr\": \"JPN\",\n        \"adm0_a3_id\": \"JPN\",\n        \"adm0_a3_pl\": \"JPN\",\n        \"adm0_a3_gr\": \"JPN\",\n        \"adm0_a3_it\": \"JPN\",\n        \"adm0_a3_nl\": \"JPN\",\n        \"adm0_a3_se\": \"JPN\",\n        \"adm0_a3_bd\": \"JPN\",\n        \"adm0_a3_ua\": \"JPN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Asia\",\n        \"region_un\": \"Asia\",\n        \"subregion\": \"Eastern Asia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 7,\n        \"label_x\": 138.44217,\n        \"label_y\": 36.142538,\n        \"ne_id\": 1159320937,\n        \"wikidataid\": \"Q17\",\n        \"name_ar\": \"اليابان\",\n        \"name_bn\": \"জাপান\",\n        \"name_de\": \"Japan\",\n        \"name_en\": \"Japan\",\n        \"name_es\": \"Japón\",\n        \"name_fa\": \"ژاپن\",\n        \"name_fr\": \"Japon\",\n        \"name_el\": \"Ιαπωνία\",\n        \"name_he\": \"יפן\",\n        \"name_hi\": \"जापान\",\n        \"name_hu\": \"Japán\",\n        \"name_id\": \"Jepang\",\n        \"name_it\": \"Giappone\",\n        \"name_ja\": \"日本\",\n        \"name_ko\": \"일본\",\n        \"name_nl\": \"Japan\",\n        \"name_pl\": \"Japonia\",\n        \"name_pt\": \"Japão\",\n        \"name_ru\": \"Япония\",\n        \"name_sv\": \"Japan\",\n        \"name_tr\": \"Japonya\",\n        \"name_uk\": \"Японія\",\n        \"name_ur\": \"جاپان\",\n        \"name_vi\": \"Nhật Bản\",\n        \"name_zh\": \"日本\",\n        \"name_zht\": \"日本\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"JPN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [141.88460086483497, 39.180864569651476],\n              [140.95948937394581, 38.17400096287662],\n              [140.97638756730527, 37.14207428644019],\n              [140.5997697287621, 36.3439834661245],\n              [140.77407433488258, 35.842877102190215],\n              [140.2532792502451, 35.138113918593646],\n              [138.9755277853962, 34.66760000257614],\n              [137.21759891169125, 34.60628591566183],\n              [135.79298302626893, 33.46480520276663],\n              [135.1209827007454, 33.849071153289],\n              [135.0794348491827, 34.596544908174806],\n              [133.34031619683202, 34.375938218720805],\n              [132.15677086805124, 33.90493337659652],\n              [130.98614464734345, 33.88576142021624],\n              [132.00003624890996, 33.149992377244544],\n              [131.33279015515734, 31.450354519164822],\n              [130.686317987186, 31.029579169228246],\n              [130.2024198752049, 31.418237616495432],\n              [130.44767622286213, 32.319474595665696],\n              [129.81469160371893, 32.61030955660436],\n              [129.40846316947255, 33.29605581311752],\n              [130.35393517468464, 33.60415070244167],\n              [130.87845096244718, 34.23274282484002],\n              [131.8842293641439, 34.74971385348792],\n              [132.61767296766243, 35.433393052709405],\n              [134.6083008159777, 35.731617743465804],\n              [135.67753787652885, 35.52713410088687],\n              [136.72383060114242, 37.304984239240326],\n              [137.39061160700447, 36.82739065199884],\n              [138.8576021669062, 37.82748464614346],\n              [139.42640465714283, 38.21596222589761],\n              [140.054790073812, 39.43880748143637],\n              [139.88337934789985, 40.56331248632368],\n              [140.30578250545364, 41.19500519465953],\n              [141.3689734234266, 41.378559882160275],\n              [141.91426313697048, 39.991616115878685],\n              [141.88460086483497, 39.180864569651476]\n            ]\n          ],\n          [\n            [\n              [144.61342654843963, 43.96088288021748],\n              [145.32082523008307, 44.38473297787541],\n              [145.5431372418027, 43.26208832455062],\n              [144.05966189999987, 42.98835826270056],\n              [143.18384972551723, 41.9952147486992],\n              [141.6114909201724, 42.6787905950561],\n              [141.06728641170668, 41.58459381770797],\n              [139.955106235921, 41.56955597591103],\n              [139.81754357315998, 42.563758856774385],\n              [140.31208703019325, 43.33327261003269],\n              [141.38054894426, 43.38882477474644],\n              [141.67195234595386, 44.77212535255146],\n              [141.96764489152798, 45.55148346616134],\n              [143.14287031470974, 44.51035838477697],\n              [143.91016198137947, 44.17409983985374],\n              [144.61342654843963, 43.96088288021748]\n            ]\n          ],\n          [\n            [\n              [132.37117638563024, 33.46364248304006],\n              [132.92437259331473, 34.06029857028204],\n              [133.4929683778222, 33.94462087659667],\n              [133.90410607313635, 34.36493113864263],\n              [134.63842817600386, 34.149233710256354],\n              [134.76637902235854, 33.80633474378362],\n              [134.2034159689709, 33.20117788342964],\n              [133.79295006727654, 33.5219851750976],\n              [133.28026818250885, 33.28957042086489],\n              [133.0148580262578, 32.70456736910474],\n              [132.36311486219267, 32.989382025681394],\n              [132.37117638563024, 33.46364248304006]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Chile\",\n        \"sov_a3\": \"CHL\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Chile\",\n        \"adm0_a3\": \"CHL\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Chile\",\n        \"gu_a3\": \"CHL\",\n        \"su_dif\": 0,\n        \"subunit\": \"Chile\",\n        \"su_a3\": \"CHL\",\n        \"brk_diff\": 0,\n        \"name\": \"Chile\",\n        \"name_long\": \"Chile\",\n        \"brk_a3\": \"CHL\",\n        \"brk_name\": \"Chile\",\n        \"brk_group\": null,\n        \"abbrev\": \"Chile\",\n        \"postal\": \"CL\",\n        \"formal_en\": \"Republic of Chile\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Chile\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Chile\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 9,\n        \"pop_est\": 18952038,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 282318,\n        \"gdp_year\": 2019,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"CI\",\n        \"iso_a2\": \"CL\",\n        \"iso_a2_eh\": \"CL\",\n        \"iso_a3\": \"CHL\",\n        \"iso_a3_eh\": \"CHL\",\n        \"iso_n3\": \"152\",\n        \"iso_n3_eh\": \"152\",\n        \"un_a3\": \"152\",\n        \"wb_a2\": \"CL\",\n        \"wb_a3\": \"CHL\",\n        \"woe_id\": 23424782,\n        \"woe_id_eh\": 23424782,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"CHL\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"CHL\",\n        \"adm0_a3_us\": \"CHL\",\n        \"adm0_a3_fr\": \"CHL\",\n        \"adm0_a3_ru\": \"CHL\",\n        \"adm0_a3_es\": \"CHL\",\n        \"adm0_a3_cn\": \"CHL\",\n        \"adm0_a3_tw\": \"CHL\",\n        \"adm0_a3_in\": \"CHL\",\n        \"adm0_a3_np\": \"CHL\",\n        \"adm0_a3_pk\": \"CHL\",\n        \"adm0_a3_de\": \"CHL\",\n        \"adm0_a3_gb\": \"CHL\",\n        \"adm0_a3_br\": \"CHL\",\n        \"adm0_a3_il\": \"CHL\",\n        \"adm0_a3_ps\": \"CHL\",\n        \"adm0_a3_sa\": \"CHL\",\n        \"adm0_a3_eg\": \"CHL\",\n        \"adm0_a3_ma\": \"CHL\",\n        \"adm0_a3_pt\": \"CHL\",\n        \"adm0_a3_ar\": \"CHL\",\n        \"adm0_a3_jp\": \"CHL\",\n        \"adm0_a3_ko\": \"CHL\",\n        \"adm0_a3_vn\": \"CHL\",\n        \"adm0_a3_tr\": \"CHL\",\n        \"adm0_a3_id\": \"CHL\",\n        \"adm0_a3_pl\": \"CHL\",\n        \"adm0_a3_gr\": \"CHL\",\n        \"adm0_a3_it\": \"CHL\",\n        \"adm0_a3_nl\": \"CHL\",\n        \"adm0_a3_se\": \"CHL\",\n        \"adm0_a3_bd\": \"CHL\",\n        \"adm0_a3_ua\": \"CHL\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"South America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"South America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 6.7,\n        \"label_x\": -72.318871,\n        \"label_y\": -38.151771,\n        \"ne_id\": 1159320493,\n        \"wikidataid\": \"Q298\",\n        \"name_ar\": \"تشيلي\",\n        \"name_bn\": \"চিলি\",\n        \"name_de\": \"Chile\",\n        \"name_en\": \"Chile\",\n        \"name_es\": \"Chile\",\n        \"name_fa\": \"شیلی\",\n        \"name_fr\": \"Chili\",\n        \"name_el\": \"Χιλή\",\n        \"name_he\": \"צ'ילה\",\n        \"name_hi\": \"चिली\",\n        \"name_hu\": \"Chile\",\n        \"name_id\": \"Chili\",\n        \"name_it\": \"Cile\",\n        \"name_ja\": \"チリ\",\n        \"name_ko\": \"칠레\",\n        \"name_nl\": \"Chili\",\n        \"name_pl\": \"Chile\",\n        \"name_pt\": \"Chile\",\n        \"name_ru\": \"Чили\",\n        \"name_sv\": \"Chile\",\n        \"name_tr\": \"Şili\",\n        \"name_uk\": \"Чилі\",\n        \"name_ur\": \"چلی\",\n        \"name_vi\": \"Chile\",\n        \"name_zh\": \"智利\",\n        \"name_zht\": \"智利\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"CHL.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-68.63401022758323, -52.63637045887449],\n              [-68.63335, -54.8695],\n              [-67.56244, -54.87001],\n              [-66.95992, -54.89681],\n              [-67.29103, -55.30124],\n              [-68.14863, -55.61183],\n              [-68.63999081081187, -55.58001799908692],\n              [-69.2321, -55.49906],\n              [-69.95809, -55.19843],\n              [-71.00568, -55.05383],\n              [-72.2639, -54.49514],\n              [-73.2852, -53.95752],\n              [-74.66253, -52.83749],\n              [-73.8381, -53.04743],\n              [-72.43418, -53.7154],\n              [-71.10773, -54.07433],\n              [-70.59177999999986, -53.61583],\n              [-70.26748, -52.93123],\n              [-69.34565, -52.5183],\n              [-68.63401022758323, -52.63637045887449]\n            ]\n          ],\n          [\n            [\n              [-69.59042375352405, -17.580011895419332],\n              [-69.10024695501949, -18.260125420812678],\n              [-68.96681840684187, -18.981683444904107],\n              [-68.44222510443092, -19.40506845467143],\n              [-68.75716712103375, -20.372657972904463],\n              [-68.21991309271128, -21.494346612231865],\n              [-67.82817989772273, -22.872918796482175],\n              [-67.1066735500636, -22.735924574476417],\n              [-66.9852339341777, -22.98634856536284],\n              [-67.32844295924417, -24.02530323659095],\n              [-68.41765296087614, -24.51855478281688],\n              [-68.38600114609736, -26.185016371365215],\n              [-68.59479977077268, -26.506908868111296],\n              [-68.29554155137043, -26.89933969493578],\n              [-69.00123491074825, -27.52121388113618],\n              [-69.65613033718317, -28.459141127233686],\n              [-70.01355038112992, -29.367922865518572],\n              [-69.91900834825194, -30.33633920666828],\n              [-70.53506893581951, -31.36501026787031],\n              [-70.0743993801536, -33.09120981214805],\n              [-69.81477698431922, -33.273886000299825],\n              [-69.81730912950152, -34.1935714657983],\n              [-70.38804948594913, -35.16968759535949],\n              [-70.36476925320164, -36.00508879978992],\n              [-71.12188066270987, -36.65812387466232],\n              [-71.11862504747549, -37.57682748794724],\n              [-70.81466427273469, -38.55299529394074],\n              [-71.41351660834906, -38.91602223079114],\n              [-71.68076127794649, -39.808164157878046],\n              [-71.91573401557763, -40.83233936947069],\n              [-71.7468037584155, -42.05138640723598],\n              [-72.14889807807856, -42.254888197601375],\n              [-71.91542395698389, -43.40856454851745],\n              [-71.46405615913051, -43.787611179378345],\n              [-71.79362260607193, -44.207172133156064],\n              [-71.32980078803622, -44.407521661151655],\n              [-71.22277889675976, -44.784242852559416],\n              [-71.65931555854536, -44.973688653341426],\n              [-71.55200944689128, -45.5607329241771],\n              [-71.91725847033024, -46.88483814879177],\n              [-72.44735531278027, -47.73853281025352],\n              [-72.33116085477201, -48.2442383766618],\n              [-72.64824744331494, -48.87861825947683],\n              [-73.4154357571201, -49.31843637471297],\n              [-73.32805091011453, -50.378785088909915],\n              [-72.97574683296469, -50.741450290734285],\n              [-72.30997351753234, -50.67700977966632],\n              [-72.32940385607407, -51.42595631287243],\n              [-71.91480383979638, -52.0090223058659],\n              [-69.49836218939609, -52.14276091263727],\n              [-68.57154537624133, -52.299443855346226],\n              [-69.46128434922667, -52.29195077266391],\n              [-69.9427795071062, -52.53793059037322],\n              [-70.8451016913546, -52.89920052852571],\n              [-71.00633216010525, -53.83325204220132],\n              [-71.429794684521, -53.85645476030037],\n              [-72.55794287788488, -53.53141000118449],\n              [-73.7027567206629, -52.835069268607235],\n              [-73.7027567206629, -52.835070076051494],\n              [-74.94676347522517, -52.262753588419],\n              [-75.2600260077785, -51.62935475037325],\n              [-74.97663245308988, -51.0433956846157],\n              [-75.47975419788355, -50.37837167745158],\n              [-75.60801510283198, -48.67377288187184],\n              [-75.18276974150216, -47.7119194476232],\n              [-74.1265809801047, -46.93925343199511],\n              [-75.64439531116545, -46.64764332457207],\n              [-74.69215369332312, -45.76397633238103],\n              [-74.35170935738425, -44.10304412208794],\n              [-73.24035600451522, -44.454960625995604],\n              [-72.7178039211798, -42.38335580827898],\n              [-73.38889990913822, -42.117532240569574],\n              [-73.70133561877488, -43.365776462579774],\n              [-74.33194312203261, -43.22495818458442],\n              [-74.0179571194272, -41.79481292090683],\n              [-73.67709937202999, -39.94221282324317],\n              [-73.21759253609065, -39.25868865331856],\n              [-73.50555945503712, -38.282882582351114],\n              [-73.58806087919109, -37.15628468195598],\n              [-73.1667170884993, -37.12378020604439],\n              [-72.55313696968174, -35.50884002049106],\n              [-71.86173214383263, -33.90909270603153],\n              [-71.4384504869299, -32.41889942803078],\n              [-71.66872066922247, -30.920644626592495],\n              [-71.37008256700773, -30.09568206148503],\n              [-71.48989437527645, -28.861442152625923],\n              [-70.90512386746161, -27.640379734001247],\n              [-70.72495398627599, -25.705924167587256],\n              [-70.40396582709502, -23.628996677344574],\n              [-70.09124589708074, -21.39331918710126],\n              [-70.16441972520605, -19.756468194256165],\n              [-70.37257239447771, -18.34797535570887],\n              [-69.85844356960587, -18.092693780187012],\n              [-69.59042375352405, -17.580011895419332]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Bolivia\",\n        \"sov_a3\": \"BOL\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Bolivia\",\n        \"adm0_a3\": \"BOL\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Bolivia\",\n        \"gu_a3\": \"BOL\",\n        \"su_dif\": 0,\n        \"subunit\": \"Bolivia\",\n        \"su_a3\": \"BOL\",\n        \"brk_diff\": 0,\n        \"name\": \"Bolivia\",\n        \"name_long\": \"Bolivia\",\n        \"brk_a3\": \"BOL\",\n        \"brk_name\": \"Bolivia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Bolivia\",\n        \"postal\": \"BO\",\n        \"formal_en\": \"Plurinational State of Bolivia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Bolivia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Bolivia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 3,\n        \"pop_est\": 11513100,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 40895,\n        \"gdp_year\": 2019,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"BL\",\n        \"iso_a2\": \"BO\",\n        \"iso_a2_eh\": \"BO\",\n        \"iso_a3\": \"BOL\",\n        \"iso_a3_eh\": \"BOL\",\n        \"iso_n3\": \"068\",\n        \"iso_n3_eh\": \"068\",\n        \"un_a3\": \"068\",\n        \"wb_a2\": \"BO\",\n        \"wb_a3\": \"BOL\",\n        \"woe_id\": 23424762,\n        \"woe_id_eh\": 23424762,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"BOL\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"BOL\",\n        \"adm0_a3_us\": \"BOL\",\n        \"adm0_a3_fr\": \"BOL\",\n        \"adm0_a3_ru\": \"BOL\",\n        \"adm0_a3_es\": \"BOL\",\n        \"adm0_a3_cn\": \"BOL\",\n        \"adm0_a3_tw\": \"BOL\",\n        \"adm0_a3_in\": \"BOL\",\n        \"adm0_a3_np\": \"BOL\",\n        \"adm0_a3_pk\": \"BOL\",\n        \"adm0_a3_de\": \"BOL\",\n        \"adm0_a3_gb\": \"BOL\",\n        \"adm0_a3_br\": \"BOL\",\n        \"adm0_a3_il\": \"BOL\",\n        \"adm0_a3_ps\": \"BOL\",\n        \"adm0_a3_sa\": \"BOL\",\n        \"adm0_a3_eg\": \"BOL\",\n        \"adm0_a3_ma\": \"BOL\",\n        \"adm0_a3_pt\": \"BOL\",\n        \"adm0_a3_ar\": \"BOL\",\n        \"adm0_a3_jp\": \"BOL\",\n        \"adm0_a3_ko\": \"BOL\",\n        \"adm0_a3_vn\": \"BOL\",\n        \"adm0_a3_tr\": \"BOL\",\n        \"adm0_a3_id\": \"BOL\",\n        \"adm0_a3_pl\": \"BOL\",\n        \"adm0_a3_gr\": \"BOL\",\n        \"adm0_a3_it\": \"BOL\",\n        \"adm0_a3_nl\": \"BOL\",\n        \"adm0_a3_se\": \"BOL\",\n        \"adm0_a3_bd\": \"BOL\",\n        \"adm0_a3_ua\": \"BOL\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"South America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"South America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 7,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 7.5,\n        \"label_x\": -64.593433,\n        \"label_y\": -16.666015,\n        \"ne_id\": 1159320439,\n        \"wikidataid\": \"Q750\",\n        \"name_ar\": \"بوليفيا\",\n        \"name_bn\": \"বলিভিয়া\",\n        \"name_de\": \"Bolivien\",\n        \"name_en\": \"Bolivia\",\n        \"name_es\": \"Bolivia\",\n        \"name_fa\": \"بولیوی\",\n        \"name_fr\": \"Bolivie\",\n        \"name_el\": \"Βολιβία\",\n        \"name_he\": \"בוליביה\",\n        \"name_hi\": \"बोलिविया\",\n        \"name_hu\": \"Bolívia\",\n        \"name_id\": \"Bolivia\",\n        \"name_it\": \"Bolivia\",\n        \"name_ja\": \"ボリビア\",\n        \"name_ko\": \"볼리비아\",\n        \"name_nl\": \"Bolivia\",\n        \"name_pl\": \"Boliwia\",\n        \"name_pt\": \"Bolívia\",\n        \"name_ru\": \"Боливия\",\n        \"name_sv\": \"Bolivia\",\n        \"name_tr\": \"Bolivya\",\n        \"name_uk\": \"Болівія\",\n        \"name_ur\": \"بولیویا\",\n        \"name_vi\": \"Bolivia\",\n        \"name_zh\": \"玻利维亚\",\n        \"name_zht\": \"玻利維亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"BOL.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-69.52967810736496, -10.951734307502194],\n            [-68.78615759954948, -11.03638030359628],\n            [-68.27125362819326, -11.01452117273682],\n            [-68.04819230820539, -10.712059014532485],\n            [-67.17380123561074, -10.306812432499612],\n            [-66.6469083319628, -9.931331475466862],\n            [-65.33843522811642, -9.761987806846392],\n            [-65.44483700220539, -10.511451104375432],\n            [-65.32189876978302, -10.895872084194679],\n            [-65.40228146021303, -11.566270440317155],\n            [-64.3163529120316, -12.461978041232193],\n            [-63.19649878605057, -12.627032565972435],\n            [-62.803060268796386, -13.000653171442686],\n            [-62.127080857986385, -13.198780612849724],\n            [-61.71320431176078, -13.489202162330052],\n            [-61.08412126325565, -13.479383640194598],\n            [-60.503304002511136, -13.775954685117659],\n            [-60.45919816755003, -14.354007256734555],\n            [-60.26432634137737, -14.645979099183641],\n            [-60.251148851142936, -15.07721892665932],\n            [-60.54296566429515, -15.093910414289596],\n            [-60.158389655179036, -16.258283786690086],\n            [-58.24121985536668, -16.299573256091293],\n            [-58.38805843772404, -16.877109063385276],\n            [-58.28080400250225, -17.271710300366017],\n            [-57.734558274961, -17.55246835700777],\n            [-57.49837114117099, -18.174187513911292],\n            [-57.67600887717431, -18.96183969490403],\n            [-57.949997321185826, -19.40000416430682],\n            [-57.85380164247451, -19.96999521248619],\n            [-58.166392381408045, -20.176700941653678],\n            [-58.183471442280506, -19.868399346600363],\n            [-59.11504248720611, -19.3569060197754],\n            [-60.04356462262649, -19.342746677327426],\n            [-61.78632646345377, -19.633736667562964],\n            [-62.2659612697708, -20.513734633061276],\n            [-62.291179368729225, -21.051634616787393],\n            [-62.685057135657885, -22.249029229422387],\n            [-62.84646847192156, -22.03498544686945],\n            [-63.986838141522476, -21.99364430103595],\n            [-64.37702104354226, -22.79809132252354],\n            [-64.96489213729461, -22.075861504812327],\n            [-66.27333940292485, -21.83231047942072],\n            [-67.1066735500636, -22.735924574476417],\n            [-67.82817989772273, -22.872918796482175],\n            [-68.21991309271128, -21.494346612231865],\n            [-68.75716712103375, -20.372657972904463],\n            [-68.44222510443092, -19.40506845467143],\n            [-68.96681840684187, -18.981683444904107],\n            [-69.10024695501949, -18.260125420812678],\n            [-69.59042375352405, -17.580011895419332],\n            [-68.9596353827533, -16.50069793057127],\n            [-69.38976416693471, -15.660129082911652],\n            [-69.16034664577495, -15.323973890853019],\n            [-69.33953467474701, -14.953195489158832],\n            [-68.9488866848366, -14.453639418193283],\n            [-68.92922380234954, -13.602683607643009],\n            [-68.88007951523997, -12.899729099176653],\n            [-68.66507971868963, -12.561300144097173],\n            [-69.52967810736496, -10.951734307502194]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Peru\",\n        \"sov_a3\": \"PER\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Peru\",\n        \"adm0_a3\": \"PER\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Peru\",\n        \"gu_a3\": \"PER\",\n        \"su_dif\": 0,\n        \"subunit\": \"Peru\",\n        \"su_a3\": \"PER\",\n        \"brk_diff\": 0,\n        \"name\": \"Peru\",\n        \"name_long\": \"Peru\",\n        \"brk_a3\": \"PER\",\n        \"brk_name\": \"Peru\",\n        \"brk_group\": null,\n        \"abbrev\": \"Peru\",\n        \"postal\": \"PE\",\n        \"formal_en\": \"Republic of Peru\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Peru\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Peru\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 11,\n        \"pop_est\": 32510453,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 226848,\n        \"gdp_year\": 2019,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"PE\",\n        \"iso_a2\": \"PE\",\n        \"iso_a2_eh\": \"PE\",\n        \"iso_a3\": \"PER\",\n        \"iso_a3_eh\": \"PER\",\n        \"iso_n3\": \"604\",\n        \"iso_n3_eh\": \"604\",\n        \"un_a3\": \"604\",\n        \"wb_a2\": \"PE\",\n        \"wb_a3\": \"PER\",\n        \"woe_id\": 23424919,\n        \"woe_id_eh\": 23424919,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"PER\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"PER\",\n        \"adm0_a3_us\": \"PER\",\n        \"adm0_a3_fr\": \"PER\",\n        \"adm0_a3_ru\": \"PER\",\n        \"adm0_a3_es\": \"PER\",\n        \"adm0_a3_cn\": \"PER\",\n        \"adm0_a3_tw\": \"PER\",\n        \"adm0_a3_in\": \"PER\",\n        \"adm0_a3_np\": \"PER\",\n        \"adm0_a3_pk\": \"PER\",\n        \"adm0_a3_de\": \"PER\",\n        \"adm0_a3_gb\": \"PER\",\n        \"adm0_a3_br\": \"PER\",\n        \"adm0_a3_il\": \"PER\",\n        \"adm0_a3_ps\": \"PER\",\n        \"adm0_a3_sa\": \"PER\",\n        \"adm0_a3_eg\": \"PER\",\n        \"adm0_a3_ma\": \"PER\",\n        \"adm0_a3_pt\": \"PER\",\n        \"adm0_a3_ar\": \"PER\",\n        \"adm0_a3_jp\": \"PER\",\n        \"adm0_a3_ko\": \"PER\",\n        \"adm0_a3_vn\": \"PER\",\n        \"adm0_a3_tr\": \"PER\",\n        \"adm0_a3_id\": \"PER\",\n        \"adm0_a3_pl\": \"PER\",\n        \"adm0_a3_gr\": \"PER\",\n        \"adm0_a3_it\": \"PER\",\n        \"adm0_a3_nl\": \"PER\",\n        \"adm0_a3_se\": \"PER\",\n        \"adm0_a3_bd\": \"PER\",\n        \"adm0_a3_ua\": \"PER\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"South America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"South America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 4,\n        \"long_len\": 4,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2,\n        \"max_label\": 7,\n        \"label_x\": -72.90016,\n        \"label_y\": -12.976679,\n        \"ne_id\": 1159321163,\n        \"wikidataid\": \"Q419\",\n        \"name_ar\": \"بيرو\",\n        \"name_bn\": \"পেরু\",\n        \"name_de\": \"Peru\",\n        \"name_en\": \"Peru\",\n        \"name_es\": \"Perú\",\n        \"name_fa\": \"پرو\",\n        \"name_fr\": \"Pérou\",\n        \"name_el\": \"Περού\",\n        \"name_he\": \"פרו\",\n        \"name_hi\": \"पेरू\",\n        \"name_hu\": \"Peru\",\n        \"name_id\": \"Peru\",\n        \"name_it\": \"Perù\",\n        \"name_ja\": \"ペルー\",\n        \"name_ko\": \"페루\",\n        \"name_nl\": \"Peru\",\n        \"name_pl\": \"Peru\",\n        \"name_pt\": \"Peru\",\n        \"name_ru\": \"Перу\",\n        \"name_sv\": \"Peru\",\n        \"name_tr\": \"Peru\",\n        \"name_uk\": \"Перу\",\n        \"name_ur\": \"پیرو\",\n        \"name_vi\": \"Peru\",\n        \"name_zh\": \"秘鲁\",\n        \"name_zht\": \"秘魯\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"PER.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-69.89363521999663, -4.298186944194327],\n            [-70.7947688463023, -4.251264743673303],\n            [-70.92884334988358, -4.401591485210368],\n            [-71.74840572781655, -4.593982842633011],\n            [-72.89192765978726, -5.274561455916981],\n            [-72.9645072089412, -5.741251315944893],\n            [-73.21971126981461, -6.089188734566078],\n            [-73.1200274319236, -6.629930922068239],\n            [-73.72448666044164, -6.91859547285064],\n            [-73.7234014553635, -7.340998630404414],\n            [-73.98723548042966, -7.523829847853065],\n            [-73.57105933296707, -8.424446709835834],\n            [-73.01538265653255, -9.032833347208062],\n            [-73.22671342639016, -9.462212823121234],\n            [-72.56303300646564, -9.520193780152717],\n            [-72.18489071316985, -10.053597914269432],\n            [-71.30241227892154, -10.079436130415374],\n            [-70.48189388699117, -9.490118096558845],\n            [-70.54868567572841, -11.009146823778465],\n            [-70.0937522040469, -11.123971856331012],\n            [-69.52967810736496, -10.951734307502194],\n            [-68.66507971868963, -12.561300144097173],\n            [-68.88007951523997, -12.899729099176653],\n            [-68.92922380234954, -13.602683607643009],\n            [-68.9488866848366, -14.453639418193283],\n            [-69.33953467474701, -14.953195489158832],\n            [-69.16034664577495, -15.323973890853019],\n            [-69.38976416693471, -15.660129082911652],\n            [-68.9596353827533, -16.50069793057127],\n            [-69.59042375352405, -17.580011895419332],\n            [-69.85844356960587, -18.092693780187012],\n            [-70.37257239447771, -18.34797535570887],\n            [-71.37525021023693, -17.773798516513857],\n            [-71.46204077827113, -17.363487644116383],\n            [-73.44452958850042, -16.359362888252996],\n            [-75.23788265654144, -15.265682875227782],\n            [-76.00920508492995, -14.649286390850321],\n            [-76.42346920439775, -13.823186944232432],\n            [-76.25924150257417, -13.535039157772943],\n            [-77.10619238962184, -12.22271615972082],\n            [-78.09215287953464, -10.377712497604065],\n            [-79.03695309112695, -8.386567884965892],\n            [-79.44592037628485, -7.93083342858386],\n            [-79.76057817251005, -7.194340915560084],\n            [-80.53748165558608, -6.541667575713717],\n            [-81.24999630402642, -6.136834405139183],\n            [-80.92634680858244, -5.690556735866565],\n            [-81.41094255239946, -4.736764825055459],\n            [-81.09966956248937, -4.036394138203697],\n            [-80.30256059438722, -3.404856459164713],\n            [-80.18401485870967, -3.821161797708044],\n            [-80.46929460317695, -4.059286797708999],\n            [-80.44224199087216, -4.425724379090674],\n            [-80.02890804718561, -4.346090996928893],\n            [-79.62497921417618, -4.454198093283495],\n            [-79.20528906931773, -4.959128513207389],\n            [-78.63989722361234, -4.547784112164074],\n            [-78.45068396677564, -3.873096612161376],\n            [-77.83790483265861, -3.003020521663103],\n            [-76.63539425322672, -2.608677666843818],\n            [-75.54499569365204, -1.56160979574588],\n            [-75.23372270374195, -0.911416924649529],\n            [-75.37322323271385, -0.15203175212045],\n            [-75.10662451852008, -0.05720549886486],\n            [-74.44160051135597, -0.530820000819887],\n            [-74.12239518908906, -1.002832533373848],\n            [-73.6595035468346, -1.260491224781134],\n            [-73.07039221870724, -2.308954359550953],\n            [-72.32578650581365, -2.434218031426454],\n            [-71.7747607082854, -2.169789727388938],\n            [-71.41364579942979, -2.342802422702128],\n            [-70.81347571479196, -2.256864515800743],\n            [-70.04770850287485, -2.725156345229699],\n            [-70.69268205430971, -3.742872002785859],\n            [-70.39404395209499, -3.766591485207825],\n            [-69.89363521999663, -4.298186944194327]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Argentina\",\n        \"sov_a3\": \"ARG\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Argentina\",\n        \"adm0_a3\": \"ARG\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Argentina\",\n        \"gu_a3\": \"ARG\",\n        \"su_dif\": 0,\n        \"subunit\": \"Argentina\",\n        \"su_a3\": \"ARG\",\n        \"brk_diff\": 0,\n        \"name\": \"Argentina\",\n        \"name_long\": \"Argentina\",\n        \"brk_a3\": \"ARG\",\n        \"brk_name\": \"Argentina\",\n        \"brk_group\": null,\n        \"abbrev\": \"Arg.\",\n        \"postal\": \"AR\",\n        \"formal_en\": \"Argentine Republic\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Argentina\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Argentina\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 13,\n        \"pop_est\": 44938712,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 445445,\n        \"gdp_year\": 2019,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"AR\",\n        \"iso_a2\": \"AR\",\n        \"iso_a2_eh\": \"AR\",\n        \"iso_a3\": \"ARG\",\n        \"iso_a3_eh\": \"ARG\",\n        \"iso_n3\": \"032\",\n        \"iso_n3_eh\": \"032\",\n        \"un_a3\": \"032\",\n        \"wb_a2\": \"AR\",\n        \"wb_a3\": \"ARG\",\n        \"woe_id\": 23424747,\n        \"woe_id_eh\": 23424747,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"ARG\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"ARG\",\n        \"adm0_a3_us\": \"ARG\",\n        \"adm0_a3_fr\": \"ARG\",\n        \"adm0_a3_ru\": \"ARG\",\n        \"adm0_a3_es\": \"ARG\",\n        \"adm0_a3_cn\": \"ARG\",\n        \"adm0_a3_tw\": \"ARG\",\n        \"adm0_a3_in\": \"ARG\",\n        \"adm0_a3_np\": \"ARG\",\n        \"adm0_a3_pk\": \"ARG\",\n        \"adm0_a3_de\": \"ARG\",\n        \"adm0_a3_gb\": \"ARG\",\n        \"adm0_a3_br\": \"ARG\",\n        \"adm0_a3_il\": \"ARG\",\n        \"adm0_a3_ps\": \"ARG\",\n        \"adm0_a3_sa\": \"ARG\",\n        \"adm0_a3_eg\": \"ARG\",\n        \"adm0_a3_ma\": \"ARG\",\n        \"adm0_a3_pt\": \"ARG\",\n        \"adm0_a3_ar\": \"ARG\",\n        \"adm0_a3_jp\": \"ARG\",\n        \"adm0_a3_ko\": \"ARG\",\n        \"adm0_a3_vn\": \"ARG\",\n        \"adm0_a3_tr\": \"ARG\",\n        \"adm0_a3_id\": \"ARG\",\n        \"adm0_a3_pl\": \"ARG\",\n        \"adm0_a3_gr\": \"ARG\",\n        \"adm0_a3_it\": \"ARG\",\n        \"adm0_a3_nl\": \"ARG\",\n        \"adm0_a3_se\": \"ARG\",\n        \"adm0_a3_bd\": \"ARG\",\n        \"adm0_a3_ua\": \"ARG\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"South America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"South America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 9,\n        \"long_len\": 9,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2,\n        \"max_label\": 7,\n        \"label_x\": -64.173331,\n        \"label_y\": -33.501159,\n        \"ne_id\": 1159320331,\n        \"wikidataid\": \"Q414\",\n        \"name_ar\": \"الأرجنتين\",\n        \"name_bn\": \"আর্জেন্টিনা\",\n        \"name_de\": \"Argentinien\",\n        \"name_en\": \"Argentina\",\n        \"name_es\": \"Argentina\",\n        \"name_fa\": \"آرژانتین\",\n        \"name_fr\": \"Argentine\",\n        \"name_el\": \"Αργεντινή\",\n        \"name_he\": \"ארגנטינה\",\n        \"name_hi\": \"अर्जेण्टीना\",\n        \"name_hu\": \"Argentína\",\n        \"name_id\": \"Argentina\",\n        \"name_it\": \"Argentina\",\n        \"name_ja\": \"アルゼンチン\",\n        \"name_ko\": \"아르헨티나\",\n        \"name_nl\": \"Argentinië\",\n        \"name_pl\": \"Argentyna\",\n        \"name_pt\": \"Argentina\",\n        \"name_ru\": \"Аргентина\",\n        \"name_sv\": \"Argentina\",\n        \"name_tr\": \"Arjantin\",\n        \"name_uk\": \"Аргентина\",\n        \"name_ur\": \"ارجنٹائن\",\n        \"name_vi\": \"Argentina\",\n        \"name_zh\": \"阿根廷\",\n        \"name_zht\": \"阿根廷\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"ARG.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-68.63401022758323, -52.63637045887449],\n              [-68.25, -53.1],\n              [-67.75, -53.85],\n              [-66.45, -54.45],\n              [-65.05, -54.7],\n              [-65.5, -55.2],\n              [-66.45, -55.25],\n              [-66.95992, -54.89681],\n              [-67.56244, -54.87001],\n              [-68.63335, -54.8695],\n              [-68.63401022758323, -52.63637045887449]\n            ]\n          ],\n          [\n            [\n              [-57.62513342958296, -30.21629485445426],\n              [-57.87493730328188, -31.016556084926208],\n              [-58.14244035504076, -32.044503676076154],\n              [-58.13264767112145, -33.040566908502015],\n              [-58.349611172098875, -33.26318897881541],\n              [-58.42707414410439, -33.909454441057576],\n              [-58.49544206402655, -34.43148976007008],\n              [-57.22582963726366, -35.28802662530788],\n              [-57.36235877137878, -35.977390232081476],\n              [-56.73748735210545, -36.41312590916655],\n              [-56.78828528504836, -36.901571547189334],\n              [-57.74915686708346, -38.18387053807989],\n              [-59.23185706240189, -38.720220228837235],\n              [-61.23744523786564, -38.9284245745412],\n              [-62.33595699731013, -38.827707208004334],\n              [-62.125763108962936, -39.42410491308485],\n              [-62.330530971919494, -40.17258635840034],\n              [-62.145994432205214, -40.67689666113672],\n              [-62.745802781816984, -41.0287614886121],\n              [-63.77049475773255, -41.16678923926369],\n              [-64.73208980981973, -40.80267709733515],\n              [-65.11803524439158, -41.06431487402891],\n              [-64.97856055363582, -42.05800099056934],\n              [-64.3034079657425, -42.35901620866951],\n              [-63.75594784204239, -42.043686618824495],\n              [-63.458059048095876, -42.563138116222405],\n              [-64.37880388045633, -42.87355844499969],\n              [-65.18180396183975, -43.495380954767796],\n              [-65.32882341171013, -44.501366062193696],\n              [-65.5652689276616, -45.036785577169795],\n              [-66.50996578638934, -45.03962778094586],\n              [-67.29379391139247, -45.55189625425519],\n              [-67.58054643418008, -46.30177296324257],\n              [-66.59706641301729, -47.033924655953825],\n              [-65.64102657740149, -47.23613453551193],\n              [-65.98508826360079, -48.133289076531135],\n              [-67.16617896184769, -48.697337334996945],\n              [-67.81608761256643, -49.86966887797038],\n              [-68.72874508327321, -50.26421843851883],\n              [-69.13853919134777, -50.732510267947795],\n              [-68.81556148952356, -51.771104011594126],\n              [-68.14999487982038, -52.34998340612768],\n              [-68.57154537624133, -52.299443855346226],\n              [-69.49836218939609, -52.14276091263727],\n              [-71.91480383979638, -52.0090223058659],\n              [-72.32940385607407, -51.42595631287243],\n              [-72.30997351753234, -50.67700977966632],\n              [-72.97574683296469, -50.741450290734285],\n              [-73.32805091011453, -50.378785088909915],\n              [-73.4154357571201, -49.31843637471297],\n              [-72.64824744331494, -48.87861825947683],\n              [-72.33116085477201, -48.2442383766618],\n              [-72.44735531278027, -47.73853281025352],\n              [-71.91725847033024, -46.88483814879177],\n              [-71.55200944689128, -45.5607329241771],\n              [-71.65931555854536, -44.973688653341426],\n              [-71.22277889675976, -44.784242852559416],\n              [-71.32980078803622, -44.407521661151655],\n              [-71.79362260607193, -44.207172133156064],\n              [-71.46405615913051, -43.787611179378345],\n              [-71.91542395698389, -43.40856454851745],\n              [-72.14889807807856, -42.254888197601375],\n              [-71.7468037584155, -42.05138640723598],\n              [-71.91573401557763, -40.83233936947069],\n              [-71.68076127794649, -39.808164157878046],\n              [-71.41351660834906, -38.91602223079114],\n              [-70.81466427273469, -38.55299529394074],\n              [-71.11862504747549, -37.57682748794724],\n              [-71.12188066270987, -36.65812387466232],\n              [-70.36476925320164, -36.00508879978992],\n              [-70.38804948594913, -35.16968759535949],\n              [-69.81730912950152, -34.1935714657983],\n              [-69.81477698431922, -33.273886000299825],\n              [-70.0743993801536, -33.09120981214805],\n              [-70.53506893581951, -31.36501026787031],\n              [-69.91900834825194, -30.33633920666828],\n              [-70.01355038112992, -29.367922865518572],\n              [-69.65613033718317, -28.459141127233686],\n              [-69.00123491074825, -27.52121388113618],\n              [-68.29554155137043, -26.89933969493578],\n              [-68.59479977077268, -26.506908868111296],\n              [-68.38600114609736, -26.185016371365215],\n              [-68.41765296087614, -24.51855478281688],\n              [-67.32844295924417, -24.02530323659095],\n              [-66.9852339341777, -22.98634856536284],\n              [-67.1066735500636, -22.735924574476417],\n              [-66.27333940292485, -21.83231047942072],\n              [-64.96489213729461, -22.075861504812327],\n              [-64.37702104354226, -22.79809132252354],\n              [-63.986838141522476, -21.99364430103595],\n              [-62.84646847192156, -22.03498544686945],\n              [-62.685057135657885, -22.249029229422387],\n              [-60.846564704009914, -23.880712579038292],\n              [-60.02896603050403, -24.032796319273274],\n              [-58.80712846539498, -24.77145924245331],\n              [-57.77721716981794, -25.16233977630904],\n              [-57.63366004091113, -25.60365650808164],\n              [-58.61817359071975, -27.123718763947096],\n              [-57.60975969097614, -27.395898532828387],\n              [-56.486701626192996, -27.548499037386293],\n              [-55.69584550639816, -27.387837009390864],\n              [-54.78879492859505, -26.621785577096134],\n              [-54.625290696823576, -25.739255466415514],\n              [-54.13004960795439, -25.547639255477254],\n              [-53.628348965048744, -26.124865004177472],\n              [-53.64873531758789, -26.92347258881609],\n              [-54.490725267135524, -27.47475676850579],\n              [-55.16228634298457, -27.881915378533463],\n              [-56.29089962423908, -28.852760512000895],\n              [-57.62513342958296, -30.21629485445426]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Suriname\",\n        \"sov_a3\": \"SUR\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Suriname\",\n        \"adm0_a3\": \"SUR\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Suriname\",\n        \"gu_a3\": \"SUR\",\n        \"su_dif\": 0,\n        \"subunit\": \"Suriname\",\n        \"su_a3\": \"SUR\",\n        \"brk_diff\": 0,\n        \"name\": \"Suriname\",\n        \"name_long\": \"Suriname\",\n        \"brk_a3\": \"SUR\",\n        \"brk_name\": \"Suriname\",\n        \"brk_group\": null,\n        \"abbrev\": \"Sur.\",\n        \"postal\": \"SR\",\n        \"formal_en\": \"Republic of Suriname\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Suriname\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Suriname\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 7,\n        \"mapcolor13\": 6,\n        \"pop_est\": 581363,\n        \"pop_rank\": 11,\n        \"pop_year\": 2019,\n        \"gdp_md\": 3697,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"NS\",\n        \"iso_a2\": \"SR\",\n        \"iso_a2_eh\": \"SR\",\n        \"iso_a3\": \"SUR\",\n        \"iso_a3_eh\": \"SUR\",\n        \"iso_n3\": \"740\",\n        \"iso_n3_eh\": \"740\",\n        \"un_a3\": \"740\",\n        \"wb_a2\": \"SR\",\n        \"wb_a3\": \"SUR\",\n        \"woe_id\": 23424913,\n        \"woe_id_eh\": 23424913,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"SUR\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"SUR\",\n        \"adm0_a3_us\": \"SUR\",\n        \"adm0_a3_fr\": \"SUR\",\n        \"adm0_a3_ru\": \"SUR\",\n        \"adm0_a3_es\": \"SUR\",\n        \"adm0_a3_cn\": \"SUR\",\n        \"adm0_a3_tw\": \"SUR\",\n        \"adm0_a3_in\": \"SUR\",\n        \"adm0_a3_np\": \"SUR\",\n        \"adm0_a3_pk\": \"SUR\",\n        \"adm0_a3_de\": \"SUR\",\n        \"adm0_a3_gb\": \"SUR\",\n        \"adm0_a3_br\": \"SUR\",\n        \"adm0_a3_il\": \"SUR\",\n        \"adm0_a3_ps\": \"SUR\",\n        \"adm0_a3_sa\": \"SUR\",\n        \"adm0_a3_eg\": \"SUR\",\n        \"adm0_a3_ma\": \"SUR\",\n        \"adm0_a3_pt\": \"SUR\",\n        \"adm0_a3_ar\": \"SUR\",\n        \"adm0_a3_jp\": \"SUR\",\n        \"adm0_a3_ko\": \"SUR\",\n        \"adm0_a3_vn\": \"SUR\",\n        \"adm0_a3_tr\": \"SUR\",\n        \"adm0_a3_id\": \"SUR\",\n        \"adm0_a3_pl\": \"SUR\",\n        \"adm0_a3_gr\": \"SUR\",\n        \"adm0_a3_it\": \"SUR\",\n        \"adm0_a3_nl\": \"SUR\",\n        \"adm0_a3_se\": \"SUR\",\n        \"adm0_a3_bd\": \"SUR\",\n        \"adm0_a3_ua\": \"SUR\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"South America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"South America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": -55.91094,\n        \"label_y\": 4.143987,\n        \"ne_id\": 1159321281,\n        \"wikidataid\": \"Q730\",\n        \"name_ar\": \"سورينام\",\n        \"name_bn\": \"সুরিনাম\",\n        \"name_de\": \"Suriname\",\n        \"name_en\": \"Suriname\",\n        \"name_es\": \"Surinam\",\n        \"name_fa\": \"سورینام\",\n        \"name_fr\": \"Suriname\",\n        \"name_el\": \"Σουρινάμ\",\n        \"name_he\": \"סורינאם\",\n        \"name_hi\": \"सूरीनाम\",\n        \"name_hu\": \"Suriname\",\n        \"name_id\": \"Suriname\",\n        \"name_it\": \"Suriname\",\n        \"name_ja\": \"スリナム\",\n        \"name_ko\": \"수리남\",\n        \"name_nl\": \"Suriname\",\n        \"name_pl\": \"Surinam\",\n        \"name_pt\": \"Suriname\",\n        \"name_ru\": \"Суринам\",\n        \"name_sv\": \"Surinam\",\n        \"name_tr\": \"Surinam\",\n        \"name_uk\": \"Суринам\",\n        \"name_ur\": \"سرینام\",\n        \"name_vi\": \"Suriname\",\n        \"name_zh\": \"苏里南\",\n        \"name_zht\": \"蘇利南\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"SUR.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-54.524754197799716, 2.311848863123785],\n            [-55.09758744975514, 2.523748073736613],\n            [-55.569755011606, 2.421506252447131],\n            [-55.973322109589375, 2.510363877773017],\n            [-56.0733418442903, 2.220794989425499],\n            [-55.905600145070885, 2.02199575439866],\n            [-55.995698004771754, 1.817667141116601],\n            [-56.539385748914555, 1.899522609866921],\n            [-57.15009782573991, 2.768926906745406],\n            [-57.28143347840971, 3.333491929534119],\n            [-57.60156897645787, 3.334654649260685],\n            [-58.04469438336068, 4.060863552258382],\n            [-57.8602095200787, 4.57680105226045],\n            [-57.91428890647214, 4.812626451024414],\n            [-57.307245856339506, 5.073566595882227],\n            [-57.14743648947689, 5.973149929219161],\n            [-55.9493184067898, 5.772877915872002],\n            [-55.841779751190415, 5.95312531170606],\n            [-55.033250291551774, 6.025291449401664],\n            [-53.9580446030709, 5.756548163267765],\n            [-54.47863298197923, 4.896755682795586],\n            [-54.399542202356514, 4.212611395683467],\n            [-54.00693050801901, 3.620037746592558],\n            [-54.181726040246275, 3.189779771330421],\n            [-54.2697051662232, 2.732391669115046],\n            [-54.524754197799716, 2.311848863123785]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Guyana\",\n        \"sov_a3\": \"GUY\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Guyana\",\n        \"adm0_a3\": \"GUY\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Guyana\",\n        \"gu_a3\": \"GUY\",\n        \"su_dif\": 0,\n        \"subunit\": \"Guyana\",\n        \"su_a3\": \"GUY\",\n        \"brk_diff\": 0,\n        \"name\": \"Guyana\",\n        \"name_long\": \"Guyana\",\n        \"brk_a3\": \"GUY\",\n        \"brk_name\": \"Guyana\",\n        \"brk_group\": null,\n        \"abbrev\": \"Guy.\",\n        \"postal\": \"GY\",\n        \"formal_en\": \"Co-operative Republic of Guyana\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Guyana\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Guyana\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 8,\n        \"pop_est\": 782766,\n        \"pop_rank\": 11,\n        \"pop_year\": 2019,\n        \"gdp_md\": 5173,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"GY\",\n        \"iso_a2\": \"GY\",\n        \"iso_a2_eh\": \"GY\",\n        \"iso_a3\": \"GUY\",\n        \"iso_a3_eh\": \"GUY\",\n        \"iso_n3\": \"328\",\n        \"iso_n3_eh\": \"328\",\n        \"un_a3\": \"328\",\n        \"wb_a2\": \"GY\",\n        \"wb_a3\": \"GUY\",\n        \"woe_id\": 23424836,\n        \"woe_id_eh\": 23424836,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"GUY\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"GUY\",\n        \"adm0_a3_us\": \"GUY\",\n        \"adm0_a3_fr\": \"GUY\",\n        \"adm0_a3_ru\": \"GUY\",\n        \"adm0_a3_es\": \"GUY\",\n        \"adm0_a3_cn\": \"GUY\",\n        \"adm0_a3_tw\": \"GUY\",\n        \"adm0_a3_in\": \"GUY\",\n        \"adm0_a3_np\": \"GUY\",\n        \"adm0_a3_pk\": \"GUY\",\n        \"adm0_a3_de\": \"GUY\",\n        \"adm0_a3_gb\": \"GUY\",\n        \"adm0_a3_br\": \"GUY\",\n        \"adm0_a3_il\": \"GUY\",\n        \"adm0_a3_ps\": \"GUY\",\n        \"adm0_a3_sa\": \"GUY\",\n        \"adm0_a3_eg\": \"GUY\",\n        \"adm0_a3_ma\": \"GUY\",\n        \"adm0_a3_pt\": \"GUY\",\n        \"adm0_a3_ar\": \"GUY\",\n        \"adm0_a3_jp\": \"GUY\",\n        \"adm0_a3_ko\": \"GUY\",\n        \"adm0_a3_vn\": \"GUY\",\n        \"adm0_a3_tr\": \"GUY\",\n        \"adm0_a3_id\": \"GUY\",\n        \"adm0_a3_pl\": \"GUY\",\n        \"adm0_a3_gr\": \"GUY\",\n        \"adm0_a3_it\": \"GUY\",\n        \"adm0_a3_nl\": \"GUY\",\n        \"adm0_a3_se\": \"GUY\",\n        \"adm0_a3_bd\": \"GUY\",\n        \"adm0_a3_ua\": \"GUY\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"South America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"South America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": -58.942643,\n        \"label_y\": 5.124317,\n        \"ne_id\": 1159320817,\n        \"wikidataid\": \"Q734\",\n        \"name_ar\": \"غيانا\",\n        \"name_bn\": \"গায়ানা\",\n        \"name_de\": \"Guyana\",\n        \"name_en\": \"Guyana\",\n        \"name_es\": \"Guyana\",\n        \"name_fa\": \"گویان\",\n        \"name_fr\": \"Guyana\",\n        \"name_el\": \"Γουιάνα\",\n        \"name_he\": \"גיאנה\",\n        \"name_hi\": \"गयाना\",\n        \"name_hu\": \"Guyana\",\n        \"name_id\": \"Guyana\",\n        \"name_it\": \"Guyana\",\n        \"name_ja\": \"ガイアナ\",\n        \"name_ko\": \"가이아나\",\n        \"name_nl\": \"Guyana\",\n        \"name_pl\": \"Gujana\",\n        \"name_pt\": \"Guiana\",\n        \"name_ru\": \"Гайана\",\n        \"name_sv\": \"Guyana\",\n        \"name_tr\": \"Guyana\",\n        \"name_uk\": \"Гаяна\",\n        \"name_ur\": \"گیانا\",\n        \"name_vi\": \"Guyana\",\n        \"name_zh\": \"圭亚那\",\n        \"name_zht\": \"圭亞那\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"GUY.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-56.539385748914555, 1.899522609866921],\n            [-56.78270423036083, 1.863710842288654],\n            [-57.335822923396904, 1.948537705895759],\n            [-57.66097103537737, 1.682584947105639],\n            [-58.11344987652502, 1.507195135907025],\n            [-58.429477098205965, 1.463941962078721],\n            [-58.540012986878295, 1.268088283692521],\n            [-59.03086157900265, 1.317697658692722],\n            [-59.64604366722126, 1.786893825686789],\n            [-59.71854570172675, 2.24963043864436],\n            [-59.97452490908456, 2.755232652188056],\n            [-59.815413174057866, 3.606498521332085],\n            [-59.53803992373123, 3.958802598481938],\n            [-59.767405768458715, 4.423502915866607],\n            [-60.11100236676738, 4.574966538914083],\n            [-59.980958624904886, 5.014061184098139],\n            [-60.21368343773133, 5.244486395687602],\n            [-60.73357418480372, 5.200277207861901],\n            [-61.410302903881956, 5.959068101419618],\n            [-61.13941504580795, 6.234296779806144],\n            [-61.15933631045648, 6.696077378766319],\n            [-60.54399919294099, 6.856584377464883],\n            [-60.2956680975624, 7.043911444522919],\n            [-60.637972785063766, 7.414999904810855],\n            [-60.5505879380582, 7.779602972846178],\n            [-59.758284878159195, 8.367034816924047],\n            [-59.10168412945866, 7.999201971870492],\n            [-58.48296220562806, 7.347691351750697],\n            [-58.45487606467742, 6.832787380394464],\n            [-58.078103196837375, 6.809093736188643],\n            [-57.542218593970645, 6.321268215353356],\n            [-57.14743648947689, 5.973149929219161],\n            [-57.307245856339506, 5.073566595882227],\n            [-57.91428890647214, 4.812626451024414],\n            [-57.8602095200787, 4.57680105226045],\n            [-58.04469438336068, 4.060863552258382],\n            [-57.60156897645787, 3.334654649260685],\n            [-57.28143347840971, 3.333491929534119],\n            [-57.15009782573991, 2.768926906745406],\n            [-56.539385748914555, 1.899522609866921]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Brazil\",\n        \"sov_a3\": \"BRA\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Brazil\",\n        \"adm0_a3\": \"BRA\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Brazil\",\n        \"gu_a3\": \"BRA\",\n        \"su_dif\": 0,\n        \"subunit\": \"Brazil\",\n        \"su_a3\": \"BRA\",\n        \"brk_diff\": 0,\n        \"name\": \"Brazil\",\n        \"name_long\": \"Brazil\",\n        \"brk_a3\": \"BRA\",\n        \"brk_name\": \"Brazil\",\n        \"brk_group\": null,\n        \"abbrev\": \"Brazil\",\n        \"postal\": \"BR\",\n        \"formal_en\": \"Federative Republic of Brazil\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Brazil\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Brazil\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 7,\n        \"pop_est\": 211049527,\n        \"pop_rank\": 17,\n        \"pop_year\": 2019,\n        \"gdp_md\": 1839758,\n        \"gdp_year\": 2019,\n        \"economy\": \"3. Emerging region: BRIC\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"BR\",\n        \"iso_a2\": \"BR\",\n        \"iso_a2_eh\": \"BR\",\n        \"iso_a3\": \"BRA\",\n        \"iso_a3_eh\": \"BRA\",\n        \"iso_n3\": \"076\",\n        \"iso_n3_eh\": \"076\",\n        \"un_a3\": \"076\",\n        \"wb_a2\": \"BR\",\n        \"wb_a3\": \"BRA\",\n        \"woe_id\": 23424768,\n        \"woe_id_eh\": 23424768,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"BRA\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"BRA\",\n        \"adm0_a3_us\": \"BRA\",\n        \"adm0_a3_fr\": \"BRA\",\n        \"adm0_a3_ru\": \"BRA\",\n        \"adm0_a3_es\": \"BRA\",\n        \"adm0_a3_cn\": \"BRA\",\n        \"adm0_a3_tw\": \"BRA\",\n        \"adm0_a3_in\": \"BRA\",\n        \"adm0_a3_np\": \"BRA\",\n        \"adm0_a3_pk\": \"BRA\",\n        \"adm0_a3_de\": \"BRA\",\n        \"adm0_a3_gb\": \"BRA\",\n        \"adm0_a3_br\": \"BRA\",\n        \"adm0_a3_il\": \"BRA\",\n        \"adm0_a3_ps\": \"BRA\",\n        \"adm0_a3_sa\": \"BRA\",\n        \"adm0_a3_eg\": \"BRA\",\n        \"adm0_a3_ma\": \"BRA\",\n        \"adm0_a3_pt\": \"BRA\",\n        \"adm0_a3_ar\": \"BRA\",\n        \"adm0_a3_jp\": \"BRA\",\n        \"adm0_a3_ko\": \"BRA\",\n        \"adm0_a3_vn\": \"BRA\",\n        \"adm0_a3_tr\": \"BRA\",\n        \"adm0_a3_id\": \"BRA\",\n        \"adm0_a3_pl\": \"BRA\",\n        \"adm0_a3_gr\": \"BRA\",\n        \"adm0_a3_it\": \"BRA\",\n        \"adm0_a3_nl\": \"BRA\",\n        \"adm0_a3_se\": \"BRA\",\n        \"adm0_a3_bd\": \"BRA\",\n        \"adm0_a3_ua\": \"BRA\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"South America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"South America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 5.7,\n        \"label_x\": -49.55945,\n        \"label_y\": -12.098687,\n        \"ne_id\": 1159320441,\n        \"wikidataid\": \"Q155\",\n        \"name_ar\": \"البرازيل\",\n        \"name_bn\": \"ব্রাজিল\",\n        \"name_de\": \"Brasilien\",\n        \"name_en\": \"Brazil\",\n        \"name_es\": \"Brasil\",\n        \"name_fa\": \"برزیل\",\n        \"name_fr\": \"Brésil\",\n        \"name_el\": \"Βραζιλία\",\n        \"name_he\": \"ברזיל\",\n        \"name_hi\": \"ब्राज़ील\",\n        \"name_hu\": \"Brazília\",\n        \"name_id\": \"Brasil\",\n        \"name_it\": \"Brasile\",\n        \"name_ja\": \"ブラジル\",\n        \"name_ko\": \"브라질\",\n        \"name_nl\": \"Brazilië\",\n        \"name_pl\": \"Brazylia\",\n        \"name_pt\": \"Brasil\",\n        \"name_ru\": \"Бразилия\",\n        \"name_sv\": \"Brasilien\",\n        \"name_tr\": \"Brezilya\",\n        \"name_uk\": \"Бразилія\",\n        \"name_ur\": \"برازیل\",\n        \"name_vi\": \"Brasil\",\n        \"name_zh\": \"巴西\",\n        \"name_zht\": \"巴西\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"BRA.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-53.373661668498244, -33.768377780900764],\n            [-53.6505439927181, -33.20200408298183],\n            [-53.209588995971544, -32.727666110974724],\n            [-53.78795162618219, -32.047242526987624],\n            [-54.57245154480512, -31.494511407193748],\n            [-55.601510179249345, -30.853878676071393],\n            [-55.97324459494094, -30.883075860316303],\n            [-56.976025763564735, -30.109686374636127],\n            [-57.62513342958296, -30.21629485445426],\n            [-56.29089962423908, -28.852760512000895],\n            [-55.16228634298457, -27.881915378533463],\n            [-54.490725267135524, -27.47475676850579],\n            [-53.64873531758789, -26.92347258881609],\n            [-53.628348965048744, -26.124865004177472],\n            [-54.13004960795439, -25.547639255477254],\n            [-54.625290696823576, -25.739255466415514],\n            [-54.42894609233059, -25.162184747012166],\n            [-54.29347632507745, -24.570799655863965],\n            [-54.29295956075452, -24.02101409271073],\n            [-54.65283423523513, -23.83957813893396],\n            [-55.02790178080955, -24.00127369557523],\n            [-55.40074723979542, -23.956935316668805],\n            [-55.517639329639636, -23.571997572526637],\n            [-55.610682745981144, -22.655619398694846],\n            [-55.79795813660691, -22.356929620047822],\n            [-56.47331743022939, -22.086300144135283],\n            [-56.8815095689029, -22.28215382252148],\n            [-57.937155727761294, -22.090175876557172],\n            [-57.8706739976178, -20.73268767668195],\n            [-58.166392381408045, -20.176700941653678],\n            [-57.85380164247451, -19.96999521248619],\n            [-57.949997321185826, -19.40000416430682],\n            [-57.67600887717431, -18.96183969490403],\n            [-57.49837114117099, -18.174187513911292],\n            [-57.734558274961, -17.55246835700777],\n            [-58.28080400250225, -17.271710300366017],\n            [-58.38805843772404, -16.877109063385276],\n            [-58.24121985536668, -16.299573256091293],\n            [-60.158389655179036, -16.258283786690086],\n            [-60.54296566429515, -15.093910414289596],\n            [-60.251148851142936, -15.07721892665932],\n            [-60.26432634137737, -14.645979099183641],\n            [-60.45919816755003, -14.354007256734555],\n            [-60.503304002511136, -13.775954685117659],\n            [-61.08412126325565, -13.479383640194598],\n            [-61.71320431176078, -13.489202162330052],\n            [-62.127080857986385, -13.198780612849724],\n            [-62.803060268796386, -13.000653171442686],\n            [-63.19649878605057, -12.627032565972435],\n            [-64.3163529120316, -12.461978041232193],\n            [-65.40228146021303, -11.566270440317155],\n            [-65.32189876978302, -10.895872084194679],\n            [-65.44483700220539, -10.511451104375432],\n            [-65.33843522811642, -9.761987806846392],\n            [-66.6469083319628, -9.931331475466862],\n            [-67.17380123561074, -10.306812432499612],\n            [-68.04819230820539, -10.712059014532485],\n            [-68.27125362819326, -11.01452117273682],\n            [-68.78615759954948, -11.03638030359628],\n            [-69.52967810736496, -10.951734307502194],\n            [-70.0937522040469, -11.123971856331012],\n            [-70.54868567572841, -11.009146823778465],\n            [-70.48189388699117, -9.490118096558845],\n            [-71.30241227892154, -10.079436130415374],\n            [-72.18489071316985, -10.053597914269432],\n            [-72.56303300646564, -9.520193780152717],\n            [-73.22671342639016, -9.462212823121234],\n            [-73.01538265653255, -9.032833347208062],\n            [-73.57105933296707, -8.424446709835834],\n            [-73.98723548042966, -7.523829847853065],\n            [-73.7234014553635, -7.340998630404414],\n            [-73.72448666044164, -6.91859547285064],\n            [-73.1200274319236, -6.629930922068239],\n            [-73.21971126981461, -6.089188734566078],\n            [-72.9645072089412, -5.741251315944893],\n            [-72.89192765978726, -5.274561455916981],\n            [-71.74840572781655, -4.593982842633011],\n            [-70.92884334988358, -4.401591485210368],\n            [-70.7947688463023, -4.251264743673303],\n            [-69.89363521999663, -4.298186944194327],\n            [-69.44410193548961, -1.556287123219818],\n            [-69.42048580593223, -1.122618503426409],\n            [-69.5770653957766, -0.549991957200163],\n            [-70.02065589057005, -0.185156345219539],\n            [-70.01556576198931, 0.541414292804205],\n            [-69.45239600287246, 0.706158758950693],\n            [-69.25243404811906, 0.602650865070075],\n            [-69.21863766140018, 0.985676581217433],\n            [-69.80459672715773, 1.089081122233466],\n            [-69.81697323269162, 1.714805202639624],\n            [-67.86856502955884, 1.692455145673392],\n            [-67.5378100246747, 2.03716278727633],\n            [-67.2599975246736, 1.719998684084956],\n            [-67.0650481838525, 1.130112209473225],\n            [-66.87632585312258, 1.253360500489336],\n            [-66.32576514348496, 0.724452215982012],\n            [-65.54826738143757, 0.78925446207603],\n            [-65.35471330428837, 1.0952822941085],\n            [-64.61101192895987, 1.328730576987042],\n            [-64.19930579289051, 1.49285492594602],\n            [-64.08308549666609, 1.91636912679408],\n            [-63.368788011311665, 2.200899562993129],\n            [-63.42286739770512, 2.411067613124175],\n            [-64.2699991522658, 2.497005520025567],\n            [-64.40882788761792, 3.126786200366624],\n            [-64.3684944322141, 3.797210394705246],\n            [-64.81606401229402, 4.056445217297423],\n            [-64.62865943058755, 4.14848094320925],\n            [-63.88834286157416, 4.020530096854571],\n            [-63.093197597899106, 3.770571193858785],\n            [-62.804533047116706, 4.006965033377952],\n            [-62.08542965355913, 4.162123521334308],\n            [-60.96689327660154, 4.536467596856639],\n            [-60.601179165271944, 4.91809804933213],\n            [-60.73357418480372, 5.200277207861901],\n            [-60.21368343773133, 5.244486395687602],\n            [-59.980958624904886, 5.014061184098139],\n            [-60.11100236676738, 4.574966538914083],\n            [-59.767405768458715, 4.423502915866607],\n            [-59.53803992373123, 3.958802598481938],\n            [-59.815413174057866, 3.606498521332085],\n            [-59.97452490908456, 2.755232652188056],\n            [-59.71854570172675, 2.24963043864436],\n            [-59.64604366722126, 1.786893825686789],\n            [-59.03086157900265, 1.317697658692722],\n            [-58.540012986878295, 1.268088283692521],\n            [-58.429477098205965, 1.463941962078721],\n            [-58.11344987652502, 1.507195135907025],\n            [-57.66097103537737, 1.682584947105639],\n            [-57.335822923396904, 1.948537705895759],\n            [-56.78270423036083, 1.863710842288654],\n            [-56.539385748914555, 1.899522609866921],\n            [-55.995698004771754, 1.817667141116601],\n            [-55.905600145070885, 2.02199575439866],\n            [-56.0733418442903, 2.220794989425499],\n            [-55.973322109589375, 2.510363877773017],\n            [-55.569755011606, 2.421506252447131],\n            [-55.09758744975514, 2.523748073736613],\n            [-54.524754197799716, 2.311848863123785],\n            [-54.08806250671725, 2.105556545414629],\n            [-53.77852067728892, 2.376702785650082],\n            [-53.554839240113544, 2.334896551925951],\n            [-53.41846513529531, 2.053389187015981],\n            [-52.939657151894956, 2.124857692875636],\n            [-52.55642473001842, 2.504705308437053],\n            [-52.249337531123956, 3.241094468596245],\n            [-51.65779741067889, 4.156232408053029],\n            [-51.31714636901086, 4.203490505383954],\n            [-51.069771287629656, 3.650397650564031],\n            [-50.508875291533656, 1.901563828942457],\n            [-49.97407589374506, 1.736483465986069],\n            [-49.94710079608871, 1.046189683431223],\n            [-50.699251268096916, 0.222984117021682],\n            [-50.38821082213214, -0.078444512536819],\n            [-48.62056677915632, -0.235489190271821],\n            [-48.58449662941659, -1.237805271005001],\n            [-47.824956427590635, -0.5816179337628],\n            [-46.566583624851226, -0.941027520352776],\n            [-44.905703090990414, -1.551739597178134],\n            [-44.417619187993665, -2.137750339367976],\n            [-44.58158850765578, -2.691308282078524],\n            [-43.418791266440195, -2.383110039889793],\n            [-41.47265682632825, -2.912018324397116],\n            [-39.97866533055404, -2.873054294449041],\n            [-38.50038347019657, -3.700652357603396],\n            [-37.2232521225352, -4.820945733258917],\n            [-36.45293738457639, -5.109403578312154],\n            [-35.59779578301047, -5.149504489770649],\n            [-35.23538896334756, -5.464937432480247],\n            [-34.89602983248683, -6.738193047719711],\n            [-34.729993455533034, -7.343220716992967],\n            [-35.12821204277422, -8.996401462442286],\n            [-35.636966518687714, -9.649281508017815],\n            [-37.046518724097, -11.040721123908803],\n            [-37.68361161960736, -12.171194756725823],\n            [-38.42387651218844, -13.038118584854288],\n            [-38.67388709161652, -13.057652276260619],\n            [-38.953275722802545, -13.793369642800023],\n            [-38.88229814304965, -15.667053724838768],\n            [-39.16109249526431, -17.208406670808472],\n            [-39.2673392400564, -17.867746270420483],\n            [-39.58352149103423, -18.262295830968938],\n            [-39.76082333022764, -19.59911345792741],\n            [-40.77474077001034, -20.904511814052423],\n            [-40.94475623225061, -21.93731698983781],\n            [-41.754164191238225, -22.370675551037458],\n            [-41.98828426773656, -22.970070489190896],\n            [-43.07470374202475, -22.96769337330547],\n            [-44.64781185563781, -23.351959323827842],\n            [-45.35213578955992, -23.796841729428582],\n            [-46.47209326840554, -24.088968601174543],\n            [-47.64897233742066, -24.885199069927722],\n            [-48.4954581365777, -25.877024834905654],\n            [-48.64100480812774, -26.623697605090932],\n            [-48.474735887228654, -27.17591196056189],\n            [-48.661520351747626, -28.18613453543572],\n            [-48.8884574041574, -28.674115085567884],\n            [-49.587329474472675, -29.224469089476337],\n            [-50.696874152211485, -30.98446502047296],\n            [-51.576226162306156, -31.77769825615321],\n            [-52.256081305538046, -32.24536996839467],\n            [-52.712099982297694, -33.19657805759118],\n            [-53.373661668498244, -33.768377780900764]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Uruguay\",\n        \"sov_a3\": \"URY\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Uruguay\",\n        \"adm0_a3\": \"URY\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Uruguay\",\n        \"gu_a3\": \"URY\",\n        \"su_dif\": 0,\n        \"subunit\": \"Uruguay\",\n        \"su_a3\": \"URY\",\n        \"brk_diff\": 0,\n        \"name\": \"Uruguay\",\n        \"name_long\": \"Uruguay\",\n        \"brk_a3\": \"URY\",\n        \"brk_name\": \"Uruguay\",\n        \"brk_group\": null,\n        \"abbrev\": \"Ury.\",\n        \"postal\": \"UY\",\n        \"formal_en\": \"Oriental Republic of Uruguay\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Uruguay\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Uruguay\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 10,\n        \"pop_est\": 3461734,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 56045,\n        \"gdp_year\": 2019,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"UY\",\n        \"iso_a2\": \"UY\",\n        \"iso_a2_eh\": \"UY\",\n        \"iso_a3\": \"URY\",\n        \"iso_a3_eh\": \"URY\",\n        \"iso_n3\": \"858\",\n        \"iso_n3_eh\": \"858\",\n        \"un_a3\": \"858\",\n        \"wb_a2\": \"UY\",\n        \"wb_a3\": \"URY\",\n        \"woe_id\": 23424979,\n        \"woe_id_eh\": 23424979,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"URY\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"URY\",\n        \"adm0_a3_us\": \"URY\",\n        \"adm0_a3_fr\": \"URY\",\n        \"adm0_a3_ru\": \"URY\",\n        \"adm0_a3_es\": \"URY\",\n        \"adm0_a3_cn\": \"URY\",\n        \"adm0_a3_tw\": \"URY\",\n        \"adm0_a3_in\": \"URY\",\n        \"adm0_a3_np\": \"URY\",\n        \"adm0_a3_pk\": \"URY\",\n        \"adm0_a3_de\": \"URY\",\n        \"adm0_a3_gb\": \"URY\",\n        \"adm0_a3_br\": \"URY\",\n        \"adm0_a3_il\": \"URY\",\n        \"adm0_a3_ps\": \"URY\",\n        \"adm0_a3_sa\": \"URY\",\n        \"adm0_a3_eg\": \"URY\",\n        \"adm0_a3_ma\": \"URY\",\n        \"adm0_a3_pt\": \"URY\",\n        \"adm0_a3_ar\": \"URY\",\n        \"adm0_a3_jp\": \"URY\",\n        \"adm0_a3_ko\": \"URY\",\n        \"adm0_a3_vn\": \"URY\",\n        \"adm0_a3_tr\": \"URY\",\n        \"adm0_a3_id\": \"URY\",\n        \"adm0_a3_pl\": \"URY\",\n        \"adm0_a3_gr\": \"URY\",\n        \"adm0_a3_it\": \"URY\",\n        \"adm0_a3_nl\": \"URY\",\n        \"adm0_a3_se\": \"URY\",\n        \"adm0_a3_bd\": \"URY\",\n        \"adm0_a3_ua\": \"URY\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"South America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"South America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": -55.966942,\n        \"label_y\": -32.961127,\n        \"ne_id\": 1159321353,\n        \"wikidataid\": \"Q77\",\n        \"name_ar\": \"الأوروغواي\",\n        \"name_bn\": \"উরুগুয়ে\",\n        \"name_de\": \"Uruguay\",\n        \"name_en\": \"Uruguay\",\n        \"name_es\": \"Uruguay\",\n        \"name_fa\": \"اروگوئه\",\n        \"name_fr\": \"Uruguay\",\n        \"name_el\": \"Ουρουγουάη\",\n        \"name_he\": \"אורוגוואי\",\n        \"name_hi\": \"उरुग्वे\",\n        \"name_hu\": \"Uruguay\",\n        \"name_id\": \"Uruguay\",\n        \"name_it\": \"Uruguay\",\n        \"name_ja\": \"ウルグアイ\",\n        \"name_ko\": \"우루과이\",\n        \"name_nl\": \"Uruguay\",\n        \"name_pl\": \"Urugwaj\",\n        \"name_pt\": \"Uruguai\",\n        \"name_ru\": \"Уругвай\",\n        \"name_sv\": \"Uruguay\",\n        \"name_tr\": \"Uruguay\",\n        \"name_uk\": \"Уругвай\",\n        \"name_ur\": \"یوراگوئے\",\n        \"name_vi\": \"Uruguay\",\n        \"name_zh\": \"乌拉圭\",\n        \"name_zht\": \"烏拉圭\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"URY.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-57.62513342958296, -30.21629485445426],\n            [-56.976025763564735, -30.109686374636127],\n            [-55.97324459494094, -30.883075860316303],\n            [-55.601510179249345, -30.853878676071393],\n            [-54.57245154480512, -31.494511407193748],\n            [-53.78795162618219, -32.047242526987624],\n            [-53.209588995971544, -32.727666110974724],\n            [-53.6505439927181, -33.20200408298183],\n            [-53.373661668498244, -33.768377780900764],\n            [-53.806425950726535, -34.39681487400223],\n            [-54.93586605489773, -34.952646579733624],\n            [-55.67408972840329, -34.75265878676407],\n            [-56.21529700379607, -34.85983570733742],\n            [-57.1396850246331, -34.430456231424245],\n            [-57.81786068381551, -34.4625472958775],\n            [-58.42707414410439, -33.909454441057576],\n            [-58.349611172098875, -33.26318897881541],\n            [-58.13264767112145, -33.040566908502015],\n            [-58.14244035504076, -32.044503676076154],\n            [-57.87493730328188, -31.016556084926208],\n            [-57.62513342958296, -30.21629485445426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Ecuador\",\n        \"sov_a3\": \"ECU\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Ecuador\",\n        \"adm0_a3\": \"ECU\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Ecuador\",\n        \"gu_a3\": \"ECU\",\n        \"su_dif\": 0,\n        \"subunit\": \"Ecuador\",\n        \"su_a3\": \"ECU\",\n        \"brk_diff\": 0,\n        \"name\": \"Ecuador\",\n        \"name_long\": \"Ecuador\",\n        \"brk_a3\": \"ECU\",\n        \"brk_name\": \"Ecuador\",\n        \"brk_group\": null,\n        \"abbrev\": \"Ecu.\",\n        \"postal\": \"EC\",\n        \"formal_en\": \"Republic of Ecuador\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Ecuador\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Ecuador\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 12,\n        \"pop_est\": 17373662,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 107435,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"EC\",\n        \"iso_a2\": \"EC\",\n        \"iso_a2_eh\": \"EC\",\n        \"iso_a3\": \"ECU\",\n        \"iso_a3_eh\": \"ECU\",\n        \"iso_n3\": \"218\",\n        \"iso_n3_eh\": \"218\",\n        \"un_a3\": \"218\",\n        \"wb_a2\": \"EC\",\n        \"wb_a3\": \"ECU\",\n        \"woe_id\": 23424801,\n        \"woe_id_eh\": 23424801,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"ECU\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"ECU\",\n        \"adm0_a3_us\": \"ECU\",\n        \"adm0_a3_fr\": \"ECU\",\n        \"adm0_a3_ru\": \"ECU\",\n        \"adm0_a3_es\": \"ECU\",\n        \"adm0_a3_cn\": \"ECU\",\n        \"adm0_a3_tw\": \"ECU\",\n        \"adm0_a3_in\": \"ECU\",\n        \"adm0_a3_np\": \"ECU\",\n        \"adm0_a3_pk\": \"ECU\",\n        \"adm0_a3_de\": \"ECU\",\n        \"adm0_a3_gb\": \"ECU\",\n        \"adm0_a3_br\": \"ECU\",\n        \"adm0_a3_il\": \"ECU\",\n        \"adm0_a3_ps\": \"ECU\",\n        \"adm0_a3_sa\": \"ECU\",\n        \"adm0_a3_eg\": \"ECU\",\n        \"adm0_a3_ma\": \"ECU\",\n        \"adm0_a3_pt\": \"ECU\",\n        \"adm0_a3_ar\": \"ECU\",\n        \"adm0_a3_jp\": \"ECU\",\n        \"adm0_a3_ko\": \"ECU\",\n        \"adm0_a3_vn\": \"ECU\",\n        \"adm0_a3_tr\": \"ECU\",\n        \"adm0_a3_id\": \"ECU\",\n        \"adm0_a3_pl\": \"ECU\",\n        \"adm0_a3_gr\": \"ECU\",\n        \"adm0_a3_it\": \"ECU\",\n        \"adm0_a3_nl\": \"ECU\",\n        \"adm0_a3_se\": \"ECU\",\n        \"adm0_a3_bd\": \"ECU\",\n        \"adm0_a3_ua\": \"ECU\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"South America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"South America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": -78.188375,\n        \"label_y\": -1.259076,\n        \"ne_id\": 1159320567,\n        \"wikidataid\": \"Q736\",\n        \"name_ar\": \"الإكوادور\",\n        \"name_bn\": \"ইকুয়েডর\",\n        \"name_de\": \"Ecuador\",\n        \"name_en\": \"Ecuador\",\n        \"name_es\": \"Ecuador\",\n        \"name_fa\": \"اکوادور\",\n        \"name_fr\": \"Équateur\",\n        \"name_el\": \"Εκουαδόρ\",\n        \"name_he\": \"אקוודור\",\n        \"name_hi\": \"ईक्वाडोर\",\n        \"name_hu\": \"Ecuador\",\n        \"name_id\": \"Ekuador\",\n        \"name_it\": \"Ecuador\",\n        \"name_ja\": \"エクアドル\",\n        \"name_ko\": \"에콰도르\",\n        \"name_nl\": \"Ecuador\",\n        \"name_pl\": \"Ekwador\",\n        \"name_pt\": \"Equador\",\n        \"name_ru\": \"Эквадор\",\n        \"name_sv\": \"Ecuador\",\n        \"name_tr\": \"Ekvador\",\n        \"name_uk\": \"Еквадор\",\n        \"name_ur\": \"ایکواڈور\",\n        \"name_vi\": \"Ecuador\",\n        \"name_zh\": \"厄瓜多尔\",\n        \"name_zht\": \"厄瓜多爾\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"ECU.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-75.37322323271385, -0.15203175212045],\n            [-75.23372270374195, -0.911416924649529],\n            [-75.54499569365204, -1.56160979574588],\n            [-76.63539425322672, -2.608677666843818],\n            [-77.83790483265861, -3.003020521663103],\n            [-78.45068396677564, -3.873096612161376],\n            [-78.63989722361234, -4.547784112164074],\n            [-79.20528906931773, -4.959128513207389],\n            [-79.62497921417618, -4.454198093283495],\n            [-80.02890804718561, -4.346090996928893],\n            [-80.44224199087216, -4.425724379090674],\n            [-80.46929460317695, -4.059286797708999],\n            [-80.18401485870967, -3.821161797708044],\n            [-80.30256059438722, -3.404856459164713],\n            [-79.77029334178093, -2.65751189535964],\n            [-79.98655921092242, -2.220794366061014],\n            [-80.36878394236925, -2.685158786635788],\n            [-80.96776546906436, -2.246942640800704],\n            [-80.76480628123804, -1.965047702648533],\n            [-80.93365902375172, -1.057454522306358],\n            [-80.58337032746127, -0.906662692878683],\n            [-80.39932471385376, -0.283703301600141],\n            [-80.02089820018037, 0.360340074053468],\n            [-80.09060970734211, 0.768428859862397],\n            [-79.5427620103998, 0.982937730305963],\n            [-78.85525875518871, 1.380923773601822],\n            [-77.85506140817952, 0.809925034992773],\n            [-77.66861284047044, 0.825893052570962],\n            [-77.4249843004304, 0.395686753741117],\n            [-76.5763797675494, 0.256935533037435],\n            [-76.29231441924097, 0.416047268064119],\n            [-75.8014658271166, 0.084801337073202],\n            [-75.37322323271385, -0.15203175212045]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Colombia\",\n        \"sov_a3\": \"COL\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Colombia\",\n        \"adm0_a3\": \"COL\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Colombia\",\n        \"gu_a3\": \"COL\",\n        \"su_dif\": 0,\n        \"subunit\": \"Colombia\",\n        \"su_a3\": \"COL\",\n        \"brk_diff\": 0,\n        \"name\": \"Colombia\",\n        \"name_long\": \"Colombia\",\n        \"brk_a3\": \"COL\",\n        \"brk_name\": \"Colombia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Col.\",\n        \"postal\": \"CO\",\n        \"formal_en\": \"Republic of Colombia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Colombia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Colombia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 1,\n        \"pop_est\": 50339443,\n        \"pop_rank\": 16,\n        \"pop_year\": 2019,\n        \"gdp_md\": 323615,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"CO\",\n        \"iso_a2\": \"CO\",\n        \"iso_a2_eh\": \"CO\",\n        \"iso_a3\": \"COL\",\n        \"iso_a3_eh\": \"COL\",\n        \"iso_n3\": \"170\",\n        \"iso_n3_eh\": \"170\",\n        \"un_a3\": \"170\",\n        \"wb_a2\": \"CO\",\n        \"wb_a3\": \"COL\",\n        \"woe_id\": 23424787,\n        \"woe_id_eh\": 23424787,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"COL\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"COL\",\n        \"adm0_a3_us\": \"COL\",\n        \"adm0_a3_fr\": \"COL\",\n        \"adm0_a3_ru\": \"COL\",\n        \"adm0_a3_es\": \"COL\",\n        \"adm0_a3_cn\": \"COL\",\n        \"adm0_a3_tw\": \"COL\",\n        \"adm0_a3_in\": \"COL\",\n        \"adm0_a3_np\": \"COL\",\n        \"adm0_a3_pk\": \"COL\",\n        \"adm0_a3_de\": \"COL\",\n        \"adm0_a3_gb\": \"COL\",\n        \"adm0_a3_br\": \"COL\",\n        \"adm0_a3_il\": \"COL\",\n        \"adm0_a3_ps\": \"COL\",\n        \"adm0_a3_sa\": \"COL\",\n        \"adm0_a3_eg\": \"COL\",\n        \"adm0_a3_ma\": \"COL\",\n        \"adm0_a3_pt\": \"COL\",\n        \"adm0_a3_ar\": \"COL\",\n        \"adm0_a3_jp\": \"COL\",\n        \"adm0_a3_ko\": \"COL\",\n        \"adm0_a3_vn\": \"COL\",\n        \"adm0_a3_tr\": \"COL\",\n        \"adm0_a3_id\": \"COL\",\n        \"adm0_a3_pl\": \"COL\",\n        \"adm0_a3_gr\": \"COL\",\n        \"adm0_a3_it\": \"COL\",\n        \"adm0_a3_nl\": \"COL\",\n        \"adm0_a3_se\": \"COL\",\n        \"adm0_a3_bd\": \"COL\",\n        \"adm0_a3_ua\": \"COL\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"South America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"South America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 7,\n        \"label_x\": -73.174347,\n        \"label_y\": 3.373111,\n        \"ne_id\": 1159320517,\n        \"wikidataid\": \"Q739\",\n        \"name_ar\": \"كولومبيا\",\n        \"name_bn\": \"কলম্বিয়া\",\n        \"name_de\": \"Kolumbien\",\n        \"name_en\": \"Colombia\",\n        \"name_es\": \"Colombia\",\n        \"name_fa\": \"کلمبیا\",\n        \"name_fr\": \"Colombie\",\n        \"name_el\": \"Κολομβία\",\n        \"name_he\": \"קולומביה\",\n        \"name_hi\": \"कोलम्बिया\",\n        \"name_hu\": \"Kolumbia\",\n        \"name_id\": \"Kolombia\",\n        \"name_it\": \"Colombia\",\n        \"name_ja\": \"コロンビア\",\n        \"name_ko\": \"콜롬비아\",\n        \"name_nl\": \"Colombia\",\n        \"name_pl\": \"Kolumbia\",\n        \"name_pt\": \"Colômbia\",\n        \"name_ru\": \"Колумбия\",\n        \"name_sv\": \"Colombia\",\n        \"name_tr\": \"Kolombiya\",\n        \"name_uk\": \"Колумбія\",\n        \"name_ur\": \"کولمبیا\",\n        \"name_vi\": \"Colombia\",\n        \"name_zh\": \"哥伦比亚\",\n        \"name_zht\": \"哥倫比亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"COL.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-66.87632585312258, 1.253360500489336],\n            [-67.0650481838525, 1.130112209473225],\n            [-67.2599975246736, 1.719998684084956],\n            [-67.5378100246747, 2.03716278727633],\n            [-67.86856502955884, 1.692455145673392],\n            [-69.81697323269162, 1.714805202639624],\n            [-69.80459672715773, 1.089081122233466],\n            [-69.21863766140018, 0.985676581217433],\n            [-69.25243404811906, 0.602650865070075],\n            [-69.45239600287246, 0.706158758950693],\n            [-70.01556576198931, 0.541414292804205],\n            [-70.02065589057005, -0.185156345219539],\n            [-69.5770653957766, -0.549991957200163],\n            [-69.42048580593223, -1.122618503426409],\n            [-69.44410193548961, -1.556287123219818],\n            [-69.89363521999663, -4.298186944194327],\n            [-70.39404395209499, -3.766591485207825],\n            [-70.69268205430971, -3.742872002785859],\n            [-70.04770850287485, -2.725156345229699],\n            [-70.81347571479196, -2.256864515800743],\n            [-71.41364579942979, -2.342802422702128],\n            [-71.7747607082854, -2.169789727388938],\n            [-72.32578650581365, -2.434218031426454],\n            [-73.07039221870724, -2.308954359550953],\n            [-73.6595035468346, -1.260491224781134],\n            [-74.12239518908906, -1.002832533373848],\n            [-74.44160051135597, -0.530820000819887],\n            [-75.10662451852008, -0.05720549886486],\n            [-75.37322323271385, -0.15203175212045],\n            [-75.8014658271166, 0.084801337073202],\n            [-76.29231441924097, 0.416047268064119],\n            [-76.5763797675494, 0.256935533037435],\n            [-77.4249843004304, 0.395686753741117],\n            [-77.66861284047044, 0.825893052570962],\n            [-77.85506140817952, 0.809925034992773],\n            [-78.85525875518871, 1.380923773601822],\n            [-78.99093522817104, 1.691369940595251],\n            [-78.61783138702371, 1.766404120283056],\n            [-78.66211808949785, 2.267355454920477],\n            [-78.42761043975733, 2.629555568854215],\n            [-77.93154252797149, 2.696605739752926],\n            [-77.51043128122501, 3.325016994638247],\n            [-77.12768978545526, 3.849636135265357],\n            [-77.49627193877703, 4.087606105969428],\n            [-77.3076012844794, 4.667984117039452],\n            [-77.53322058786573, 5.582811997902497],\n            [-77.31881507028675, 5.84535411216136],\n            [-77.47666073272228, 6.691116441266303],\n            [-77.88157141794525, 7.223771267114785],\n            [-77.7534138658614, 7.709839789252143],\n            [-77.43110795765699, 7.638061224798734],\n            [-77.24256649444008, 7.935278225125444],\n            [-77.47472286651133, 8.524286200388218],\n            [-77.35336076527386, 8.67050466555807],\n            [-76.83667395700357, 8.638749497914716],\n            [-76.08638383655786, 9.336820583529487],\n            [-75.67460018584006, 9.443248195834599],\n            [-75.66470414905618, 9.774003200718738],\n            [-75.48042599150335, 10.618990383339309],\n            [-74.90689510771199, 11.083044745320322],\n            [-74.27675269234489, 11.102035834187587],\n            [-74.1972226630477, 11.310472723836867],\n            [-73.41476396350029, 11.22701528568548],\n            [-72.62783525255963, 11.731971543825523],\n            [-72.23819495307892, 11.955549628136326],\n            [-71.75409013536864, 12.437303168177309],\n            [-71.3998223537917, 12.376040757695293],\n            [-71.13746110704588, 12.112981879113505],\n            [-71.3315836249503, 11.776284084515808],\n            [-71.97392167833829, 11.60867157637712],\n            [-72.22757544624294, 11.10870209395324],\n            [-72.61465776232521, 10.821975409381778],\n            [-72.9052860175347, 10.450344346554772],\n            [-73.02760413276957, 9.736770331252444],\n            [-73.30495154488005, 9.151999823437606],\n            [-72.7887298245004, 9.085027167187334],\n            [-72.6604947577681, 8.625287787302682],\n            [-72.43986223009796, 8.405275376820029],\n            [-72.36090064155597, 8.002638454617895],\n            [-72.47967892117885, 7.632506008327354],\n            [-72.44448727078807, 7.423784898300482],\n            [-72.19835242378188, 7.340430813013683],\n            [-71.96017574734864, 6.991614895043539],\n            [-70.67423356798152, 7.087784735538719],\n            [-70.09331295437242, 6.96037649172311],\n            [-69.38947994655712, 6.099860541198836],\n            [-68.98531856960236, 6.206804917826858],\n            [-68.26505245631823, 6.153268133972475],\n            [-67.69508724635502, 6.267318020040647],\n            [-67.34143958196557, 6.095468044454023],\n            [-67.52153194850275, 5.556870428891969],\n            [-67.74469662135522, 5.221128648291668],\n            [-67.82301225449355, 4.503937282728899],\n            [-67.62183590358129, 3.839481716319995],\n            [-67.33756384954368, 3.542342230641722],\n            [-67.30317318385345, 3.31845408773718],\n            [-67.8099381171237, 2.820655015469569],\n            [-67.44709204778631, 2.600280869960869],\n            [-67.18129431829307, 2.250638129074062],\n            [-66.87632585312258, 1.253360500489336]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Paraguay\",\n        \"sov_a3\": \"PRY\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Paraguay\",\n        \"adm0_a3\": \"PRY\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Paraguay\",\n        \"gu_a3\": \"PRY\",\n        \"su_dif\": 0,\n        \"subunit\": \"Paraguay\",\n        \"su_a3\": \"PRY\",\n        \"brk_diff\": 0,\n        \"name\": \"Paraguay\",\n        \"name_long\": \"Paraguay\",\n        \"brk_a3\": \"PRY\",\n        \"brk_name\": \"Paraguay\",\n        \"brk_group\": null,\n        \"abbrev\": \"Para.\",\n        \"postal\": \"PY\",\n        \"formal_en\": \"Republic of Paraguay\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Paraguay\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Paraguay\",\n        \"name_alt\": null,\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 6,\n        \"mapcolor13\": 2,\n        \"pop_est\": 7044636,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 38145,\n        \"gdp_year\": 2019,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"PA\",\n        \"iso_a2\": \"PY\",\n        \"iso_a2_eh\": \"PY\",\n        \"iso_a3\": \"PRY\",\n        \"iso_a3_eh\": \"PRY\",\n        \"iso_n3\": \"600\",\n        \"iso_n3_eh\": \"600\",\n        \"un_a3\": \"600\",\n        \"wb_a2\": \"PY\",\n        \"wb_a3\": \"PRY\",\n        \"woe_id\": 23424917,\n        \"woe_id_eh\": 23424917,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"PRY\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"PRY\",\n        \"adm0_a3_us\": \"PRY\",\n        \"adm0_a3_fr\": \"PRY\",\n        \"adm0_a3_ru\": \"PRY\",\n        \"adm0_a3_es\": \"PRY\",\n        \"adm0_a3_cn\": \"PRY\",\n        \"adm0_a3_tw\": \"PRY\",\n        \"adm0_a3_in\": \"PRY\",\n        \"adm0_a3_np\": \"PRY\",\n        \"adm0_a3_pk\": \"PRY\",\n        \"adm0_a3_de\": \"PRY\",\n        \"adm0_a3_gb\": \"PRY\",\n        \"adm0_a3_br\": \"PRY\",\n        \"adm0_a3_il\": \"PRY\",\n        \"adm0_a3_ps\": \"PRY\",\n        \"adm0_a3_sa\": \"PRY\",\n        \"adm0_a3_eg\": \"PRY\",\n        \"adm0_a3_ma\": \"PRY\",\n        \"adm0_a3_pt\": \"PRY\",\n        \"adm0_a3_ar\": \"PRY\",\n        \"adm0_a3_jp\": \"PRY\",\n        \"adm0_a3_ko\": \"PRY\",\n        \"adm0_a3_vn\": \"PRY\",\n        \"adm0_a3_tr\": \"PRY\",\n        \"adm0_a3_id\": \"PRY\",\n        \"adm0_a3_pl\": \"PRY\",\n        \"adm0_a3_gr\": \"PRY\",\n        \"adm0_a3_it\": \"PRY\",\n        \"adm0_a3_nl\": \"PRY\",\n        \"adm0_a3_se\": \"PRY\",\n        \"adm0_a3_bd\": \"PRY\",\n        \"adm0_a3_ua\": \"PRY\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"South America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"South America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": -60.146394,\n        \"label_y\": -21.674509,\n        \"ne_id\": 1159321195,\n        \"wikidataid\": \"Q733\",\n        \"name_ar\": \"باراغواي\",\n        \"name_bn\": \"প্যারাগুয়ে\",\n        \"name_de\": \"Paraguay\",\n        \"name_en\": \"Paraguay\",\n        \"name_es\": \"Paraguay\",\n        \"name_fa\": \"پاراگوئه\",\n        \"name_fr\": \"Paraguay\",\n        \"name_el\": \"Παραγουάη\",\n        \"name_he\": \"פרגוואי\",\n        \"name_hi\": \"पैराग्वे\",\n        \"name_hu\": \"Paraguay\",\n        \"name_id\": \"Paraguay\",\n        \"name_it\": \"Paraguay\",\n        \"name_ja\": \"パラグアイ\",\n        \"name_ko\": \"파라과이\",\n        \"name_nl\": \"Paraguay\",\n        \"name_pl\": \"Paragwaj\",\n        \"name_pt\": \"Paraguai\",\n        \"name_ru\": \"Парагвай\",\n        \"name_sv\": \"Paraguay\",\n        \"name_tr\": \"Paraguay\",\n        \"name_uk\": \"Парагвай\",\n        \"name_ur\": \"پیراگوئے\",\n        \"name_vi\": \"Paraguay\",\n        \"name_zh\": \"巴拉圭\",\n        \"name_zht\": \"巴拉圭\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"PRY.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-58.166392381408045, -20.176700941653678],\n            [-57.8706739976178, -20.73268767668195],\n            [-57.937155727761294, -22.090175876557172],\n            [-56.8815095689029, -22.28215382252148],\n            [-56.47331743022939, -22.086300144135283],\n            [-55.79795813660691, -22.356929620047822],\n            [-55.610682745981144, -22.655619398694846],\n            [-55.517639329639636, -23.571997572526637],\n            [-55.40074723979542, -23.956935316668805],\n            [-55.02790178080955, -24.00127369557523],\n            [-54.65283423523513, -23.83957813893396],\n            [-54.29295956075452, -24.02101409271073],\n            [-54.29347632507745, -24.570799655863965],\n            [-54.42894609233059, -25.162184747012166],\n            [-54.625290696823576, -25.739255466415514],\n            [-54.78879492859505, -26.621785577096134],\n            [-55.69584550639816, -27.387837009390864],\n            [-56.486701626192996, -27.548499037386293],\n            [-57.60975969097614, -27.395898532828387],\n            [-58.61817359071975, -27.123718763947096],\n            [-57.63366004091113, -25.60365650808164],\n            [-57.77721716981794, -25.16233977630904],\n            [-58.80712846539498, -24.77145924245331],\n            [-60.02896603050403, -24.032796319273274],\n            [-60.846564704009914, -23.880712579038292],\n            [-62.685057135657885, -22.249029229422387],\n            [-62.291179368729225, -21.051634616787393],\n            [-62.2659612697708, -20.513734633061276],\n            [-61.78632646345377, -19.633736667562964],\n            [-60.04356462262649, -19.342746677327426],\n            [-59.11504248720611, -19.3569060197754],\n            [-58.183471442280506, -19.868399346600363],\n            [-58.166392381408045, -20.176700941653678]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Venezuela\",\n        \"sov_a3\": \"VEN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Venezuela\",\n        \"adm0_a3\": \"VEN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Venezuela\",\n        \"gu_a3\": \"VEN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Venezuela\",\n        \"su_a3\": \"VEN\",\n        \"brk_diff\": 0,\n        \"name\": \"Venezuela\",\n        \"name_long\": \"Venezuela\",\n        \"brk_a3\": \"VEN\",\n        \"brk_name\": \"Venezuela\",\n        \"brk_group\": null,\n        \"abbrev\": \"Ven.\",\n        \"postal\": \"VE\",\n        \"formal_en\": \"Bolivarian Republic of Venezuela\",\n        \"formal_fr\": \"República Bolivariana de Venezuela\",\n        \"name_ciawf\": \"Venezuela\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Venezuela, RB\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 4,\n        \"pop_est\": 28515829,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 482359,\n        \"gdp_year\": 2014,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"VE\",\n        \"iso_a2\": \"VE\",\n        \"iso_a2_eh\": \"VE\",\n        \"iso_a3\": \"VEN\",\n        \"iso_a3_eh\": \"VEN\",\n        \"iso_n3\": \"862\",\n        \"iso_n3_eh\": \"862\",\n        \"un_a3\": \"862\",\n        \"wb_a2\": \"VE\",\n        \"wb_a3\": \"VEN\",\n        \"woe_id\": 23424982,\n        \"woe_id_eh\": 23424982,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"VEN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"VEN\",\n        \"adm0_a3_us\": \"VEN\",\n        \"adm0_a3_fr\": \"VEN\",\n        \"adm0_a3_ru\": \"VEN\",\n        \"adm0_a3_es\": \"VEN\",\n        \"adm0_a3_cn\": \"VEN\",\n        \"adm0_a3_tw\": \"VEN\",\n        \"adm0_a3_in\": \"VEN\",\n        \"adm0_a3_np\": \"VEN\",\n        \"adm0_a3_pk\": \"VEN\",\n        \"adm0_a3_de\": \"VEN\",\n        \"adm0_a3_gb\": \"VEN\",\n        \"adm0_a3_br\": \"VEN\",\n        \"adm0_a3_il\": \"VEN\",\n        \"adm0_a3_ps\": \"VEN\",\n        \"adm0_a3_sa\": \"VEN\",\n        \"adm0_a3_eg\": \"VEN\",\n        \"adm0_a3_ma\": \"VEN\",\n        \"adm0_a3_pt\": \"VEN\",\n        \"adm0_a3_ar\": \"VEN\",\n        \"adm0_a3_jp\": \"VEN\",\n        \"adm0_a3_ko\": \"VEN\",\n        \"adm0_a3_vn\": \"VEN\",\n        \"adm0_a3_tr\": \"VEN\",\n        \"adm0_a3_id\": \"VEN\",\n        \"adm0_a3_pl\": \"VEN\",\n        \"adm0_a3_gr\": \"VEN\",\n        \"adm0_a3_it\": \"VEN\",\n        \"adm0_a3_nl\": \"VEN\",\n        \"adm0_a3_se\": \"VEN\",\n        \"adm0_a3_bd\": \"VEN\",\n        \"adm0_a3_ua\": \"VEN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"South America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"South America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 9,\n        \"long_len\": 9,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.5,\n        \"max_label\": 7.5,\n        \"label_x\": -64.599381,\n        \"label_y\": 7.182476,\n        \"ne_id\": 1159321411,\n        \"wikidataid\": \"Q717\",\n        \"name_ar\": \"فنزويلا\",\n        \"name_bn\": \"ভেনেজুয়েলা\",\n        \"name_de\": \"Venezuela\",\n        \"name_en\": \"Venezuela\",\n        \"name_es\": \"Venezuela\",\n        \"name_fa\": \"ونزوئلا\",\n        \"name_fr\": \"Venezuela\",\n        \"name_el\": \"Βενεζουέλα\",\n        \"name_he\": \"ונצואלה\",\n        \"name_hi\": \"वेनेज़ुएला\",\n        \"name_hu\": \"Venezuela\",\n        \"name_id\": \"Venezuela\",\n        \"name_it\": \"Venezuela\",\n        \"name_ja\": \"ベネズエラ\",\n        \"name_ko\": \"베네수엘라\",\n        \"name_nl\": \"Venezuela\",\n        \"name_pl\": \"Wenezuela\",\n        \"name_pt\": \"Venezuela\",\n        \"name_ru\": \"Венесуэла\",\n        \"name_sv\": \"Venezuela\",\n        \"name_tr\": \"Venezuela\",\n        \"name_uk\": \"Венесуела\",\n        \"name_ur\": \"وینیزویلا\",\n        \"name_vi\": \"Venezuela\",\n        \"name_zh\": \"委内瑞拉\",\n        \"name_zht\": \"委內瑞拉\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"VEN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-60.73357418480372, 5.200277207861901],\n            [-60.601179165271944, 4.91809804933213],\n            [-60.96689327660154, 4.536467596856639],\n            [-62.08542965355913, 4.162123521334308],\n            [-62.804533047116706, 4.006965033377952],\n            [-63.093197597899106, 3.770571193858785],\n            [-63.88834286157416, 4.020530096854571],\n            [-64.62865943058755, 4.14848094320925],\n            [-64.81606401229402, 4.056445217297423],\n            [-64.3684944322141, 3.797210394705246],\n            [-64.40882788761792, 3.126786200366624],\n            [-64.2699991522658, 2.497005520025567],\n            [-63.42286739770512, 2.411067613124175],\n            [-63.368788011311665, 2.200899562993129],\n            [-64.08308549666609, 1.91636912679408],\n            [-64.19930579289051, 1.49285492594602],\n            [-64.61101192895987, 1.328730576987042],\n            [-65.35471330428837, 1.0952822941085],\n            [-65.54826738143757, 0.78925446207603],\n            [-66.32576514348496, 0.724452215982012],\n            [-66.87632585312258, 1.253360500489336],\n            [-67.18129431829307, 2.250638129074062],\n            [-67.44709204778631, 2.600280869960869],\n            [-67.8099381171237, 2.820655015469569],\n            [-67.30317318385345, 3.31845408773718],\n            [-67.33756384954368, 3.542342230641722],\n            [-67.62183590358129, 3.839481716319995],\n            [-67.82301225449355, 4.503937282728899],\n            [-67.74469662135522, 5.221128648291668],\n            [-67.52153194850275, 5.556870428891969],\n            [-67.34143958196557, 6.095468044454023],\n            [-67.69508724635502, 6.267318020040647],\n            [-68.26505245631823, 6.153268133972475],\n            [-68.98531856960236, 6.206804917826858],\n            [-69.38947994655712, 6.099860541198836],\n            [-70.09331295437242, 6.96037649172311],\n            [-70.67423356798152, 7.087784735538719],\n            [-71.96017574734864, 6.991614895043539],\n            [-72.19835242378188, 7.340430813013683],\n            [-72.44448727078807, 7.423784898300482],\n            [-72.47967892117885, 7.632506008327354],\n            [-72.36090064155597, 8.002638454617895],\n            [-72.43986223009796, 8.405275376820029],\n            [-72.6604947577681, 8.625287787302682],\n            [-72.7887298245004, 9.085027167187334],\n            [-73.30495154488005, 9.151999823437606],\n            [-73.02760413276957, 9.736770331252444],\n            [-72.9052860175347, 10.450344346554772],\n            [-72.61465776232521, 10.821975409381778],\n            [-72.22757544624294, 11.10870209395324],\n            [-71.97392167833829, 11.60867157637712],\n            [-71.3315836249503, 11.776284084515808],\n            [-71.36000566271082, 11.539993597861212],\n            [-71.94704993354651, 11.423282375530022],\n            [-71.62086829292019, 10.969459947142795],\n            [-71.63306393094109, 10.446494452349029],\n            [-72.07417395698451, 9.865651353388373],\n            [-71.69564409044654, 9.072263088411248],\n            [-71.26455929226773, 9.137194525585983],\n            [-71.03999935574339, 9.859992784052409],\n            [-71.35008378771079, 10.211935126176215],\n            [-71.40062333849224, 10.968969021036015],\n            [-70.15529883490652, 11.37548167566004],\n            [-70.29384334988103, 11.846822414594214],\n            [-69.94324459499683, 12.162307033736099],\n            [-69.58430009629747, 11.459610907431212],\n            [-68.88299923366445, 11.443384507691563],\n            [-68.23327145045873, 10.885744126829946],\n            [-68.19412655299763, 10.554653225135922],\n            [-67.29624854192633, 10.54586823164631],\n            [-66.227864142508, 10.648626817258688],\n            [-65.65523759628175, 10.200798855017323],\n            [-64.89045223657817, 10.0772146671913],\n            [-64.32947872583374, 10.38959870039568],\n            [-64.31800655786495, 10.64141795495398],\n            [-63.07932247582873, 10.7017243514386],\n            [-61.880946010980196, 10.715625311725104],\n            [-62.73011898461641, 10.420268662960906],\n            [-62.388511928950976, 9.94820445397464],\n            [-61.58876746280194, 9.873066921422264],\n            [-60.83059668643172, 9.381339829948942],\n            [-60.67125240745973, 8.580174261911878],\n            [-60.15009558779618, 8.602756862823426],\n            [-59.758284878159195, 8.367034816924047],\n            [-60.5505879380582, 7.779602972846178],\n            [-60.637972785063766, 7.414999904810855],\n            [-60.2956680975624, 7.043911444522919],\n            [-60.54399919294099, 6.856584377464883],\n            [-61.15933631045648, 6.696077378766319],\n            [-61.13941504580795, 6.234296779806144],\n            [-61.410302903881956, 5.959068101419618],\n            [-60.73357418480372, 5.200277207861901]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"United Kingdom\",\n        \"sov_a3\": \"GB1\",\n        \"adm0_dif\": 1,\n        \"level\": 2,\n        \"type\": \"Disputed\",\n        \"tlc\": \"1\",\n        \"admin\": \"Falkland Islands\",\n        \"adm0_a3\": \"FLK\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Falkland Islands\",\n        \"gu_a3\": \"FLK\",\n        \"su_dif\": 0,\n        \"subunit\": \"Falkland Islands\",\n        \"su_a3\": \"FLK\",\n        \"brk_diff\": 1,\n        \"name\": \"Falkland Is.\",\n        \"name_long\": \"Falkland Islands / Malvinas\",\n        \"brk_a3\": \"B12\",\n        \"brk_name\": \"Falkland Is.\",\n        \"brk_group\": null,\n        \"abbrev\": \"Flk. Is.\",\n        \"postal\": \"FK\",\n        \"formal_en\": \"Falkland Islands\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Falkland Islands (Islas Malvinas)\",\n        \"note_adm0\": \"U.K.\",\n        \"note_brk\": \"Admin. by U.K.; Claimed by Argentina\",\n        \"name_sort\": \"Falkland Islands\",\n        \"name_alt\": \"Islas Malvinas\",\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 6,\n        \"mapcolor13\": 3,\n        \"pop_est\": 3398,\n        \"pop_rank\": 4,\n        \"pop_year\": 2016,\n        \"gdp_md\": 282,\n        \"gdp_year\": 2012,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"FK\",\n        \"iso_a2\": \"FK\",\n        \"iso_a2_eh\": \"FK\",\n        \"iso_a3\": \"FLK\",\n        \"iso_a3_eh\": \"FLK\",\n        \"iso_n3\": \"238\",\n        \"iso_n3_eh\": \"238\",\n        \"un_a3\": \"238\",\n        \"wb_a2\": \"-99\",\n        \"wb_a3\": \"-99\",\n        \"woe_id\": 23424814,\n        \"woe_id_eh\": 23424814,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"B12\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"B12\",\n        \"adm0_a3_us\": \"FLK\",\n        \"adm0_a3_fr\": \"FLK\",\n        \"adm0_a3_ru\": \"FLK\",\n        \"adm0_a3_es\": \"FLK\",\n        \"adm0_a3_cn\": \"FLK\",\n        \"adm0_a3_tw\": \"FLK\",\n        \"adm0_a3_in\": \"FLK\",\n        \"adm0_a3_np\": \"FLK\",\n        \"adm0_a3_pk\": \"FLK\",\n        \"adm0_a3_de\": \"FLK\",\n        \"adm0_a3_gb\": \"FLK\",\n        \"adm0_a3_br\": \"FLK\",\n        \"adm0_a3_il\": \"FLK\",\n        \"adm0_a3_ps\": \"FLK\",\n        \"adm0_a3_sa\": \"FLK\",\n        \"adm0_a3_eg\": \"FLK\",\n        \"adm0_a3_ma\": \"FLK\",\n        \"adm0_a3_pt\": \"FLK\",\n        \"adm0_a3_ar\": \"ARG\",\n        \"adm0_a3_jp\": \"FLK\",\n        \"adm0_a3_ko\": \"FLK\",\n        \"adm0_a3_vn\": \"FLK\",\n        \"adm0_a3_tr\": \"FLK\",\n        \"adm0_a3_id\": \"FLK\",\n        \"adm0_a3_pl\": \"FLK\",\n        \"adm0_a3_gr\": \"FLK\",\n        \"adm0_a3_it\": \"FLK\",\n        \"adm0_a3_nl\": \"FLK\",\n        \"adm0_a3_se\": \"FLK\",\n        \"adm0_a3_bd\": \"FLK\",\n        \"adm0_a3_ua\": \"FLK\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"South America\",\n        \"region_un\": \"Americas\",\n        \"subregion\": \"South America\",\n        \"region_wb\": \"Latin America & Caribbean\",\n        \"name_len\": 12,\n        \"long_len\": 27,\n        \"abbrev_len\": 8,\n        \"tiny\": -99,\n        \"homepart\": -99,\n        \"min_zoom\": 0,\n        \"min_label\": 4.5,\n        \"max_label\": 9,\n        \"label_x\": -58.738602,\n        \"label_y\": -51.608913,\n        \"ne_id\": 1159320711,\n        \"wikidataid\": \"Q9648\",\n        \"name_ar\": \"جزر فوكلاند\",\n        \"name_bn\": \"ফকল্যান্ড দ্বীপপুঞ্জ\",\n        \"name_de\": \"Falklandinseln\",\n        \"name_en\": \"Falkland Islands\",\n        \"name_es\": \"Islas Malvinas\",\n        \"name_fa\": \"جزایر فالکلند\",\n        \"name_fr\": \"îles Malouines\",\n        \"name_el\": \"Νήσοι Φώκλαντ\",\n        \"name_he\": \"איי פוקלנד\",\n        \"name_hi\": \"फ़ॉकलैंड द्वीपसमूह\",\n        \"name_hu\": \"Falkland-szigetek\",\n        \"name_id\": \"Kepulauan Falkland\",\n        \"name_it\": \"Isole Falkland\",\n        \"name_ja\": \"フォークランド諸島\",\n        \"name_ko\": \"포클랜드 제도\",\n        \"name_nl\": \"Falklandeilanden\",\n        \"name_pl\": \"Falklandy\",\n        \"name_pt\": \"Ilhas Malvinas\",\n        \"name_ru\": \"Фолклендские острова\",\n        \"name_sv\": \"Falklandsöarna\",\n        \"name_tr\": \"Falkland Adaları\",\n        \"name_uk\": \"Фолклендські острови\",\n        \"name_ur\": \"جزائر فاکلینڈ\",\n        \"name_vi\": \"Quần đảo Falkland\",\n        \"name_zh\": \"福克兰群岛\",\n        \"name_zht\": \"福克蘭群島\",\n        \"fclass_iso\": \"Admin-0 dependency\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 dependency\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": \"Unrecognized\",\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"FLK.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-61.2, -51.85],\n            [-60, -51.25],\n            [-59.15, -51.5],\n            [-58.55, -51.1],\n            [-57.75, -51.55],\n            [-58.05, -51.9],\n            [-59.4, -52.2],\n            [-59.85, -51.85],\n            [-60.7, -52.3],\n            [-61.2, -51.85]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Ethiopia\",\n        \"sov_a3\": \"ETH\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Ethiopia\",\n        \"adm0_a3\": \"ETH\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Ethiopia\",\n        \"gu_a3\": \"ETH\",\n        \"su_dif\": 0,\n        \"subunit\": \"Ethiopia\",\n        \"su_a3\": \"ETH\",\n        \"brk_diff\": 0,\n        \"name\": \"Ethiopia\",\n        \"name_long\": \"Ethiopia\",\n        \"brk_a3\": \"ETH\",\n        \"brk_name\": \"Ethiopia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Eth.\",\n        \"postal\": \"ET\",\n        \"formal_en\": \"Federal Democratic Republic of Ethiopia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Ethiopia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Ethiopia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 13,\n        \"pop_est\": 112078730,\n        \"pop_rank\": 17,\n        \"pop_year\": 2019,\n        \"gdp_md\": 95912,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"ET\",\n        \"iso_a2\": \"ET\",\n        \"iso_a2_eh\": \"ET\",\n        \"iso_a3\": \"ETH\",\n        \"iso_a3_eh\": \"ETH\",\n        \"iso_n3\": \"231\",\n        \"iso_n3_eh\": \"231\",\n        \"un_a3\": \"231\",\n        \"wb_a2\": \"ET\",\n        \"wb_a3\": \"ETH\",\n        \"woe_id\": 23424808,\n        \"woe_id_eh\": 23424808,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"ETH\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"ETH\",\n        \"adm0_a3_us\": \"ETH\",\n        \"adm0_a3_fr\": \"ETH\",\n        \"adm0_a3_ru\": \"ETH\",\n        \"adm0_a3_es\": \"ETH\",\n        \"adm0_a3_cn\": \"ETH\",\n        \"adm0_a3_tw\": \"ETH\",\n        \"adm0_a3_in\": \"ETH\",\n        \"adm0_a3_np\": \"ETH\",\n        \"adm0_a3_pk\": \"ETH\",\n        \"adm0_a3_de\": \"ETH\",\n        \"adm0_a3_gb\": \"ETH\",\n        \"adm0_a3_br\": \"ETH\",\n        \"adm0_a3_il\": \"ETH\",\n        \"adm0_a3_ps\": \"ETH\",\n        \"adm0_a3_sa\": \"ETH\",\n        \"adm0_a3_eg\": \"ETH\",\n        \"adm0_a3_ma\": \"ETH\",\n        \"adm0_a3_pt\": \"ETH\",\n        \"adm0_a3_ar\": \"ETH\",\n        \"adm0_a3_jp\": \"ETH\",\n        \"adm0_a3_ko\": \"ETH\",\n        \"adm0_a3_vn\": \"ETH\",\n        \"adm0_a3_tr\": \"ETH\",\n        \"adm0_a3_id\": \"ETH\",\n        \"adm0_a3_pl\": \"ETH\",\n        \"adm0_a3_gr\": \"ETH\",\n        \"adm0_a3_it\": \"ETH\",\n        \"adm0_a3_nl\": \"ETH\",\n        \"adm0_a3_se\": \"ETH\",\n        \"adm0_a3_bd\": \"ETH\",\n        \"adm0_a3_ua\": \"ETH\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Eastern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2,\n        \"max_label\": 7,\n        \"label_x\": 39.0886,\n        \"label_y\": 8.032795,\n        \"ne_id\": 1159320617,\n        \"wikidataid\": \"Q115\",\n        \"name_ar\": \"إثيوبيا\",\n        \"name_bn\": \"ইথিওপিয়া\",\n        \"name_de\": \"Äthiopien\",\n        \"name_en\": \"Ethiopia\",\n        \"name_es\": \"Etiopía\",\n        \"name_fa\": \"اتیوپی\",\n        \"name_fr\": \"Éthiopie\",\n        \"name_el\": \"Αιθιοπία\",\n        \"name_he\": \"אתיופיה\",\n        \"name_hi\": \"इथियोपिया\",\n        \"name_hu\": \"Etiópia\",\n        \"name_id\": \"Ethiopia\",\n        \"name_it\": \"Etiopia\",\n        \"name_ja\": \"エチオピア\",\n        \"name_ko\": \"에티오피아\",\n        \"name_nl\": \"Ethiopië\",\n        \"name_pl\": \"Etiopia\",\n        \"name_pt\": \"Etiópia\",\n        \"name_ru\": \"Эфиопия\",\n        \"name_sv\": \"Etiopien\",\n        \"name_tr\": \"Etiyopya\",\n        \"name_uk\": \"Ефіопія\",\n        \"name_ur\": \"ایتھوپیا\",\n        \"name_vi\": \"Ethiopia\",\n        \"name_zh\": \"埃塞俄比亚\",\n        \"name_zht\": \"衣索比亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"ETH.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [47.78942, 8.003],\n            [44.9636, 5.00162],\n            [43.66087, 4.95755],\n            [42.76967, 4.25259],\n            [42.12861, 4.23413],\n            [41.85508309264397, 3.918911920483727],\n            [41.1718, 3.91909],\n            [40.76848, 4.25702],\n            [39.85494, 3.83879],\n            [39.55938425876585, 3.42206],\n            [38.89251, 3.50074],\n            [38.67114, 3.61607],\n            [38.43697, 3.58851],\n            [38.120915, 3.598605],\n            [36.85509323800812, 4.447864127672769],\n            [36.159078632855646, 4.447864127672769],\n            [35.817447662353516, 4.77696566346189],\n            [35.817447662353516, 5.338232082790797],\n            [35.29800711823298, 5.506],\n            [34.70702, 6.594220000000121],\n            [34.25032, 6.82607],\n            [34.0751, 7.22595],\n            [33.568290000000104, 7.71334],\n            [32.95418, 7.784970000000101],\n            [33.29480000000012, 8.35458],\n            [33.82550000000015, 8.37916],\n            [33.97498, 8.68456],\n            [33.96162, 9.58358],\n            [34.25745, 10.63009],\n            [34.73115000000013, 10.910170000000107],\n            [34.83163000000013, 11.318960000000118],\n            [35.26049, 12.08286],\n            [35.86363, 12.57828],\n            [36.27022, 13.563330000000121],\n            [36.42951, 14.42211],\n            [37.59377, 14.2131],\n            [37.90607000000011, 14.959430000000168],\n            [38.51295, 14.50547],\n            [39.0994, 14.74064],\n            [39.34061, 14.53155],\n            [40.02625000000012, 14.51959],\n            [40.8966, 14.118640000000141],\n            [41.1552, 13.77333],\n            [41.59856, 13.452090000000112],\n            [42.00975, 12.86582],\n            [42.35156000000012, 12.542230000000131],\n            [42.000000000000114, 12.100000000000136],\n            [41.66176000000013, 11.6312],\n            [41.73959000000019, 11.355110000000138],\n            [41.755570000000205, 11.050910000000101],\n            [42.31414000000012, 11.0342],\n            [42.55493000000013, 11.105110000000195],\n            [42.77685184100096, 10.92687856693442],\n            [42.55876, 10.57258000000013],\n            [42.92812, 10.021940000000143],\n            [43.29699000000011, 9.540480000000173],\n            [43.67875, 9.18358000000012],\n            [46.94834, 7.99688],\n            [47.78942, 8.003]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"South Sudan\",\n        \"sov_a3\": \"SDS\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"South Sudan\",\n        \"adm0_a3\": \"SDS\",\n        \"geou_dif\": 0,\n        \"geounit\": \"South Sudan\",\n        \"gu_a3\": \"SDS\",\n        \"su_dif\": 0,\n        \"subunit\": \"South Sudan\",\n        \"su_a3\": \"SDS\",\n        \"brk_diff\": 0,\n        \"name\": \"S. Sudan\",\n        \"name_long\": \"South Sudan\",\n        \"brk_a3\": \"SDS\",\n        \"brk_name\": \"S. Sudan\",\n        \"brk_group\": null,\n        \"abbrev\": \"S. Sud.\",\n        \"postal\": \"SS\",\n        \"formal_en\": \"Republic of South Sudan\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"South Sudan\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"South Sudan\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 5,\n        \"pop_est\": 11062113,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 11998,\n        \"gdp_year\": 2015,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"-99\",\n        \"iso_a2\": \"SS\",\n        \"iso_a2_eh\": \"SS\",\n        \"iso_a3\": \"SSD\",\n        \"iso_a3_eh\": \"SSD\",\n        \"iso_n3\": \"728\",\n        \"iso_n3_eh\": \"728\",\n        \"un_a3\": \"728\",\n        \"wb_a2\": \"SS\",\n        \"wb_a3\": \"SSD\",\n        \"woe_id\": -99,\n        \"woe_id_eh\": -99,\n        \"woe_note\": \"Includes states of 20069899, 20069897, 20069898, 20069901, 20069909, and 20069908 but maybe more?\",\n        \"adm0_iso\": \"SSD\",\n        \"adm0_diff\": \"1\",\n        \"adm0_tlc\": \"SDS\",\n        \"adm0_a3_us\": \"SDS\",\n        \"adm0_a3_fr\": \"SDS\",\n        \"adm0_a3_ru\": \"SDS\",\n        \"adm0_a3_es\": \"SDS\",\n        \"adm0_a3_cn\": \"SDS\",\n        \"adm0_a3_tw\": \"SDS\",\n        \"adm0_a3_in\": \"SDS\",\n        \"adm0_a3_np\": \"SDS\",\n        \"adm0_a3_pk\": \"SDS\",\n        \"adm0_a3_de\": \"SDS\",\n        \"adm0_a3_gb\": \"SDS\",\n        \"adm0_a3_br\": \"SDS\",\n        \"adm0_a3_il\": \"SDS\",\n        \"adm0_a3_ps\": \"SDS\",\n        \"adm0_a3_sa\": \"SDS\",\n        \"adm0_a3_eg\": \"SDS\",\n        \"adm0_a3_ma\": \"SDS\",\n        \"adm0_a3_pt\": \"SDS\",\n        \"adm0_a3_ar\": \"SDS\",\n        \"adm0_a3_jp\": \"SDS\",\n        \"adm0_a3_ko\": \"SDS\",\n        \"adm0_a3_vn\": \"SDS\",\n        \"adm0_a3_tr\": \"SDS\",\n        \"adm0_a3_id\": \"SDS\",\n        \"adm0_a3_pl\": \"SDS\",\n        \"adm0_a3_gr\": \"SDS\",\n        \"adm0_a3_it\": \"SDS\",\n        \"adm0_a3_nl\": \"SDS\",\n        \"adm0_a3_se\": \"SDS\",\n        \"adm0_a3_bd\": \"SDS\",\n        \"adm0_a3_ua\": \"SDS\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Eastern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 8,\n        \"long_len\": 11,\n        \"abbrev_len\": 7,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 30.390151,\n        \"label_y\": 7.230477,\n        \"ne_id\": 1159321235,\n        \"wikidataid\": \"Q958\",\n        \"name_ar\": \"جنوب السودان\",\n        \"name_bn\": \"দক্ষিণ সুদান\",\n        \"name_de\": \"Südsudan\",\n        \"name_en\": \"South Sudan\",\n        \"name_es\": \"Sudán del Sur\",\n        \"name_fa\": \"سودان جنوبی\",\n        \"name_fr\": \"Soudan du Sud\",\n        \"name_el\": \"Νότιο Σουδάν\",\n        \"name_he\": \"דרום סודאן\",\n        \"name_hi\": \"दक्षिण सूडान\",\n        \"name_hu\": \"Dél-Szudán\",\n        \"name_id\": \"Sudan Selatan\",\n        \"name_it\": \"Sudan del Sud\",\n        \"name_ja\": \"南スーダン\",\n        \"name_ko\": \"남수단\",\n        \"name_nl\": \"Zuid-Soedan\",\n        \"name_pl\": \"Sudan Południowy\",\n        \"name_pt\": \"Sudão do Sul\",\n        \"name_ru\": \"Южный Судан\",\n        \"name_sv\": \"Sydsudan\",\n        \"name_tr\": \"Güney Sudan\",\n        \"name_uk\": \"Південний Судан\",\n        \"name_ur\": \"جنوبی سوڈان\",\n        \"name_vi\": \"Nam Sudan\",\n        \"name_zh\": \"南苏丹\",\n        \"name_zht\": \"南蘇丹\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"SSD.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30.833852421715427, 3.509171604222463],\n            [29.953500197069474, 4.173699042167684],\n            [29.71599531425602, 4.600804755060153],\n            [29.1590784034465, 4.389267279473231],\n            [28.696677687298802, 4.455077215996937],\n            [28.428993768026913, 4.287154649264494],\n            [27.97997724784281, 4.408413397637375],\n            [27.37422610851749, 5.233944403500061],\n            [27.21340905122517, 5.550953477394557],\n            [26.465909458123235, 5.94671743410187],\n            [26.213418409945117, 6.546603298362072],\n            [25.79664798351118, 6.979315904158071],\n            [25.124130893664727, 7.500085150579437],\n            [25.11493248871679, 7.825104071479174],\n            [24.567369012152085, 8.229187933785468],\n            [23.886979580860668, 8.619729712933065],\n            [24.19406772118765, 8.728696472403897],\n            [24.53741516360202, 8.91753756573172],\n            [24.794925745412684, 9.810240916008695],\n            [25.069603699343986, 10.273759963267992],\n            [25.790633328413946, 10.411098940233728],\n            [25.962307049621018, 10.136420986302426],\n            [26.477328213242515, 9.552730334198088],\n            [26.752006167173818, 9.466893473594496],\n            [27.112520981708883, 9.638567194801624],\n            [27.833550610778786, 9.60423245056029],\n            [27.970889587744352, 9.398223985111656],\n            [28.966597170745786, 9.398223985111656],\n            [29.000931914987177, 9.60423245056029],\n            [29.515953078608618, 9.793073543888056],\n            [29.61895731133285, 10.084918869940225],\n            [29.996639497988554, 10.290927335388687],\n            [30.837840731903384, 9.70723668328452],\n            [31.35286189552488, 9.810240916008695],\n            [31.850715687025513, 10.531270545078826],\n            [32.400071594888345, 11.080626452941488],\n            [32.31423473428475, 11.68148447716652],\n            [32.073891524594785, 11.973329803218519],\n            [32.67474954881965, 12.02483191958072],\n            [32.743419037302544, 12.248007757149992],\n            [33.206938084561784, 12.179338268667095],\n            [33.086766479716744, 11.441141267476496],\n            [33.206938084561784, 10.720111638406593],\n            [33.72195924818311, 10.325262079630193],\n            [33.84213085302815, 9.981914637215993],\n            [33.82496348090751, 9.484060845715362],\n            [33.963392794971185, 9.464285229420625],\n            [33.97498, 8.68456],\n            [33.82550000000015, 8.37916],\n            [33.29480000000012, 8.35458],\n            [32.95418, 7.784970000000101],\n            [33.568290000000104, 7.71334],\n            [34.0751, 7.22595],\n            [34.25032, 6.82607],\n            [34.70702, 6.594220000000121],\n            [35.29800711823298, 5.506],\n            [34.62019626785388, 4.847122742081988],\n            [34.005, 4.249884947362048],\n            [33.3900000000001, 3.79],\n            [32.68642, 3.79232],\n            [31.88145, 3.55827],\n            [31.24556, 3.7819],\n            [30.833852421715427, 3.509171604222463]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Somalia\",\n        \"sov_a3\": \"SOM\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Somalia\",\n        \"adm0_a3\": \"SOM\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Somalia\",\n        \"gu_a3\": \"SOM\",\n        \"su_dif\": 0,\n        \"subunit\": \"Somalia\",\n        \"su_a3\": \"SOM\",\n        \"brk_diff\": 0,\n        \"name\": \"Somalia\",\n        \"name_long\": \"Somalia\",\n        \"brk_a3\": \"SOM\",\n        \"brk_name\": \"Somalia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Som.\",\n        \"postal\": \"SO\",\n        \"formal_en\": \"Federal Republic of Somalia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Somalia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Somalia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 8,\n        \"mapcolor9\": 6,\n        \"mapcolor13\": 7,\n        \"pop_est\": 10192317.3,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 4719,\n        \"gdp_year\": 2016,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"SO\",\n        \"iso_a2\": \"SO\",\n        \"iso_a2_eh\": \"SO\",\n        \"iso_a3\": \"SOM\",\n        \"iso_a3_eh\": \"SOM\",\n        \"iso_n3\": \"706\",\n        \"iso_n3_eh\": \"706\",\n        \"un_a3\": \"706\",\n        \"wb_a2\": \"SO\",\n        \"wb_a3\": \"SOM\",\n        \"woe_id\": -90,\n        \"woe_id_eh\": 23424949,\n        \"woe_note\": \"Includes Somaliland (2347021, 2347020, 2347017 and portion of 2347016)\",\n        \"adm0_iso\": \"SOM\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"SOM\",\n        \"adm0_a3_us\": \"SOM\",\n        \"adm0_a3_fr\": \"SOM\",\n        \"adm0_a3_ru\": \"SOM\",\n        \"adm0_a3_es\": \"SOM\",\n        \"adm0_a3_cn\": \"SOM\",\n        \"adm0_a3_tw\": \"SOM\",\n        \"adm0_a3_in\": \"SOM\",\n        \"adm0_a3_np\": \"SOM\",\n        \"adm0_a3_pk\": \"SOM\",\n        \"adm0_a3_de\": \"SOM\",\n        \"adm0_a3_gb\": \"SOM\",\n        \"adm0_a3_br\": \"SOM\",\n        \"adm0_a3_il\": \"SOM\",\n        \"adm0_a3_ps\": \"SOM\",\n        \"adm0_a3_sa\": \"SOM\",\n        \"adm0_a3_eg\": \"SOM\",\n        \"adm0_a3_ma\": \"SOM\",\n        \"adm0_a3_pt\": \"SOM\",\n        \"adm0_a3_ar\": \"SOM\",\n        \"adm0_a3_jp\": \"SOM\",\n        \"adm0_a3_ko\": \"SOM\",\n        \"adm0_a3_vn\": \"SOM\",\n        \"adm0_a3_tr\": \"SOM\",\n        \"adm0_a3_id\": \"SOM\",\n        \"adm0_a3_pl\": \"SOM\",\n        \"adm0_a3_gr\": \"SOM\",\n        \"adm0_a3_it\": \"SOM\",\n        \"adm0_a3_nl\": \"SOM\",\n        \"adm0_a3_se\": \"SOM\",\n        \"adm0_a3_bd\": \"SOM\",\n        \"adm0_a3_ua\": \"SOM\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Eastern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 45.19238,\n        \"label_y\": 3.568925,\n        \"ne_id\": 1159321261,\n        \"wikidataid\": \"Q1045\",\n        \"name_ar\": \"الصومال\",\n        \"name_bn\": \"সোমালিয়া\",\n        \"name_de\": \"Somalia\",\n        \"name_en\": \"Somalia\",\n        \"name_es\": \"Somalia\",\n        \"name_fa\": \"سومالی\",\n        \"name_fr\": \"Somalie\",\n        \"name_el\": \"Σομαλία\",\n        \"name_he\": \"סומליה\",\n        \"name_hi\": \"सोमालिया\",\n        \"name_hu\": \"Szomália\",\n        \"name_id\": \"Somalia\",\n        \"name_it\": \"Somalia\",\n        \"name_ja\": \"ソマリア\",\n        \"name_ko\": \"소말리아\",\n        \"name_nl\": \"Somalië\",\n        \"name_pl\": \"Somalia\",\n        \"name_pt\": \"Somália\",\n        \"name_ru\": \"Сомали\",\n        \"name_sv\": \"Somalia\",\n        \"name_tr\": \"Somali\",\n        \"name_uk\": \"Сомалі\",\n        \"name_ur\": \"صومالیہ\",\n        \"name_vi\": \"Somalia\",\n        \"name_zh\": \"索马里\",\n        \"name_zht\": \"索馬利亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"SOM.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [41.58513, -1.68325],\n            [40.993, -0.85829],\n            [40.98105, 2.78452],\n            [41.85508309264397, 3.918911920483727],\n            [42.12861, 4.23413],\n            [42.76967, 4.25259],\n            [43.66087, 4.95755],\n            [44.9636, 5.00162],\n            [47.78942, 8.003],\n            [48.48673587422695, 8.837626247589995],\n            [48.93812951029645, 9.451748968946617],\n            [48.93823286316103, 9.973500067581512],\n            [48.938491245322496, 10.982327378783467],\n            [48.94200524271835, 11.394266058798138],\n            [48.94820475850974, 11.410617281697963],\n            [48.94820475850985, 11.41061728169797],\n            [49.26776, 11.43033],\n            [49.72862, 11.5789],\n            [50.25878, 11.67957],\n            [50.73202, 12.0219],\n            [51.1112, 12.02464],\n            [51.13387, 11.74815],\n            [51.04153, 11.16651],\n            [51.04531, 10.6409],\n            [50.83418, 10.27972],\n            [50.55239, 9.19874],\n            [50.07092, 8.08173],\n            [49.4527, 6.80466],\n            [48.59455, 5.33911],\n            [47.74079, 4.2194],\n            [46.56476, 2.85529],\n            [45.56399, 2.04576],\n            [44.06815, 1.05283],\n            [43.13597, 0.2922],\n            [42.04157, -0.91916],\n            [41.81095, -1.44647],\n            [41.58513, -1.68325]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Kenya\",\n        \"sov_a3\": \"KEN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Kenya\",\n        \"adm0_a3\": \"KEN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Kenya\",\n        \"gu_a3\": \"KEN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Kenya\",\n        \"su_a3\": \"KEN\",\n        \"brk_diff\": 0,\n        \"name\": \"Kenya\",\n        \"name_long\": \"Kenya\",\n        \"brk_a3\": \"KEN\",\n        \"brk_name\": \"Kenya\",\n        \"brk_group\": null,\n        \"abbrev\": \"Ken.\",\n        \"postal\": \"KE\",\n        \"formal_en\": \"Republic of Kenya\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Kenya\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Kenya\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 7,\n        \"mapcolor13\": 3,\n        \"pop_est\": 52573973,\n        \"pop_rank\": 16,\n        \"pop_year\": 2019,\n        \"gdp_md\": 95503,\n        \"gdp_year\": 2019,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"KE\",\n        \"iso_a2\": \"KE\",\n        \"iso_a2_eh\": \"KE\",\n        \"iso_a3\": \"KEN\",\n        \"iso_a3_eh\": \"KEN\",\n        \"iso_n3\": \"404\",\n        \"iso_n3_eh\": \"404\",\n        \"un_a3\": \"404\",\n        \"wb_a2\": \"KE\",\n        \"wb_a3\": \"KEN\",\n        \"woe_id\": 23424863,\n        \"woe_id_eh\": 23424863,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"KEN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"KEN\",\n        \"adm0_a3_us\": \"KEN\",\n        \"adm0_a3_fr\": \"KEN\",\n        \"adm0_a3_ru\": \"KEN\",\n        \"adm0_a3_es\": \"KEN\",\n        \"adm0_a3_cn\": \"KEN\",\n        \"adm0_a3_tw\": \"KEN\",\n        \"adm0_a3_in\": \"KEN\",\n        \"adm0_a3_np\": \"KEN\",\n        \"adm0_a3_pk\": \"KEN\",\n        \"adm0_a3_de\": \"KEN\",\n        \"adm0_a3_gb\": \"KEN\",\n        \"adm0_a3_br\": \"KEN\",\n        \"adm0_a3_il\": \"KEN\",\n        \"adm0_a3_ps\": \"KEN\",\n        \"adm0_a3_sa\": \"KEN\",\n        \"adm0_a3_eg\": \"KEN\",\n        \"adm0_a3_ma\": \"KEN\",\n        \"adm0_a3_pt\": \"KEN\",\n        \"adm0_a3_ar\": \"KEN\",\n        \"adm0_a3_jp\": \"KEN\",\n        \"adm0_a3_ko\": \"KEN\",\n        \"adm0_a3_vn\": \"KEN\",\n        \"adm0_a3_tr\": \"KEN\",\n        \"adm0_a3_id\": \"KEN\",\n        \"adm0_a3_pl\": \"KEN\",\n        \"adm0_a3_gr\": \"KEN\",\n        \"adm0_a3_it\": \"KEN\",\n        \"adm0_a3_nl\": \"KEN\",\n        \"adm0_a3_se\": \"KEN\",\n        \"adm0_a3_bd\": \"KEN\",\n        \"adm0_a3_ua\": \"KEN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Eastern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 6.7,\n        \"label_x\": 37.907632,\n        \"label_y\": 0.549043,\n        \"ne_id\": 1159320971,\n        \"wikidataid\": \"Q114\",\n        \"name_ar\": \"كينيا\",\n        \"name_bn\": \"কেনিয়া\",\n        \"name_de\": \"Kenia\",\n        \"name_en\": \"Kenya\",\n        \"name_es\": \"Kenia\",\n        \"name_fa\": \"کنیا\",\n        \"name_fr\": \"Kenya\",\n        \"name_el\": \"Κένυα\",\n        \"name_he\": \"קניה\",\n        \"name_hi\": \"कीनिया\",\n        \"name_hu\": \"Kenya\",\n        \"name_id\": \"Kenya\",\n        \"name_it\": \"Kenya\",\n        \"name_ja\": \"ケニア\",\n        \"name_ko\": \"케냐\",\n        \"name_nl\": \"Kenia\",\n        \"name_pl\": \"Kenia\",\n        \"name_pt\": \"Quénia\",\n        \"name_ru\": \"Кения\",\n        \"name_sv\": \"Kenya\",\n        \"name_tr\": \"Kenya\",\n        \"name_uk\": \"Кенія\",\n        \"name_ur\": \"کینیا\",\n        \"name_vi\": \"Kenya\",\n        \"name_zh\": \"肯尼亚\",\n        \"name_zht\": \"肯亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"KEN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [39.20222, -4.67677],\n            [37.7669, -3.67712],\n            [37.69869, -3.09699],\n            [34.07262, -1.05982],\n            [33.90371119710453, -0.95],\n            [33.893568969666944, 0.109813537861896],\n            [34.18, 0.515],\n            [34.6721, 1.17694],\n            [35.03599, 1.90584],\n            [34.59607, 3.053740000000118],\n            [34.47913, 3.5556],\n            [34.005, 4.249884947362048],\n            [34.62019626785388, 4.847122742081988],\n            [35.29800711823298, 5.506],\n            [35.817447662353516, 5.338232082790797],\n            [35.817447662353516, 4.77696566346189],\n            [36.159078632855646, 4.447864127672769],\n            [36.85509323800812, 4.447864127672769],\n            [38.120915, 3.598605],\n            [38.43697, 3.58851],\n            [38.67114, 3.61607],\n            [38.89251, 3.50074],\n            [39.55938425876585, 3.42206],\n            [39.85494, 3.83879],\n            [40.76848, 4.25702],\n            [41.1718, 3.91909],\n            [41.85508309264397, 3.918911920483727],\n            [40.98105, 2.78452],\n            [40.993, -0.85829],\n            [41.58513, -1.68325],\n            [40.88477, -2.08255],\n            [40.63785, -2.49979],\n            [40.26304, -2.57309],\n            [40.12119, -3.27768],\n            [39.80006, -3.68116],\n            [39.60489, -4.34653],\n            [39.20222, -4.67677]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Malawi\",\n        \"sov_a3\": \"MWI\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Malawi\",\n        \"adm0_a3\": \"MWI\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Malawi\",\n        \"gu_a3\": \"MWI\",\n        \"su_dif\": 0,\n        \"subunit\": \"Malawi\",\n        \"su_a3\": \"MWI\",\n        \"brk_diff\": 0,\n        \"name\": \"Malawi\",\n        \"name_long\": \"Malawi\",\n        \"brk_a3\": \"MWI\",\n        \"brk_name\": \"Malawi\",\n        \"brk_group\": null,\n        \"abbrev\": \"Mal.\",\n        \"postal\": \"MW\",\n        \"formal_en\": \"Republic of Malawi\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Malawi\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Malawi\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 5,\n        \"pop_est\": 18628747,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 7666,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"MI\",\n        \"iso_a2\": \"MW\",\n        \"iso_a2_eh\": \"MW\",\n        \"iso_a3\": \"MWI\",\n        \"iso_a3_eh\": \"MWI\",\n        \"iso_n3\": \"454\",\n        \"iso_n3_eh\": \"454\",\n        \"un_a3\": \"454\",\n        \"wb_a2\": \"MW\",\n        \"wb_a3\": \"MWI\",\n        \"woe_id\": 23424889,\n        \"woe_id_eh\": 23424889,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"MWI\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"MWI\",\n        \"adm0_a3_us\": \"MWI\",\n        \"adm0_a3_fr\": \"MWI\",\n        \"adm0_a3_ru\": \"MWI\",\n        \"adm0_a3_es\": \"MWI\",\n        \"adm0_a3_cn\": \"MWI\",\n        \"adm0_a3_tw\": \"MWI\",\n        \"adm0_a3_in\": \"MWI\",\n        \"adm0_a3_np\": \"MWI\",\n        \"adm0_a3_pk\": \"MWI\",\n        \"adm0_a3_de\": \"MWI\",\n        \"adm0_a3_gb\": \"MWI\",\n        \"adm0_a3_br\": \"MWI\",\n        \"adm0_a3_il\": \"MWI\",\n        \"adm0_a3_ps\": \"MWI\",\n        \"adm0_a3_sa\": \"MWI\",\n        \"adm0_a3_eg\": \"MWI\",\n        \"adm0_a3_ma\": \"MWI\",\n        \"adm0_a3_pt\": \"MWI\",\n        \"adm0_a3_ar\": \"MWI\",\n        \"adm0_a3_jp\": \"MWI\",\n        \"adm0_a3_ko\": \"MWI\",\n        \"adm0_a3_vn\": \"MWI\",\n        \"adm0_a3_tr\": \"MWI\",\n        \"adm0_a3_id\": \"MWI\",\n        \"adm0_a3_pl\": \"MWI\",\n        \"adm0_a3_gr\": \"MWI\",\n        \"adm0_a3_it\": \"MWI\",\n        \"adm0_a3_nl\": \"MWI\",\n        \"adm0_a3_se\": \"MWI\",\n        \"adm0_a3_bd\": \"MWI\",\n        \"adm0_a3_ua\": \"MWI\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Eastern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 33.608082,\n        \"label_y\": -13.386737,\n        \"ne_id\": 1159321081,\n        \"wikidataid\": \"Q1020\",\n        \"name_ar\": \"مالاوي\",\n        \"name_bn\": \"মালাউই\",\n        \"name_de\": \"Malawi\",\n        \"name_en\": \"Malawi\",\n        \"name_es\": \"Malaui\",\n        \"name_fa\": \"مالاوی\",\n        \"name_fr\": \"Malawi\",\n        \"name_el\": \"Μαλάουι\",\n        \"name_he\": \"מלאווי\",\n        \"name_hi\": \"मलावी\",\n        \"name_hu\": \"Malawi\",\n        \"name_id\": \"Malawi\",\n        \"name_it\": \"Malawi\",\n        \"name_ja\": \"マラウイ\",\n        \"name_ko\": \"말라위\",\n        \"name_nl\": \"Malawi\",\n        \"name_pl\": \"Malawi\",\n        \"name_pt\": \"Malawi\",\n        \"name_ru\": \"Малави\",\n        \"name_sv\": \"Malawi\",\n        \"name_tr\": \"Malavi\",\n        \"name_uk\": \"Малаві\",\n        \"name_ur\": \"ملاوی\",\n        \"name_vi\": \"Malawi\",\n        \"name_zh\": \"马拉维\",\n        \"name_zht\": \"馬拉威\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"MWI.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [32.75937544122132, -9.23059905358906],\n            [33.73972, -9.41715],\n            [33.940837724096525, -9.693673841980285],\n            [34.28, -10.16],\n            [34.55998904799935, -11.520020033415925],\n            [34.28000613784198, -12.280025323132506],\n            [34.55998904799935, -13.579997653866876],\n            [34.907151320136165, -13.565424899960568],\n            [35.26795617039801, -13.887834161029566],\n            [35.68684533055594, -14.611045830954332],\n            [35.77190473810836, -15.896858819240727],\n            [35.339062941231646, -16.10744028083011],\n            [35.033810255683534, -16.801299737213093],\n            [34.38129194513405, -16.183559665596043],\n            [34.307291294092096, -15.478641452702597],\n            [34.51766604995231, -15.013708591372612],\n            [34.45963341648854, -14.613009535381423],\n            [34.064825473778626, -14.35995004644812],\n            [33.789700148256685, -14.45183074306307],\n            [33.214024692525214, -13.971860039936153],\n            [32.68816531752313, -13.712857761289277],\n            [32.991764357237884, -12.783870537978274],\n            [33.306422153463075, -12.435778090060218],\n            [33.114289178201915, -11.607198174692314],\n            [33.315310499817286, -10.796549981329697],\n            [33.48568769708359, -10.525558770391115],\n            [33.2313879737753, -9.6767216935648],\n            [32.75937544122132, -9.23059905358906]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"United Republic of Tanzania\",\n        \"sov_a3\": \"TZA\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"United Republic of Tanzania\",\n        \"adm0_a3\": \"TZA\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Tanzania\",\n        \"gu_a3\": \"TZA\",\n        \"su_dif\": 0,\n        \"subunit\": \"Tanzania\",\n        \"su_a3\": \"TZA\",\n        \"brk_diff\": 0,\n        \"name\": \"Tanzania\",\n        \"name_long\": \"Tanzania\",\n        \"brk_a3\": \"TZA\",\n        \"brk_name\": \"Tanzania\",\n        \"brk_group\": null,\n        \"abbrev\": \"Tanz.\",\n        \"postal\": \"TZ\",\n        \"formal_en\": \"United Republic of Tanzania\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Tanzania\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Tanzania\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 2,\n        \"pop_est\": 58005463,\n        \"pop_rank\": 16,\n        \"pop_year\": 2019,\n        \"gdp_md\": 63177,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"TZ\",\n        \"iso_a2\": \"TZ\",\n        \"iso_a2_eh\": \"TZ\",\n        \"iso_a3\": \"TZA\",\n        \"iso_a3_eh\": \"TZA\",\n        \"iso_n3\": \"834\",\n        \"iso_n3_eh\": \"834\",\n        \"un_a3\": \"834\",\n        \"wb_a2\": \"TZ\",\n        \"wb_a3\": \"TZA\",\n        \"woe_id\": 23424973,\n        \"woe_id_eh\": 23424973,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"TZA\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"TZA\",\n        \"adm0_a3_us\": \"TZA\",\n        \"adm0_a3_fr\": \"TZA\",\n        \"adm0_a3_ru\": \"TZA\",\n        \"adm0_a3_es\": \"TZA\",\n        \"adm0_a3_cn\": \"TZA\",\n        \"adm0_a3_tw\": \"TZA\",\n        \"adm0_a3_in\": \"TZA\",\n        \"adm0_a3_np\": \"TZA\",\n        \"adm0_a3_pk\": \"TZA\",\n        \"adm0_a3_de\": \"TZA\",\n        \"adm0_a3_gb\": \"TZA\",\n        \"adm0_a3_br\": \"TZA\",\n        \"adm0_a3_il\": \"TZA\",\n        \"adm0_a3_ps\": \"TZA\",\n        \"adm0_a3_sa\": \"TZA\",\n        \"adm0_a3_eg\": \"TZA\",\n        \"adm0_a3_ma\": \"TZA\",\n        \"adm0_a3_pt\": \"TZA\",\n        \"adm0_a3_ar\": \"TZA\",\n        \"adm0_a3_jp\": \"TZA\",\n        \"adm0_a3_ko\": \"TZA\",\n        \"adm0_a3_vn\": \"TZA\",\n        \"adm0_a3_tr\": \"TZA\",\n        \"adm0_a3_id\": \"TZA\",\n        \"adm0_a3_pl\": \"TZA\",\n        \"adm0_a3_gr\": \"TZA\",\n        \"adm0_a3_it\": \"TZA\",\n        \"adm0_a3_nl\": \"TZA\",\n        \"adm0_a3_se\": \"TZA\",\n        \"adm0_a3_bd\": \"TZA\",\n        \"adm0_a3_ua\": \"TZA\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Eastern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 34.959183,\n        \"label_y\": -6.051866,\n        \"ne_id\": 1159321337,\n        \"wikidataid\": \"Q924\",\n        \"name_ar\": \"تنزانيا\",\n        \"name_bn\": \"তানজানিয়া\",\n        \"name_de\": \"Tansania\",\n        \"name_en\": \"Tanzania\",\n        \"name_es\": \"Tanzania\",\n        \"name_fa\": \"تانزانیا\",\n        \"name_fr\": \"Tanzanie\",\n        \"name_el\": \"Τανζανία\",\n        \"name_he\": \"טנזניה\",\n        \"name_hi\": \"तंज़ानिया\",\n        \"name_hu\": \"Tanzánia\",\n        \"name_id\": \"Tanzania\",\n        \"name_it\": \"Tanzania\",\n        \"name_ja\": \"タンザニア\",\n        \"name_ko\": \"탄자니아\",\n        \"name_nl\": \"Tanzania\",\n        \"name_pl\": \"Tanzania\",\n        \"name_pt\": \"Tanzânia\",\n        \"name_ru\": \"Танзания\",\n        \"name_sv\": \"Tanzania\",\n        \"name_tr\": \"Tanzanya\",\n        \"name_uk\": \"Танзанія\",\n        \"name_ur\": \"تنزانیہ\",\n        \"name_vi\": \"Tanzania\",\n        \"name_zh\": \"坦桑尼亚\",\n        \"name_zht\": \"坦尚尼亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"TZA.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [33.90371119710453, -0.95],\n            [34.07262, -1.05982],\n            [37.69869, -3.09699],\n            [37.7669, -3.67712],\n            [39.20222, -4.67677],\n            [38.74054, -5.90895],\n            [38.79977, -6.47566],\n            [39.44, -6.839999999999861],\n            [39.47000000000014, -7.1],\n            [39.19469, -7.7039],\n            [39.25203, -8.00781],\n            [39.18652, -8.48551],\n            [39.53574, -9.112369999999885],\n            [39.9496, -10.0984],\n            [40.316586229110854, -10.317097752817492],\n            [40.31659, -10.317099999999868],\n            [39.521, -10.89688],\n            [38.42755659358775, -11.285202325081656],\n            [37.82764, -11.26879],\n            [37.47129, -11.56876],\n            [36.775150994622805, -11.594537448780805],\n            [36.51408165868426, -11.720938002166735],\n            [35.31239790216904, -11.439146416879147],\n            [34.55998904799935, -11.520020033415925],\n            [34.28, -10.16],\n            [33.940837724096525, -9.693673841980285],\n            [33.73972, -9.41715],\n            [32.75937544122132, -9.23059905358906],\n            [32.19186486179194, -8.930358981973257],\n            [31.556348097466497, -8.762048841998642],\n            [31.15775133695005, -8.594578747317366],\n            [30.740009731422095, -8.34000593035372],\n            [30.74001549655179, -8.340007419470915],\n            [30.199996779101696, -7.079980970898163],\n            [29.620032179490014, -6.520015150583426],\n            [29.419992710088167, -5.939998874539434],\n            [29.519986606572928, -5.419978936386315],\n            [29.339997592900346, -4.499983412294092],\n            [29.753512404099865, -4.452389418153302],\n            [30.11632, -4.09012],\n            [30.50554, -3.56858],\n            [30.75224, -3.35931],\n            [30.74301, -3.03431],\n            [30.52766, -2.80762],\n            [30.469673645761223, -2.41385475710134],\n            [30.46967, -2.41383],\n            [30.75830895358311, -2.287250257988369],\n            [30.816134881317712, -1.698914076345389],\n            [30.419104852019245, -1.134659112150416],\n            [30.769860000000108, -1.01455],\n            [31.86617, -1.02736],\n            [33.90371119710453, -0.95]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Somaliland\",\n        \"sov_a3\": \"SOL\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Somaliland\",\n        \"adm0_a3\": \"SOL\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Somaliland\",\n        \"gu_a3\": \"SOL\",\n        \"su_dif\": 0,\n        \"subunit\": \"Somaliland\",\n        \"su_a3\": \"SOL\",\n        \"brk_diff\": 0,\n        \"name\": \"Somaliland\",\n        \"name_long\": \"Somaliland\",\n        \"brk_a3\": \"SOL\",\n        \"brk_name\": \"Somaliland\",\n        \"brk_group\": null,\n        \"abbrev\": \"Solnd.\",\n        \"postal\": \"SL\",\n        \"formal_en\": \"Republic of Somaliland\",\n        \"formal_fr\": null,\n        \"name_ciawf\": null,\n        \"note_adm0\": \"Disputed\",\n        \"note_brk\": \"Self admin.; Claimed by Somalia\",\n        \"name_sort\": \"Somaliland\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 2,\n        \"pop_est\": 5096159,\n        \"pop_rank\": 13,\n        \"pop_year\": 2014,\n        \"gdp_md\": 17836,\n        \"gdp_year\": 2013,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"-99\",\n        \"iso_a2\": \"-99\",\n        \"iso_a2_eh\": \"-99\",\n        \"iso_a3\": \"-99\",\n        \"iso_a3_eh\": \"-99\",\n        \"iso_n3\": \"-99\",\n        \"iso_n3_eh\": \"-99\",\n        \"un_a3\": \"-099\",\n        \"wb_a2\": \"-99\",\n        \"wb_a3\": \"-99\",\n        \"woe_id\": -99,\n        \"woe_id_eh\": -99,\n        \"woe_note\": \"Includes old states of 2347021, 2347020, 2347017 and portion of 2347016.\",\n        \"adm0_iso\": \"SOM\",\n        \"adm0_diff\": \"1\",\n        \"adm0_tlc\": \"SOL\",\n        \"adm0_a3_us\": \"SOM\",\n        \"adm0_a3_fr\": \"SOM\",\n        \"adm0_a3_ru\": \"SOM\",\n        \"adm0_a3_es\": \"SOM\",\n        \"adm0_a3_cn\": \"SOM\",\n        \"adm0_a3_tw\": \"SOL\",\n        \"adm0_a3_in\": \"SOM\",\n        \"adm0_a3_np\": \"SOM\",\n        \"adm0_a3_pk\": \"SOM\",\n        \"adm0_a3_de\": \"SOM\",\n        \"adm0_a3_gb\": \"SOM\",\n        \"adm0_a3_br\": \"SOM\",\n        \"adm0_a3_il\": \"SOM\",\n        \"adm0_a3_ps\": \"SOM\",\n        \"adm0_a3_sa\": \"SOM\",\n        \"adm0_a3_eg\": \"SOM\",\n        \"adm0_a3_ma\": \"SOM\",\n        \"adm0_a3_pt\": \"SOM\",\n        \"adm0_a3_ar\": \"SOM\",\n        \"adm0_a3_jp\": \"SOM\",\n        \"adm0_a3_ko\": \"SOM\",\n        \"adm0_a3_vn\": \"SOM\",\n        \"adm0_a3_tr\": \"SOM\",\n        \"adm0_a3_id\": \"SOM\",\n        \"adm0_a3_pl\": \"SOM\",\n        \"adm0_a3_gr\": \"SOM\",\n        \"adm0_a3_it\": \"SOM\",\n        \"adm0_a3_nl\": \"SOM\",\n        \"adm0_a3_se\": \"SOM\",\n        \"adm0_a3_bd\": \"SOM\",\n        \"adm0_a3_ua\": \"SOM\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Eastern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 10,\n        \"long_len\": 10,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 4,\n        \"min_label\": 4.5,\n        \"max_label\": 9,\n        \"label_x\": 46.731595,\n        \"label_y\": 9.443889,\n        \"ne_id\": 1159321259,\n        \"wikidataid\": \"Q34754\",\n        \"name_ar\": \"صوماليلاند\",\n        \"name_bn\": \"সোমালিল্যান্ড\",\n        \"name_de\": \"Somaliland\",\n        \"name_en\": \"Somaliland\",\n        \"name_es\": \"Somalilandia\",\n        \"name_fa\": \"سومالیلند\",\n        \"name_fr\": \"Somaliland\",\n        \"name_el\": \"Σομαλιλάνδη\",\n        \"name_he\": \"סומלילנד\",\n        \"name_hi\": \"सोमालीदेश\",\n        \"name_hu\": \"Szomáliföld\",\n        \"name_id\": \"Somaliland\",\n        \"name_it\": \"Somaliland\",\n        \"name_ja\": \"ソマリランド\",\n        \"name_ko\": \"소말릴란드\",\n        \"name_nl\": \"Somaliland\",\n        \"name_pl\": \"Somaliland\",\n        \"name_pt\": \"Somalilândia\",\n        \"name_ru\": \"Сомалиленд\",\n        \"name_sv\": \"Somaliland\",\n        \"name_tr\": \"Somaliland\",\n        \"name_uk\": \"Сомаліленд\",\n        \"name_ur\": \"صومالی لینڈ\",\n        \"name_vi\": \"Somaliland\",\n        \"name_zh\": \"索马里兰\",\n        \"name_zht\": \"索馬利蘭\",\n        \"fclass_iso\": \"Unrecognized\",\n        \"tlc_diff\": \"1\",\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": \"Unrecognized\",\n        \"fclass_fr\": \"Unrecognized\",\n        \"fclass_ru\": \"Unrecognized\",\n        \"fclass_es\": \"Unrecognized\",\n        \"fclass_cn\": \"Unrecognized\",\n        \"fclass_tw\": \"Admin-0 country\",\n        \"fclass_in\": \"Unrecognized\",\n        \"fclass_np\": \"Unrecognized\",\n        \"fclass_pk\": \"Unrecognized\",\n        \"fclass_de\": \"Unrecognized\",\n        \"fclass_gb\": \"Unrecognized\",\n        \"fclass_br\": \"Unrecognized\",\n        \"fclass_il\": \"Unrecognized\",\n        \"fclass_ps\": \"Unrecognized\",\n        \"fclass_sa\": \"Unrecognized\",\n        \"fclass_eg\": \"Unrecognized\",\n        \"fclass_ma\": \"Unrecognized\",\n        \"fclass_pt\": \"Unrecognized\",\n        \"fclass_ar\": \"Unrecognized\",\n        \"fclass_jp\": \"Unrecognized\",\n        \"fclass_ko\": \"Unrecognized\",\n        \"fclass_vn\": \"Unrecognized\",\n        \"fclass_tr\": \"Unrecognized\",\n        \"fclass_id\": \"Unrecognized\",\n        \"fclass_pl\": \"Unrecognized\",\n        \"fclass_gr\": \"Unrecognized\",\n        \"fclass_it\": \"Unrecognized\",\n        \"fclass_nl\": \"Unrecognized\",\n        \"fclass_se\": \"Unrecognized\",\n        \"fclass_bd\": \"Unrecognized\",\n        \"fclass_ua\": \"Unrecognized\",\n        \"filename\": \"SOL.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [48.94820475850985, 11.41061728169797],\n            [48.94820475850974, 11.410617281697963],\n            [48.94200524271835, 11.394266058798138],\n            [48.938491245322496, 10.982327378783467],\n            [48.93823286316103, 9.973500067581512],\n            [48.93812951029645, 9.451748968946617],\n            [48.48673587422695, 8.837626247589995],\n            [47.78942, 8.003],\n            [46.94834, 7.99688],\n            [43.67875, 9.18358000000012],\n            [43.29699000000011, 9.540480000000173],\n            [42.92812, 10.021940000000143],\n            [42.55876, 10.57258000000013],\n            [42.77685184100096, 10.92687856693442],\n            [43.14530480324214, 11.462039699748857],\n            [43.470659620951665, 11.277709865763882],\n            [43.66666832863484, 10.86416921634816],\n            [44.11780358254282, 10.445538438351605],\n            [44.614259067570856, 10.442205308468942],\n            [45.55694054543915, 10.698029486529776],\n            [46.645401238803004, 10.816549383991173],\n            [47.525657586462785, 11.12722809492999],\n            [48.02159630716778, 11.193063869669743],\n            [48.37878380716927, 11.375481675660126],\n            [48.94820641459347, 11.41062164961852],\n            [48.94820475850985, 11.41061728169797]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Morocco\",\n        \"sov_a3\": \"MAR\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Morocco\",\n        \"adm0_a3\": \"MAR\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Morocco\",\n        \"gu_a3\": \"MAR\",\n        \"su_dif\": 0,\n        \"subunit\": \"Morocco\",\n        \"su_a3\": \"MAR\",\n        \"brk_diff\": 0,\n        \"name\": \"Morocco\",\n        \"name_long\": \"Morocco\",\n        \"brk_a3\": \"MAR\",\n        \"brk_name\": \"Morocco\",\n        \"brk_group\": null,\n        \"abbrev\": \"Mor.\",\n        \"postal\": \"MA\",\n        \"formal_en\": \"Kingdom of Morocco\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Morocco\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Morocco\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 9,\n        \"pop_est\": 36471769,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 119700,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"MO\",\n        \"iso_a2\": \"MA\",\n        \"iso_a2_eh\": \"MA\",\n        \"iso_a3\": \"MAR\",\n        \"iso_a3_eh\": \"MAR\",\n        \"iso_n3\": \"504\",\n        \"iso_n3_eh\": \"504\",\n        \"un_a3\": \"504\",\n        \"wb_a2\": \"MA\",\n        \"wb_a3\": \"MAR\",\n        \"woe_id\": 23424893,\n        \"woe_id_eh\": 23424893,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"MAR\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"MAR\",\n        \"adm0_a3_us\": \"MAR\",\n        \"adm0_a3_fr\": \"MAR\",\n        \"adm0_a3_ru\": \"MAR\",\n        \"adm0_a3_es\": \"MAR\",\n        \"adm0_a3_cn\": \"MAR\",\n        \"adm0_a3_tw\": \"MAR\",\n        \"adm0_a3_in\": \"MAR\",\n        \"adm0_a3_np\": \"MAR\",\n        \"adm0_a3_pk\": \"MAR\",\n        \"adm0_a3_de\": \"MAR\",\n        \"adm0_a3_gb\": \"MAR\",\n        \"adm0_a3_br\": \"MAR\",\n        \"adm0_a3_il\": \"MAR\",\n        \"adm0_a3_ps\": \"MAR\",\n        \"adm0_a3_sa\": \"MAR\",\n        \"adm0_a3_eg\": \"MAR\",\n        \"adm0_a3_ma\": \"MAR\",\n        \"adm0_a3_pt\": \"MAR\",\n        \"adm0_a3_ar\": \"MAR\",\n        \"adm0_a3_jp\": \"MAR\",\n        \"adm0_a3_ko\": \"MAR\",\n        \"adm0_a3_vn\": \"MAR\",\n        \"adm0_a3_tr\": \"MAR\",\n        \"adm0_a3_id\": \"MAR\",\n        \"adm0_a3_pl\": \"MAR\",\n        \"adm0_a3_gr\": \"MAR\",\n        \"adm0_a3_it\": \"MAR\",\n        \"adm0_a3_nl\": \"MAR\",\n        \"adm0_a3_se\": \"MAR\",\n        \"adm0_a3_bd\": \"MAR\",\n        \"adm0_a3_ua\": \"MAR\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Northern Africa\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.7,\n        \"max_label\": 8,\n        \"label_x\": -7.187296,\n        \"label_y\": 31.650723,\n        \"ne_id\": 1159321035,\n        \"wikidataid\": \"Q1028\",\n        \"name_ar\": \"المغرب\",\n        \"name_bn\": \"মরক্কো\",\n        \"name_de\": \"Marokko\",\n        \"name_en\": \"Morocco\",\n        \"name_es\": \"Marruecos\",\n        \"name_fa\": \"مراکش\",\n        \"name_fr\": \"Maroc\",\n        \"name_el\": \"Μαρόκο\",\n        \"name_he\": \"מרוקו\",\n        \"name_hi\": \"मोरक्को\",\n        \"name_hu\": \"Marokkó\",\n        \"name_id\": \"Maroko\",\n        \"name_it\": \"Marocco\",\n        \"name_ja\": \"モロッコ\",\n        \"name_ko\": \"모로코\",\n        \"name_nl\": \"Marokko\",\n        \"name_pl\": \"Maroko\",\n        \"name_pt\": \"Marrocos\",\n        \"name_ru\": \"Марокко\",\n        \"name_sv\": \"Marocko\",\n        \"name_tr\": \"Fas\",\n        \"name_uk\": \"Марокко\",\n        \"name_ur\": \"مراکش\",\n        \"name_vi\": \"Maroc\",\n        \"name_zh\": \"摩洛哥\",\n        \"name_zht\": \"摩洛哥\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"MAR.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-2.169913702798624, 35.16839630791668],\n            [-1.792985805661715, 34.527918606091305],\n            [-1.733454555661467, 33.91971283623212],\n            [-1.388049282222596, 32.86401500094138],\n            [-1.124551153966308, 32.65152151135713],\n            [-1.30789913573787, 32.2628889023061],\n            [-2.616604783529567, 32.09434621838619],\n            [-3.068980271812648, 31.724497992473218],\n            [-3.647497931320146, 31.637294012980675],\n            [-3.690441046554724, 30.896951605751156],\n            [-4.859646165374471, 30.501187649043846],\n            [-5.242129278982787, 30.00044302013559],\n            [-6.060632290053774, 29.731699734001694],\n            [-7.059227667661958, 29.5792284205246],\n            [-8.674116176782974, 28.84128896739658],\n            [-8.665589565454809, 27.656425889592356],\n            [-8.817828334986672, 27.656425889592356],\n            [-8.794883999049077, 27.120696316022507],\n            [-9.41303748212448, 27.088476060488574],\n            [-9.735343390328879, 26.860944729107405],\n            [-10.189424200877582, 26.860944729107405],\n            [-10.551262579785273, 26.990807603456886],\n            [-11.392554897497007, 26.883423977154393],\n            [-11.718219773800357, 26.104091701760623],\n            [-12.03075883630163, 26.030866197203068],\n            [-12.50096269372537, 24.7701162785782],\n            [-13.891110398809047, 23.691009019459305],\n            [-14.221167771857253, 22.31016307218816],\n            [-14.630832688851072, 21.860939846274903],\n            [-14.750954555713534, 21.500600083903663],\n            [-17.00296179856109, 21.420734157796577],\n            [-17.02042843267577, 21.422310288981578],\n            [-16.973247849993243, 21.885744533774982],\n            [-16.589136928767687, 22.158234361250095],\n            [-16.261921759495635, 22.679339504481277],\n            [-16.3264139469959, 23.017768459560898],\n            [-15.982610642958036, 23.723358466074046],\n            [-15.426003790742186, 24.35913361256104],\n            [-15.089331834360735, 24.520260728447],\n            [-14.824645148161665, 25.103532619725343],\n            [-14.800925665739726, 25.63626496022232],\n            [-14.439939947964831, 26.254418443297652],\n            [-13.773804897506466, 26.618892320252314],\n            [-13.13994177901435, 27.640147813420526],\n            [-13.121613369914769, 27.65414767171984],\n            [-12.618836635783111, 28.03818553314869],\n            [-11.688919236690765, 28.148643907172527],\n            [-10.900956997104402, 28.83214223888092],\n            [-10.399592251008642, 29.09858592377782],\n            [-9.564811163765683, 29.93357371674989],\n            [-9.814718390329176, 31.17773550060906],\n            [-9.434793260119363, 32.038096421836485],\n            [-9.300692918321886, 32.564679266890664],\n            [-8.657476365585012, 33.240245266242425],\n            [-7.654178432638219, 33.69706492770251],\n            [-6.912544114601417, 34.110476386037476],\n            [-6.244342006851411, 35.145865383437524],\n            [-5.92999426921989, 35.75998810479399],\n            [-5.193863491222032, 35.75518219659085],\n            [-4.591006232105144, 35.330711981745594],\n            [-3.640056525070065, 35.399855048152006],\n            [-2.604305792644084, 35.179093329401155],\n            [-2.169913702798624, 35.16839630791668]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 7,\n        \"sovereignt\": \"Western Sahara\",\n        \"sov_a3\": \"SAH\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Indeterminate\",\n        \"tlc\": \"1\",\n        \"admin\": \"Western Sahara\",\n        \"adm0_a3\": \"SAH\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Western Sahara\",\n        \"gu_a3\": \"SAH\",\n        \"su_dif\": 0,\n        \"subunit\": \"Western Sahara\",\n        \"su_a3\": \"SAH\",\n        \"brk_diff\": 1,\n        \"name\": \"W. Sahara\",\n        \"name_long\": \"Western Sahara\",\n        \"brk_a3\": \"B28\",\n        \"brk_name\": \"W. Sahara\",\n        \"brk_group\": null,\n        \"abbrev\": \"W. Sah.\",\n        \"postal\": \"WS\",\n        \"formal_en\": \"Sahrawi Arab Democratic Republic\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Western Sahara\",\n        \"note_adm0\": null,\n        \"note_brk\": \"Self admin.; Claimed by Morocco\",\n        \"name_sort\": \"Western Sahara\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 7,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 4,\n        \"pop_est\": 603253,\n        \"pop_rank\": 11,\n        \"pop_year\": 2017,\n        \"gdp_md\": 907,\n        \"gdp_year\": 2007,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"WI\",\n        \"iso_a2\": \"EH\",\n        \"iso_a2_eh\": \"EH\",\n        \"iso_a3\": \"ESH\",\n        \"iso_a3_eh\": \"ESH\",\n        \"iso_n3\": \"732\",\n        \"iso_n3_eh\": \"732\",\n        \"un_a3\": \"732\",\n        \"wb_a2\": \"-99\",\n        \"wb_a3\": \"-99\",\n        \"woe_id\": 23424990,\n        \"woe_id_eh\": 23424990,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"B28\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"B28\",\n        \"adm0_a3_us\": \"SAH\",\n        \"adm0_a3_fr\": \"MAR\",\n        \"adm0_a3_ru\": \"SAH\",\n        \"adm0_a3_es\": \"SAH\",\n        \"adm0_a3_cn\": \"SAH\",\n        \"adm0_a3_tw\": \"SAH\",\n        \"adm0_a3_in\": \"MAR\",\n        \"adm0_a3_np\": \"SAH\",\n        \"adm0_a3_pk\": \"SAH\",\n        \"adm0_a3_de\": \"SAH\",\n        \"adm0_a3_gb\": \"SAH\",\n        \"adm0_a3_br\": \"SAH\",\n        \"adm0_a3_il\": \"SAH\",\n        \"adm0_a3_ps\": \"MAR\",\n        \"adm0_a3_sa\": \"MAR\",\n        \"adm0_a3_eg\": \"SAH\",\n        \"adm0_a3_ma\": \"MAR\",\n        \"adm0_a3_pt\": \"SAH\",\n        \"adm0_a3_ar\": \"SAH\",\n        \"adm0_a3_jp\": \"SAH\",\n        \"adm0_a3_ko\": \"SAH\",\n        \"adm0_a3_vn\": \"SAH\",\n        \"adm0_a3_tr\": \"MAR\",\n        \"adm0_a3_id\": \"MAR\",\n        \"adm0_a3_pl\": \"MAR\",\n        \"adm0_a3_gr\": \"SAH\",\n        \"adm0_a3_it\": \"SAH\",\n        \"adm0_a3_nl\": \"MAR\",\n        \"adm0_a3_se\": \"SAH\",\n        \"adm0_a3_bd\": \"SAH\",\n        \"adm0_a3_ua\": \"SAH\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Northern Africa\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 9,\n        \"long_len\": 14,\n        \"abbrev_len\": 7,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 4.7,\n        \"min_label\": 6,\n        \"max_label\": 11,\n        \"label_x\": -12.630304,\n        \"label_y\": 23.967592,\n        \"ne_id\": 1159321223,\n        \"wikidataid\": \"Q6250\",\n        \"name_ar\": \"الصحراء الغربية\",\n        \"name_bn\": \"পশ্চিম সাহারা\",\n        \"name_de\": \"Westsahara\",\n        \"name_en\": \"Western Sahara\",\n        \"name_es\": \"Sahara Occidental\",\n        \"name_fa\": \"صحرای غربی\",\n        \"name_fr\": \"Sahara occidental\",\n        \"name_el\": \"Δυτική Σαχάρα\",\n        \"name_he\": \"סהרה המערבית\",\n        \"name_hi\": \"पश्चिमी सहारा\",\n        \"name_hu\": \"Nyugat-Szahara\",\n        \"name_id\": \"Sahara Barat\",\n        \"name_it\": \"Sahara Occidentale\",\n        \"name_ja\": \"西サハラ\",\n        \"name_ko\": \"서사하라\",\n        \"name_nl\": \"Westelijke Sahara\",\n        \"name_pl\": \"Sahara Zachodnia\",\n        \"name_pt\": \"Sara Ocidental\",\n        \"name_ru\": \"Западная Сахара\",\n        \"name_sv\": \"Västsahara\",\n        \"name_tr\": \"Batı Sahra\",\n        \"name_uk\": \"Західна Сахара\",\n        \"name_ur\": \"مغربی صحارا\",\n        \"name_vi\": \"Tây Sahara\",\n        \"name_zh\": \"西撒哈拉\",\n        \"name_zht\": \"西撒哈拉\",\n        \"fclass_iso\": \"Admin-0 dependency\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 dependency\",\n        \"fclass_us\": null,\n        \"fclass_fr\": \"Unrecognized\",\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": \"Unrecognized\",\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": \"Unrecognized\",\n        \"fclass_sa\": \"Unrecognized\",\n        \"fclass_eg\": null,\n        \"fclass_ma\": \"Unrecognized\",\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": \"Unrecognized\",\n        \"fclass_id\": \"Unrecognized\",\n        \"fclass_pl\": \"Unrecognized\",\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": \"Unrecognized\",\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"ESH.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.665589565454809, 27.656425889592356],\n            [-8.665124477564191, 27.589479071558227],\n            [-8.684399786809053, 27.395744126896005],\n            [-8.6872936670174, 25.881056219988906],\n            [-11.96941891117116, 25.933352769468268],\n            [-11.937224493853321, 23.374594224536168],\n            [-12.874221564169575, 23.284832261645178],\n            [-13.118754441774712, 22.771220201096256],\n            [-12.929101935263532, 21.327070624267563],\n            [-16.845193650773993, 21.33332347257488],\n            [-17.06342322434257, 20.999752102130827],\n            [-17.02042843267577, 21.422310288981578],\n            [-17.00296179856109, 21.420734157796577],\n            [-14.750954555713534, 21.500600083903663],\n            [-14.630832688851072, 21.860939846274903],\n            [-14.221167771857253, 22.31016307218816],\n            [-13.891110398809047, 23.691009019459305],\n            [-12.50096269372537, 24.7701162785782],\n            [-12.03075883630163, 26.030866197203068],\n            [-11.718219773800357, 26.104091701760623],\n            [-11.392554897497007, 26.883423977154393],\n            [-10.551262579785273, 26.990807603456886],\n            [-10.189424200877582, 26.860944729107405],\n            [-9.735343390328879, 26.860944729107405],\n            [-9.41303748212448, 27.088476060488574],\n            [-8.794883999049077, 27.120696316022507],\n            [-8.817828334986672, 27.656425889592356],\n            [-8.665589565454809, 27.656425889592356]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Republic of the Congo\",\n        \"sov_a3\": \"COG\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Republic of the Congo\",\n        \"adm0_a3\": \"COG\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Republic of the Congo\",\n        \"gu_a3\": \"COG\",\n        \"su_dif\": 0,\n        \"subunit\": \"Republic of the Congo\",\n        \"su_a3\": \"COG\",\n        \"brk_diff\": 0,\n        \"name\": \"Congo\",\n        \"name_long\": \"Republic of the Congo\",\n        \"brk_a3\": \"COG\",\n        \"brk_name\": \"Republic of the Congo\",\n        \"brk_group\": null,\n        \"abbrev\": \"Rep. Congo\",\n        \"postal\": \"CG\",\n        \"formal_en\": \"Republic of the Congo\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Congo, Republic of the\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Congo, Rep.\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 10,\n        \"pop_est\": 5380508,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 12267,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"CF\",\n        \"iso_a2\": \"CG\",\n        \"iso_a2_eh\": \"CG\",\n        \"iso_a3\": \"COG\",\n        \"iso_a3_eh\": \"COG\",\n        \"iso_n3\": \"178\",\n        \"iso_n3_eh\": \"178\",\n        \"un_a3\": \"178\",\n        \"wb_a2\": \"CG\",\n        \"wb_a3\": \"COG\",\n        \"woe_id\": 23424779,\n        \"woe_id_eh\": 23424779,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"COG\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"COG\",\n        \"adm0_a3_us\": \"COG\",\n        \"adm0_a3_fr\": \"COG\",\n        \"adm0_a3_ru\": \"COG\",\n        \"adm0_a3_es\": \"COG\",\n        \"adm0_a3_cn\": \"COG\",\n        \"adm0_a3_tw\": \"COG\",\n        \"adm0_a3_in\": \"COG\",\n        \"adm0_a3_np\": \"COG\",\n        \"adm0_a3_pk\": \"COG\",\n        \"adm0_a3_de\": \"COG\",\n        \"adm0_a3_gb\": \"COG\",\n        \"adm0_a3_br\": \"COG\",\n        \"adm0_a3_il\": \"COG\",\n        \"adm0_a3_ps\": \"COG\",\n        \"adm0_a3_sa\": \"COG\",\n        \"adm0_a3_eg\": \"COG\",\n        \"adm0_a3_ma\": \"COG\",\n        \"adm0_a3_pt\": \"COG\",\n        \"adm0_a3_ar\": \"COG\",\n        \"adm0_a3_jp\": \"COG\",\n        \"adm0_a3_ko\": \"COG\",\n        \"adm0_a3_vn\": \"COG\",\n        \"adm0_a3_tr\": \"COG\",\n        \"adm0_a3_id\": \"COG\",\n        \"adm0_a3_pl\": \"COG\",\n        \"adm0_a3_gr\": \"COG\",\n        \"adm0_a3_it\": \"COG\",\n        \"adm0_a3_nl\": \"COG\",\n        \"adm0_a3_se\": \"COG\",\n        \"adm0_a3_bd\": \"COG\",\n        \"adm0_a3_ua\": \"COG\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Middle Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 5,\n        \"long_len\": 21,\n        \"abbrev_len\": 10,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 15.9005,\n        \"label_y\": 0.142331,\n        \"ne_id\": 1159320515,\n        \"wikidataid\": \"Q971\",\n        \"name_ar\": \"جمهورية الكونغو\",\n        \"name_bn\": \"কঙ্গো প্রজাতন্ত্র\",\n        \"name_de\": \"Republik Kongo\",\n        \"name_en\": \"Republic of the Congo\",\n        \"name_es\": \"República del Congo\",\n        \"name_fa\": \"جمهوری کنگو\",\n        \"name_fr\": \"République du Congo\",\n        \"name_el\": \"Δημοκρατία του Κονγκό\",\n        \"name_he\": \"הרפובליקה של קונגו\",\n        \"name_hi\": \"कांगो गणराज्य\",\n        \"name_hu\": \"Kongói Köztársaság\",\n        \"name_id\": \"Republik Kongo\",\n        \"name_it\": \"Repubblica del Congo\",\n        \"name_ja\": \"コンゴ共和国\",\n        \"name_ko\": \"콩고 공화국\",\n        \"name_nl\": \"Congo-Brazzaville\",\n        \"name_pl\": \"Kongo\",\n        \"name_pt\": \"República do Congo\",\n        \"name_ru\": \"Республика Конго\",\n        \"name_sv\": \"Kongo-Brazzaville\",\n        \"name_tr\": \"Kongo Cumhuriyeti\",\n        \"name_uk\": \"Республіка Конго\",\n        \"name_ur\": \"جمہوریہ کانگو\",\n        \"name_vi\": \"Cộng hòa Congo\",\n        \"name_zh\": \"刚果共和国\",\n        \"name_zht\": \"剛果共和國\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"COG.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [18.45306521980993, 3.504385891123349],\n            [18.393792351971143, 2.90044342692822],\n            [18.094275750407434, 2.365721543788055],\n            [17.898835483479587, 1.741831976728278],\n            [17.774191928791566, 0.855658677571085],\n            [17.826540154703252, 0.288923244626105],\n            [17.66355268725468, -0.058083998213817],\n            [17.638644646889986, -0.424831638189247],\n            [17.523716261472856, -0.743830254726987],\n            [16.865306837642123, -1.225816338713287],\n            [16.407091912510054, -1.740927015798682],\n            [15.972803175529151, -2.712392266453612],\n            [16.0062895036543, -3.535132744972529],\n            [15.753540073314753, -3.855164890156097],\n            [15.170991652088444, -4.343507175314301],\n            [14.582603794013181, -4.97023894615014],\n            [14.209034864975223, -4.793092136253598],\n            [14.144956088933299, -4.510008640158716],\n            [13.600234816144678, -4.50013844159097],\n            [13.258240187237048, -4.882957452009165],\n            [12.995517205465177, -4.781103203961884],\n            [12.620759718484493, -4.438023369976136],\n            [12.318607618873926, -4.606230157086188],\n            [11.91496300624209, -5.037986748884791],\n            [11.093772820691925, -3.978826592630547],\n            [11.855121697648116, -3.426870619321051],\n            [11.478038771214303, -2.765618991714241],\n            [11.820963575903193, -2.514161472181982],\n            [12.495702752338161, -2.391688327650243],\n            [12.575284458067642, -1.948511244315135],\n            [13.109618767965628, -2.428740329603514],\n            [13.99240726080771, -2.4708049454891],\n            [14.299210239324566, -1.998275648612214],\n            [14.425455763413595, -1.333406670744971],\n            [14.316418491277744, -0.552627455247048],\n            [13.843320753645656, 0.038757635901149],\n            [14.276265903386957, 1.196929836426619],\n            [14.026668735417218, 1.395677395021153],\n            [13.282631463278818, 1.31418366129688],\n            [13.003113641012078, 1.83089630778332],\n            [13.075822381246752, 2.267097072759015],\n            [14.33781253424658, 2.227874660649491],\n            [15.146341993885244, 1.964014797367184],\n            [15.940918816805066, 1.727672634280296],\n            [16.012852410555354, 2.267639675298085],\n            [16.537058139724138, 3.198254706226279],\n            [17.133042433346304, 3.728196519379452],\n            [17.809900343505262, 3.56019643799857],\n            [18.45306521980993, 3.504385891123349]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Democratic Republic of the Congo\",\n        \"sov_a3\": \"COD\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Democratic Republic of the Congo\",\n        \"adm0_a3\": \"COD\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Democratic Republic of the Congo\",\n        \"gu_a3\": \"COD\",\n        \"su_dif\": 0,\n        \"subunit\": \"Democratic Republic of the Congo\",\n        \"su_a3\": \"COD\",\n        \"brk_diff\": 0,\n        \"name\": \"Dem. Rep. Congo\",\n        \"name_long\": \"Democratic Republic of the Congo\",\n        \"brk_a3\": \"COD\",\n        \"brk_name\": \"Democratic Republic of the Congo\",\n        \"brk_group\": null,\n        \"abbrev\": \"D.R.C.\",\n        \"postal\": \"DRC\",\n        \"formal_en\": \"Democratic Republic of the Congo\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Congo, Democratic Republic of the\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Congo, Dem. Rep.\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 7,\n        \"pop_est\": 86790567,\n        \"pop_rank\": 16,\n        \"pop_year\": 2019,\n        \"gdp_md\": 50400,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"CG\",\n        \"iso_a2\": \"CD\",\n        \"iso_a2_eh\": \"CD\",\n        \"iso_a3\": \"COD\",\n        \"iso_a3_eh\": \"COD\",\n        \"iso_n3\": \"180\",\n        \"iso_n3_eh\": \"180\",\n        \"un_a3\": \"180\",\n        \"wb_a2\": \"ZR\",\n        \"wb_a3\": \"ZAR\",\n        \"woe_id\": 23424780,\n        \"woe_id_eh\": 23424780,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"COD\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"COD\",\n        \"adm0_a3_us\": \"COD\",\n        \"adm0_a3_fr\": \"COD\",\n        \"adm0_a3_ru\": \"COD\",\n        \"adm0_a3_es\": \"COD\",\n        \"adm0_a3_cn\": \"COD\",\n        \"adm0_a3_tw\": \"COD\",\n        \"adm0_a3_in\": \"COD\",\n        \"adm0_a3_np\": \"COD\",\n        \"adm0_a3_pk\": \"COD\",\n        \"adm0_a3_de\": \"COD\",\n        \"adm0_a3_gb\": \"COD\",\n        \"adm0_a3_br\": \"COD\",\n        \"adm0_a3_il\": \"COD\",\n        \"adm0_a3_ps\": \"COD\",\n        \"adm0_a3_sa\": \"COD\",\n        \"adm0_a3_eg\": \"COD\",\n        \"adm0_a3_ma\": \"COD\",\n        \"adm0_a3_pt\": \"COD\",\n        \"adm0_a3_ar\": \"COD\",\n        \"adm0_a3_jp\": \"COD\",\n        \"adm0_a3_ko\": \"COD\",\n        \"adm0_a3_vn\": \"COD\",\n        \"adm0_a3_tr\": \"COD\",\n        \"adm0_a3_id\": \"COD\",\n        \"adm0_a3_pl\": \"COD\",\n        \"adm0_a3_gr\": \"COD\",\n        \"adm0_a3_it\": \"COD\",\n        \"adm0_a3_nl\": \"COD\",\n        \"adm0_a3_se\": \"COD\",\n        \"adm0_a3_bd\": \"COD\",\n        \"adm0_a3_ua\": \"COD\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Middle Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 15,\n        \"long_len\": 32,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2,\n        \"max_label\": 7,\n        \"label_x\": 23.458829,\n        \"label_y\": -1.858167,\n        \"ne_id\": 1159320513,\n        \"wikidataid\": \"Q974\",\n        \"name_ar\": \"جمهورية الكونغو الديمقراطية\",\n        \"name_bn\": \"গণতান্ত্রিক কঙ্গো প্রজাতন্ত্র\",\n        \"name_de\": \"Demokratische Republik Kongo\",\n        \"name_en\": \"Democratic Republic of the Congo\",\n        \"name_es\": \"República Democrática del Congo\",\n        \"name_fa\": \"جمهوری دموکراتیک کنگو\",\n        \"name_fr\": \"République démocratique du Congo\",\n        \"name_el\": \"Λαϊκή Δημοκρατία του Κονγκό\",\n        \"name_he\": \"הרפובליקה הדמוקרטית של קונגו\",\n        \"name_hi\": \"कांगो लोकतान्त्रिक गणराज्य\",\n        \"name_hu\": \"Kongói Demokratikus Köztársaság\",\n        \"name_id\": \"Republik Demokratik Kongo\",\n        \"name_it\": \"Repubblica Democratica del Congo\",\n        \"name_ja\": \"コンゴ民主共和国\",\n        \"name_ko\": \"콩고 민주 공화국\",\n        \"name_nl\": \"Congo-Kinshasa\",\n        \"name_pl\": \"Demokratyczna Republika Konga\",\n        \"name_pt\": \"República Democrática do Congo\",\n        \"name_ru\": \"Демократическая Республика Конго\",\n        \"name_sv\": \"Kongo-Kinshasa\",\n        \"name_tr\": \"Demokratik Kongo Cumhuriyeti\",\n        \"name_uk\": \"Демократична Республіка Конго\",\n        \"name_ur\": \"جمہوری جمہوریہ کانگو\",\n        \"name_vi\": \"Cộng hòa Dân chủ Congo\",\n        \"name_zh\": \"刚果民主共和国\",\n        \"name_zht\": \"剛果民主共和國\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"COD.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [29.339997592900346, -4.499983412294092],\n            [29.519986606572928, -5.419978936386315],\n            [29.419992710088167, -5.939998874539434],\n            [29.620032179490014, -6.520015150583426],\n            [30.199996779101696, -7.079980970898163],\n            [30.74001549655179, -8.340007419470915],\n            [30.740009731422095, -8.34000593035372],\n            [30.346086053190817, -8.238256524288218],\n            [29.00291222506047, -8.407031752153472],\n            [28.734866570762502, -8.526559340044578],\n            [28.449871046672826, -9.164918308146085],\n            [28.67368167492893, -9.605924981324932],\n            [28.49606977714177, -10.789883721564046],\n            [28.372253045370428, -11.793646742401393],\n            [28.642417433392353, -11.971568698782315],\n            [29.34154788586909, -12.360743910372413],\n            [29.61600141777123, -12.178894545137311],\n            [29.69961388521949, -13.257226657771831],\n            [28.934285922976837, -13.248958428605135],\n            [28.523561639121027, -12.698604424696683],\n            [28.155108676879987, -12.272480564017897],\n            [27.388798862423783, -12.132747491100666],\n            [27.164419793412463, -11.608748467661075],\n            [26.553087599399618, -11.924439792532127],\n            [25.752309604604733, -11.784965101776358],\n            [25.418118116973204, -11.330935967659961],\n            [24.78316979340295, -11.238693536018964],\n            [24.31451622894795, -11.26282642989927],\n            [24.25715538910399, -10.951992689663657],\n            [23.912215203555718, -10.926826267137514],\n            [23.45679080576744, -10.867863457892483],\n            [22.83734541188474, -11.01762175867433],\n            [22.402798292742375, -10.993075453335692],\n            [22.155268182064308, -11.084801120653772],\n            [22.208753289486395, -9.894796237836509],\n            [21.875181919042348, -9.523707777548566],\n            [21.8018013851879, -8.90870655684298],\n            [21.949130893652043, -8.305900974158277],\n            [21.74645592620331, -7.920084730667149],\n            [21.7281107927397, -7.290872491081302],\n            [20.5147481625265, -7.299605808138629],\n            [20.6018229509383, -6.939317722199682],\n            [20.091621534920648, -6.943090101756994],\n            [20.037723016040218, -7.116361179231646],\n            [19.41750247567316, -7.155428562044299],\n            [19.16661339689611, -7.738183688999754],\n            [19.01675174324967, -7.988245944860132],\n            [18.464175652752687, -7.847014255406443],\n            [18.13422163256905, -7.987677504104923],\n            [17.472970004962235, -8.0685511206417],\n            [17.08999596524717, -7.545688978712526],\n            [16.8601908708452, -7.222297865429987],\n            [16.573179965896145, -6.622644545115087],\n            [16.326528354567046, -5.877470391466268],\n            [13.375597364971895, -5.864241224799549],\n            [13.024869419006961, -5.984388929878158],\n            [12.735171339578699, -5.965682061388499],\n            [12.32243167486351, -6.10009246177966],\n            [12.182336866920252, -5.789930515163839],\n            [12.436688266660868, -5.684303887559246],\n            [12.468004184629736, -5.248361504745005],\n            [12.63161176926579, -4.991271254092936],\n            [12.995517205465177, -4.781103203961884],\n            [13.258240187237048, -4.882957452009165],\n            [13.600234816144678, -4.50013844159097],\n            [14.144956088933299, -4.510008640158716],\n            [14.209034864975223, -4.793092136253598],\n            [14.582603794013181, -4.97023894615014],\n            [15.170991652088444, -4.343507175314301],\n            [15.753540073314753, -3.855164890156097],\n            [16.0062895036543, -3.535132744972529],\n            [15.972803175529151, -2.712392266453612],\n            [16.407091912510054, -1.740927015798682],\n            [16.865306837642123, -1.225816338713287],\n            [17.523716261472856, -0.743830254726987],\n            [17.638644646889986, -0.424831638189247],\n            [17.66355268725468, -0.058083998213817],\n            [17.826540154703252, 0.288923244626105],\n            [17.774191928791566, 0.855658677571085],\n            [17.898835483479587, 1.741831976728278],\n            [18.094275750407434, 2.365721543788055],\n            [18.393792351971143, 2.90044342692822],\n            [18.45306521980993, 3.504385891123349],\n            [18.54298221199778, 4.201785183118318],\n            [18.93231245288476, 4.709506130385975],\n            [19.46778364429315, 5.03152781821278],\n            [20.290679152108936, 4.691677761245288],\n            [20.927591180106276, 4.322785549329737],\n            [21.659122755630023, 4.22434194581372],\n            [22.405123732195538, 4.029160061047321],\n            [22.70412356943629, 4.633050848810157],\n            [22.841479526468106, 4.710126247573484],\n            [23.29721398285014, 4.609693101414223],\n            [24.410531040146253, 5.10878408448913],\n            [24.805028924262416, 4.89724660890235],\n            [25.12883344900328, 4.92724477784779],\n            [25.278798455514305, 5.170408229997192],\n            [25.650455356557472, 5.256087754737123],\n            [26.402760857862543, 5.150874538590871],\n            [27.04406538260471, 5.127852688004836],\n            [27.37422610851749, 5.233944403500061],\n            [27.97997724784281, 4.408413397637375],\n            [28.428993768026913, 4.287154649264494],\n            [28.696677687298802, 4.455077215996937],\n            [29.1590784034465, 4.389267279473231],\n            [29.71599531425602, 4.600804755060153],\n            [29.953500197069474, 4.173699042167684],\n            [30.833852421715427, 3.509171604222463],\n            [30.83385989759381, 3.509165961110341],\n            [30.77334679538004, 2.339883327642127],\n            [31.174149204235817, 2.204465236821264],\n            [30.85267011894806, 1.849396470543809],\n            [30.46850752129029, 1.583805446779706],\n            [30.086153598762706, 1.062312730306289],\n            [29.875778842902434, 0.597379868976361],\n            [29.819503208136638, -0.205310153813372],\n            [29.58783776217217, -0.587405694179381],\n            [29.579466180140884, -1.341313164885626],\n            [29.291886834436614, -1.620055840667987],\n            [29.254834832483343, -2.215109958508911],\n            [29.117478875451553, -2.292211195488385],\n            [29.024926385216787, -2.839257907730158],\n            [29.276383904749053, -3.293907159034063],\n            [29.339997592900346, -4.499983412294092]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Namibia\",\n        \"sov_a3\": \"NAM\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Namibia\",\n        \"adm0_a3\": \"NAM\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Namibia\",\n        \"gu_a3\": \"NAM\",\n        \"su_dif\": 0,\n        \"subunit\": \"Namibia\",\n        \"su_a3\": \"NAM\",\n        \"brk_diff\": 0,\n        \"name\": \"Namibia\",\n        \"name_long\": \"Namibia\",\n        \"brk_a3\": \"NAM\",\n        \"brk_name\": \"Namibia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Nam.\",\n        \"postal\": \"NA\",\n        \"formal_en\": \"Republic of Namibia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Namibia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Namibia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 7,\n        \"pop_est\": 2494530,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 12366,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"WA\",\n        \"iso_a2\": \"NA\",\n        \"iso_a2_eh\": \"NA\",\n        \"iso_a3\": \"NAM\",\n        \"iso_a3_eh\": \"NAM\",\n        \"iso_n3\": \"516\",\n        \"iso_n3_eh\": \"516\",\n        \"un_a3\": \"516\",\n        \"wb_a2\": \"NA\",\n        \"wb_a3\": \"NAM\",\n        \"woe_id\": 23424987,\n        \"woe_id_eh\": 23424987,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"NAM\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"NAM\",\n        \"adm0_a3_us\": \"NAM\",\n        \"adm0_a3_fr\": \"NAM\",\n        \"adm0_a3_ru\": \"NAM\",\n        \"adm0_a3_es\": \"NAM\",\n        \"adm0_a3_cn\": \"NAM\",\n        \"adm0_a3_tw\": \"NAM\",\n        \"adm0_a3_in\": \"NAM\",\n        \"adm0_a3_np\": \"NAM\",\n        \"adm0_a3_pk\": \"NAM\",\n        \"adm0_a3_de\": \"NAM\",\n        \"adm0_a3_gb\": \"NAM\",\n        \"adm0_a3_br\": \"NAM\",\n        \"adm0_a3_il\": \"NAM\",\n        \"adm0_a3_ps\": \"NAM\",\n        \"adm0_a3_sa\": \"NAM\",\n        \"adm0_a3_eg\": \"NAM\",\n        \"adm0_a3_ma\": \"NAM\",\n        \"adm0_a3_pt\": \"NAM\",\n        \"adm0_a3_ar\": \"NAM\",\n        \"adm0_a3_jp\": \"NAM\",\n        \"adm0_a3_ko\": \"NAM\",\n        \"adm0_a3_vn\": \"NAM\",\n        \"adm0_a3_tr\": \"NAM\",\n        \"adm0_a3_id\": \"NAM\",\n        \"adm0_a3_pl\": \"NAM\",\n        \"adm0_a3_gr\": \"NAM\",\n        \"adm0_a3_it\": \"NAM\",\n        \"adm0_a3_nl\": \"NAM\",\n        \"adm0_a3_se\": \"NAM\",\n        \"adm0_a3_bd\": \"NAM\",\n        \"adm0_a3_ua\": \"NAM\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Southern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 7.5,\n        \"label_x\": 17.108166,\n        \"label_y\": -20.575298,\n        \"ne_id\": 1159321085,\n        \"wikidataid\": \"Q1030\",\n        \"name_ar\": \"ناميبيا\",\n        \"name_bn\": \"নামিবিয়া\",\n        \"name_de\": \"Namibia\",\n        \"name_en\": \"Namibia\",\n        \"name_es\": \"Namibia\",\n        \"name_fa\": \"نامیبیا\",\n        \"name_fr\": \"Namibie\",\n        \"name_el\": \"Ναμίμπια\",\n        \"name_he\": \"נמיביה\",\n        \"name_hi\": \"नामीबिया\",\n        \"name_hu\": \"Namíbia\",\n        \"name_id\": \"Namibia\",\n        \"name_it\": \"Namibia\",\n        \"name_ja\": \"ナミビア\",\n        \"name_ko\": \"나미비아\",\n        \"name_nl\": \"Namibië\",\n        \"name_pl\": \"Namibia\",\n        \"name_pt\": \"Namíbia\",\n        \"name_ru\": \"Намибия\",\n        \"name_sv\": \"Namibia\",\n        \"name_tr\": \"Namibya\",\n        \"name_uk\": \"Намібія\",\n        \"name_ur\": \"نمیبیا\",\n        \"name_vi\": \"Namibia\",\n        \"name_zh\": \"纳米比亚\",\n        \"name_zht\": \"納米比亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"NAM.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [19.895767856534434, -24.76779021576059],\n            [19.894734327888614, -28.461104831660776],\n            [19.002127312911085, -28.972443129188868],\n            [18.464899122804752, -29.04546192801728],\n            [17.83615197110953, -28.85637786226132],\n            [17.387497185951503, -28.78351409272978],\n            [17.218928663815404, -28.35594329194681],\n            [16.824017368240902, -28.08216155366447],\n            [16.344976840895242, -28.5767050106977],\n            [15.601818068105816, -27.821247247022804],\n            [15.21047244635946, -27.090955905874047],\n            [14.989710727608553, -26.117371921495156],\n            [14.743214145576331, -25.39292001719538],\n            [14.408144158595833, -23.853014011329847],\n            [14.385716586981149, -22.65665292734069],\n            [14.257714064194175, -22.111208184499958],\n            [13.86864220546866, -21.699036960539978],\n            [13.35249799973744, -20.872834161057504],\n            [12.826845330464494, -19.673165785401665],\n            [12.608564080463621, -19.0453488094877],\n            [11.794918654028066, -18.069129327061916],\n            [11.734198846085121, -17.301889336824473],\n            [12.215461460019355, -17.111668389558083],\n            [12.814081251688407, -16.94134286872407],\n            [13.462362094789967, -16.971211846588773],\n            [14.05850141770901, -17.423380629142663],\n            [14.209706658595024, -17.35310068122572],\n            [18.263309360434164, -17.309950860262006],\n            [18.956186964603603, -17.789094740472258],\n            [21.377176141045567, -17.930636488519696],\n            [23.215048455506064, -17.523116143465984],\n            [24.033861525170778, -17.295843194246324],\n            [24.682349074001507, -17.353410739819473],\n            [25.07695031098226, -17.57882333747662],\n            [25.08444339366457, -17.661815687737374],\n            [24.520705193792537, -17.887124932529936],\n            [24.217364536239213, -17.88934701911849],\n            [23.579005568137717, -18.28126108162006],\n            [23.1968583513393, -17.869038181227786],\n            [21.655040317478978, -18.219146010005225],\n            [20.910641310314535, -18.252218926672022],\n            [20.88113406747587, -21.814327080983148],\n            [19.89545779794068, -21.84915699634787],\n            [19.895767856534434, -24.76779021576059]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"South Africa\",\n        \"sov_a3\": \"ZAF\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"South Africa\",\n        \"adm0_a3\": \"ZAF\",\n        \"geou_dif\": 0,\n        \"geounit\": \"South Africa\",\n        \"gu_a3\": \"ZAF\",\n        \"su_dif\": 0,\n        \"subunit\": \"South Africa\",\n        \"su_a3\": \"ZAF\",\n        \"brk_diff\": 0,\n        \"name\": \"South Africa\",\n        \"name_long\": \"South Africa\",\n        \"brk_a3\": \"ZAF\",\n        \"brk_name\": \"South Africa\",\n        \"brk_group\": null,\n        \"abbrev\": \"S.Af.\",\n        \"postal\": \"ZA\",\n        \"formal_en\": \"Republic of South Africa\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"South Africa\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"South Africa\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 2,\n        \"pop_est\": 58558270,\n        \"pop_rank\": 16,\n        \"pop_year\": 2019,\n        \"gdp_md\": 351431,\n        \"gdp_year\": 2019,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"SF\",\n        \"iso_a2\": \"ZA\",\n        \"iso_a2_eh\": \"ZA\",\n        \"iso_a3\": \"ZAF\",\n        \"iso_a3_eh\": \"ZAF\",\n        \"iso_n3\": \"710\",\n        \"iso_n3_eh\": \"710\",\n        \"un_a3\": \"710\",\n        \"wb_a2\": \"ZA\",\n        \"wb_a3\": \"ZAF\",\n        \"woe_id\": 23424942,\n        \"woe_id_eh\": 23424942,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"ZAF\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"ZAF\",\n        \"adm0_a3_us\": \"ZAF\",\n        \"adm0_a3_fr\": \"ZAF\",\n        \"adm0_a3_ru\": \"ZAF\",\n        \"adm0_a3_es\": \"ZAF\",\n        \"adm0_a3_cn\": \"ZAF\",\n        \"adm0_a3_tw\": \"ZAF\",\n        \"adm0_a3_in\": \"ZAF\",\n        \"adm0_a3_np\": \"ZAF\",\n        \"adm0_a3_pk\": \"ZAF\",\n        \"adm0_a3_de\": \"ZAF\",\n        \"adm0_a3_gb\": \"ZAF\",\n        \"adm0_a3_br\": \"ZAF\",\n        \"adm0_a3_il\": \"ZAF\",\n        \"adm0_a3_ps\": \"ZAF\",\n        \"adm0_a3_sa\": \"ZAF\",\n        \"adm0_a3_eg\": \"ZAF\",\n        \"adm0_a3_ma\": \"ZAF\",\n        \"adm0_a3_pt\": \"ZAF\",\n        \"adm0_a3_ar\": \"ZAF\",\n        \"adm0_a3_jp\": \"ZAF\",\n        \"adm0_a3_ko\": \"ZAF\",\n        \"adm0_a3_vn\": \"ZAF\",\n        \"adm0_a3_tr\": \"ZAF\",\n        \"adm0_a3_id\": \"ZAF\",\n        \"adm0_a3_pl\": \"ZAF\",\n        \"adm0_a3_gr\": \"ZAF\",\n        \"adm0_a3_it\": \"ZAF\",\n        \"adm0_a3_nl\": \"ZAF\",\n        \"adm0_a3_se\": \"ZAF\",\n        \"adm0_a3_bd\": \"ZAF\",\n        \"adm0_a3_ua\": \"ZAF\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Southern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 12,\n        \"long_len\": 12,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 6.7,\n        \"label_x\": 23.665734,\n        \"label_y\": -29.708776,\n        \"ne_id\": 1159321431,\n        \"wikidataid\": \"Q258\",\n        \"name_ar\": \"جنوب أفريقيا\",\n        \"name_bn\": \"দক্ষিণ আফ্রিকা\",\n        \"name_de\": \"Südafrika\",\n        \"name_en\": \"South Africa\",\n        \"name_es\": \"Sudáfrica\",\n        \"name_fa\": \"آفریقای جنوبی\",\n        \"name_fr\": \"Afrique du Sud\",\n        \"name_el\": \"Νότια Αφρική\",\n        \"name_he\": \"דרום אפריקה\",\n        \"name_hi\": \"दक्षिण अफ़्रीका\",\n        \"name_hu\": \"Dél-afrikai Köztársaság\",\n        \"name_id\": \"Afrika Selatan\",\n        \"name_it\": \"Sudafrica\",\n        \"name_ja\": \"南アフリカ共和国\",\n        \"name_ko\": \"남아프리카 공화국\",\n        \"name_nl\": \"Zuid-Afrika\",\n        \"name_pl\": \"Południowa Afryka\",\n        \"name_pt\": \"África do Sul\",\n        \"name_ru\": \"ЮАР\",\n        \"name_sv\": \"Sydafrika\",\n        \"name_tr\": \"Güney Afrika Cumhuriyeti\",\n        \"name_uk\": \"Південно-Африканська Республіка\",\n        \"name_ur\": \"جنوبی افریقا\",\n        \"name_vi\": \"Cộng hòa Nam Phi\",\n        \"name_zh\": \"南非\",\n        \"name_zht\": \"南非\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"ZAF.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [16.344976840895242, -28.5767050106977],\n            [16.824017368240902, -28.08216155366447],\n            [17.218928663815404, -28.35594329194681],\n            [17.387497185951503, -28.78351409272978],\n            [17.83615197110953, -28.85637786226132],\n            [18.464899122804752, -29.04546192801728],\n            [19.002127312911085, -28.972443129188868],\n            [19.894734327888614, -28.461104831660776],\n            [19.895767856534434, -24.76779021576059],\n            [20.16572553882719, -24.91796192800077],\n            [20.75860924651184, -25.86813648855145],\n            [20.66647016773544, -26.477453301704923],\n            [20.88960900237174, -26.828542982695915],\n            [21.605896030369394, -26.726533705351756],\n            [22.105968865657868, -26.280256036079138],\n            [22.57953169118059, -25.979447523708146],\n            [22.8242712745149, -25.50045867279477],\n            [23.312096795350186, -25.26868987396572],\n            [23.73356977712271, -25.390129489851617],\n            [24.211266717228796, -25.670215752873574],\n            [25.025170525825786, -25.7196700985769],\n            [25.66466637543772, -25.486816094669713],\n            [25.76584882986521, -25.17484547292368],\n            [25.94165205252216, -24.69637338633322],\n            [26.4857532081233, -24.616326592713104],\n            [26.786406691197413, -24.240690606383485],\n            [27.119409620886245, -23.574323011979775],\n            [28.01723595552525, -22.82775359465908],\n            [29.43218834810904, -22.091312758067588],\n            [29.839036899542972, -22.102216485281176],\n            [30.322883335091774, -22.271611830333935],\n            [30.65986535006709, -22.151567478119915],\n            [31.19140913262129, -22.2515096981724],\n            [31.670397983534656, -23.658969008073864],\n            [31.930588820124253, -24.36941659922254],\n            [31.75240848158188, -25.484283949487413],\n            [31.83777794772806, -25.84333180105135],\n            [31.333157586397903, -25.66019052500895],\n            [31.04407962415715, -25.731452325139443],\n            [30.949666782359913, -26.02264902110415],\n            [30.67660851412964, -26.398078301704608],\n            [30.68596194837448, -26.743845310169533],\n            [31.28277306491333, -27.285879408478998],\n            [31.86806033705108, -27.177927341421277],\n            [32.07166548028107, -26.73382008230491],\n            [32.830120477028885, -26.742191664336197],\n            [32.580264926897684, -27.470157566031816],\n            [32.46213260267845, -28.301011244420557],\n            [32.20338870619304, -28.75240488049007],\n            [31.521001417778876, -29.257386976846256],\n            [31.325561150851, -29.401977634398914],\n            [30.901762729625347, -29.909956963828037],\n            [30.62281334811382, -30.42377573010613],\n            [30.05571618014278, -31.140269463832958],\n            [28.92555260591954, -32.1720411109725],\n            [28.2197558936771, -32.771952813448856],\n            [27.464608188595975, -33.2269637997788],\n            [26.419452345492825, -33.61495045342619],\n            [25.90966434093349, -33.6670402971764],\n            [25.780628289500697, -33.94464609144834],\n            [25.172861769315972, -33.796851495093584],\n            [24.677853224392123, -33.98717579522455],\n            [23.594043409934642, -33.794474379208154],\n            [22.988188917744736, -33.91643075941698],\n            [22.574157342222236, -33.86408253350531],\n            [21.542799106541025, -34.258838799782936],\n            [20.689052768647002, -34.417175388325234],\n            [20.071261020597632, -34.79513681410799],\n            [19.61640506356457, -34.81916635512371],\n            [19.193278435958717, -34.46259897230979],\n            [18.85531456876987, -34.444305515278465],\n            [18.42464318204938, -33.99787281670897],\n            [18.377410922934615, -34.13652068454807],\n            [18.24449913907992, -33.86775156019803],\n            [18.250080193767445, -33.28143075941444],\n            [17.92519046394844, -32.61129078545343],\n            [18.247909783611192, -32.42913136162457],\n            [18.22176150887148, -31.66163298922567],\n            [17.56691775886887, -30.725721123987547],\n            [17.064416131262703, -29.878641045859162],\n            [17.062917514726223, -29.875953871379984],\n            [16.344976840895242, -28.5767050106977]\n          ],\n          [\n            [28.978262566857243, -28.95559661226171],\n            [28.541700066855498, -28.64750172293757],\n            [28.074338413207784, -28.851468601193588],\n            [27.532511020627478, -29.24271087007536],\n            [26.999261915807637, -29.875953871379984],\n            [27.749397006956485, -30.645105889612225],\n            [28.107204624145425, -30.54573211031495],\n            [28.29106937023991, -30.2262167294543],\n            [28.84839969250774, -30.070050551068256],\n            [29.018415154748027, -29.74376555757737],\n            [29.32516645683259, -29.257386976846256],\n            [28.978262566857243, -28.95559661226171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Libya\",\n        \"sov_a3\": \"LBY\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Libya\",\n        \"adm0_a3\": \"LBY\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Libya\",\n        \"gu_a3\": \"LBY\",\n        \"su_dif\": 0,\n        \"subunit\": \"Libya\",\n        \"su_a3\": \"LBY\",\n        \"brk_diff\": 0,\n        \"name\": \"Libya\",\n        \"name_long\": \"Libya\",\n        \"brk_a3\": \"LBY\",\n        \"brk_name\": \"Libya\",\n        \"brk_group\": null,\n        \"abbrev\": \"Libya\",\n        \"postal\": \"LY\",\n        \"formal_en\": \"Libya\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Libya\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Libya\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 11,\n        \"pop_est\": 6777452,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 52091,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"LY\",\n        \"iso_a2\": \"LY\",\n        \"iso_a2_eh\": \"LY\",\n        \"iso_a3\": \"LBY\",\n        \"iso_a3_eh\": \"LBY\",\n        \"iso_n3\": \"434\",\n        \"iso_n3_eh\": \"434\",\n        \"un_a3\": \"434\",\n        \"wb_a2\": \"LY\",\n        \"wb_a3\": \"LBY\",\n        \"woe_id\": 23424882,\n        \"woe_id_eh\": 23424882,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"LBY\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"LBY\",\n        \"adm0_a3_us\": \"LBY\",\n        \"adm0_a3_fr\": \"LBY\",\n        \"adm0_a3_ru\": \"LBY\",\n        \"adm0_a3_es\": \"LBY\",\n        \"adm0_a3_cn\": \"LBY\",\n        \"adm0_a3_tw\": \"LBY\",\n        \"adm0_a3_in\": \"LBY\",\n        \"adm0_a3_np\": \"LBY\",\n        \"adm0_a3_pk\": \"LBY\",\n        \"adm0_a3_de\": \"LBY\",\n        \"adm0_a3_gb\": \"LBY\",\n        \"adm0_a3_br\": \"LBY\",\n        \"adm0_a3_il\": \"LBY\",\n        \"adm0_a3_ps\": \"LBY\",\n        \"adm0_a3_sa\": \"LBY\",\n        \"adm0_a3_eg\": \"LBY\",\n        \"adm0_a3_ma\": \"LBY\",\n        \"adm0_a3_pt\": \"LBY\",\n        \"adm0_a3_ar\": \"LBY\",\n        \"adm0_a3_jp\": \"LBY\",\n        \"adm0_a3_ko\": \"LBY\",\n        \"adm0_a3_vn\": \"LBY\",\n        \"adm0_a3_tr\": \"LBY\",\n        \"adm0_a3_id\": \"LBY\",\n        \"adm0_a3_pl\": \"LBY\",\n        \"adm0_a3_gr\": \"LBY\",\n        \"adm0_a3_it\": \"LBY\",\n        \"adm0_a3_nl\": \"LBY\",\n        \"adm0_a3_se\": \"LBY\",\n        \"adm0_a3_bd\": \"LBY\",\n        \"adm0_a3_ua\": \"LBY\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Northern Africa\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 18.011015,\n        \"label_y\": 26.638944,\n        \"ne_id\": 1159321017,\n        \"wikidataid\": \"Q1016\",\n        \"name_ar\": \"ليبيا\",\n        \"name_bn\": \"লিবিয়া\",\n        \"name_de\": \"Libyen\",\n        \"name_en\": \"Libya\",\n        \"name_es\": \"Libia\",\n        \"name_fa\": \"لیبی\",\n        \"name_fr\": \"Libye\",\n        \"name_el\": \"Λιβύη\",\n        \"name_he\": \"לוב\",\n        \"name_hi\": \"लीबिया\",\n        \"name_hu\": \"Líbia\",\n        \"name_id\": \"Libya\",\n        \"name_it\": \"Libia\",\n        \"name_ja\": \"リビア\",\n        \"name_ko\": \"리비아\",\n        \"name_nl\": \"Libië\",\n        \"name_pl\": \"Libia\",\n        \"name_pt\": \"Líbia\",\n        \"name_ru\": \"Ливия\",\n        \"name_sv\": \"Libyen\",\n        \"name_tr\": \"Libya\",\n        \"name_uk\": \"Лівія\",\n        \"name_ur\": \"لیبیا\",\n        \"name_vi\": \"Libya\",\n        \"name_zh\": \"利比亚\",\n        \"name_zht\": \"利比亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"LBY.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [25, 22],\n            [25.000000000000114, 20.00304],\n            [23.850000000000136, 20],\n            [23.83766000000014, 19.580470000000105],\n            [19.84926, 21.49509],\n            [15.86085, 23.40972],\n            [14.8513, 22.862950000000126],\n            [14.143870883855243, 22.491288967371133],\n            [13.581424594790462, 23.04050608976928],\n            [11.999505649471613, 23.47166840259645],\n            [11.560669386449005, 24.097909247325518],\n            [10.771363559622927, 24.56253205006175],\n            [10.303846876678362, 24.379313259370917],\n            [9.94826134607797, 24.936953640232517],\n            [9.910692579801776, 25.365454616796796],\n            [9.319410841518163, 26.094324856057455],\n            [9.716285841519664, 26.512206325785655],\n            [9.629056023811074, 27.14095347748092],\n            [9.756128370816782, 27.688258571884205],\n            [9.683884718472768, 28.1441738957792],\n            [9.859997999723447, 28.959989732371014],\n            [9.805634392952356, 29.424638373323376],\n            [9.482139926805274, 30.307556057246188],\n            [9.970017124072854, 30.53932485607524],\n            [10.056575148161699, 30.961831366493527],\n            [9.950225050505082, 31.376069647745258],\n            [10.636901482799487, 31.761420803345757],\n            [10.944789666394456, 32.081814683555365],\n            [11.432253452203696, 32.368903103152874],\n            [11.488787469131012, 33.13699575452324],\n            [12.66331, 32.79278],\n            [13.08326, 32.87882],\n            [13.91868, 32.71196],\n            [15.24563, 32.26508],\n            [15.71394, 31.37626],\n            [16.61162, 31.18218],\n            [18.02109, 30.76357],\n            [19.08641, 30.26639],\n            [19.57404, 30.52582],\n            [20.05335, 30.98576],\n            [19.82033, 31.751790000000142],\n            [20.13397, 32.2382],\n            [20.85452, 32.7068],\n            [21.54298, 32.8432],\n            [22.89576, 32.63858],\n            [23.2368, 32.19149],\n            [23.609130000000107, 32.18726],\n            [23.9275, 32.01667],\n            [24.92114, 31.89936],\n            [25.16482, 31.56915],\n            [24.80287, 31.08929],\n            [24.95762, 30.6616],\n            [24.70007, 30.04419],\n            [25, 29.23865452953346],\n            [25, 25.682499996361],\n            [25, 22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Tunisia\",\n        \"sov_a3\": \"TUN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Tunisia\",\n        \"adm0_a3\": \"TUN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Tunisia\",\n        \"gu_a3\": \"TUN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Tunisia\",\n        \"su_a3\": \"TUN\",\n        \"brk_diff\": 0,\n        \"name\": \"Tunisia\",\n        \"name_long\": \"Tunisia\",\n        \"brk_a3\": \"TUN\",\n        \"brk_name\": \"Tunisia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Tun.\",\n        \"postal\": \"TN\",\n        \"formal_en\": \"Republic of Tunisia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Tunisia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Tunisia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 2,\n        \"pop_est\": 11694719,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 38796,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"TS\",\n        \"iso_a2\": \"TN\",\n        \"iso_a2_eh\": \"TN\",\n        \"iso_a3\": \"TUN\",\n        \"iso_a3_eh\": \"TUN\",\n        \"iso_n3\": \"788\",\n        \"iso_n3_eh\": \"788\",\n        \"un_a3\": \"788\",\n        \"wb_a2\": \"TN\",\n        \"wb_a3\": \"TUN\",\n        \"woe_id\": 23424967,\n        \"woe_id_eh\": 23424967,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"TUN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"TUN\",\n        \"adm0_a3_us\": \"TUN\",\n        \"adm0_a3_fr\": \"TUN\",\n        \"adm0_a3_ru\": \"TUN\",\n        \"adm0_a3_es\": \"TUN\",\n        \"adm0_a3_cn\": \"TUN\",\n        \"adm0_a3_tw\": \"TUN\",\n        \"adm0_a3_in\": \"TUN\",\n        \"adm0_a3_np\": \"TUN\",\n        \"adm0_a3_pk\": \"TUN\",\n        \"adm0_a3_de\": \"TUN\",\n        \"adm0_a3_gb\": \"TUN\",\n        \"adm0_a3_br\": \"TUN\",\n        \"adm0_a3_il\": \"TUN\",\n        \"adm0_a3_ps\": \"TUN\",\n        \"adm0_a3_sa\": \"TUN\",\n        \"adm0_a3_eg\": \"TUN\",\n        \"adm0_a3_ma\": \"TUN\",\n        \"adm0_a3_pt\": \"TUN\",\n        \"adm0_a3_ar\": \"TUN\",\n        \"adm0_a3_jp\": \"TUN\",\n        \"adm0_a3_ko\": \"TUN\",\n        \"adm0_a3_vn\": \"TUN\",\n        \"adm0_a3_tr\": \"TUN\",\n        \"adm0_a3_id\": \"TUN\",\n        \"adm0_a3_pl\": \"TUN\",\n        \"adm0_a3_gr\": \"TUN\",\n        \"adm0_a3_it\": \"TUN\",\n        \"adm0_a3_nl\": \"TUN\",\n        \"adm0_a3_se\": \"TUN\",\n        \"adm0_a3_bd\": \"TUN\",\n        \"adm0_a3_ua\": \"TUN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Northern Africa\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 9.007881,\n        \"label_y\": 33.687263,\n        \"ne_id\": 1159321327,\n        \"wikidataid\": \"Q948\",\n        \"name_ar\": \"تونس\",\n        \"name_bn\": \"তিউনিসিয়া\",\n        \"name_de\": \"Tunesien\",\n        \"name_en\": \"Tunisia\",\n        \"name_es\": \"Túnez\",\n        \"name_fa\": \"تونس\",\n        \"name_fr\": \"Tunisie\",\n        \"name_el\": \"Τυνησία\",\n        \"name_he\": \"תוניסיה\",\n        \"name_hi\": \"ट्यूनिशिया\",\n        \"name_hu\": \"Tunézia\",\n        \"name_id\": \"Tunisia\",\n        \"name_it\": \"Tunisia\",\n        \"name_ja\": \"チュニジア\",\n        \"name_ko\": \"튀니지\",\n        \"name_nl\": \"Tunesië\",\n        \"name_pl\": \"Tunezja\",\n        \"name_pt\": \"Tunísia\",\n        \"name_ru\": \"Тунис\",\n        \"name_sv\": \"Tunisien\",\n        \"name_tr\": \"Tunus\",\n        \"name_uk\": \"Туніс\",\n        \"name_ur\": \"تونس\",\n        \"name_vi\": \"Tuy-ni-di\",\n        \"name_zh\": \"突尼斯\",\n        \"name_zht\": \"突尼西亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"TUN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.482139926805274, 30.307556057246188],\n            [9.05560265466815, 32.10269196220129],\n            [8.439102817426118, 32.50628489840082],\n            [8.430472853233368, 32.74833730725595],\n            [7.612641635782182, 33.34411489514896],\n            [7.524481642292244, 34.09737641045146],\n            [8.140981479534304, 34.65514598239379],\n            [8.376367628623768, 35.479876003555944],\n            [8.217824334352315, 36.433176988260286],\n            [8.420964389691676, 36.94642731378316],\n            [9.509993523810607, 37.349994411766545],\n            [10.210002475636317, 37.230001735984814],\n            [10.180650262094531, 36.724037787415085],\n            [11.02886722173335, 37.09210317641396],\n            [11.100025668999251, 36.899996039368915],\n            [10.600004510143094, 36.410000108377375],\n            [10.593286573945138, 35.94744436293281],\n            [10.939518670300687, 35.698984076473494],\n            [10.807847120821009, 34.83350718844919],\n            [10.149592726287125, 34.33077301689771],\n            [10.339658644256616, 33.78574168551532],\n            [10.856836378633687, 33.76874013929128],\n            [11.108500603895122, 33.293342800422195],\n            [11.488787469131012, 33.13699575452324],\n            [11.432253452203696, 32.368903103152874],\n            [10.944789666394456, 32.081814683555365],\n            [10.636901482799487, 31.761420803345757],\n            [9.950225050505082, 31.376069647745258],\n            [10.056575148161699, 30.961831366493527],\n            [9.970017124072854, 30.53932485607524],\n            [9.482139926805274, 30.307556057246188]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Zambia\",\n        \"sov_a3\": \"ZMB\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Zambia\",\n        \"adm0_a3\": \"ZMB\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Zambia\",\n        \"gu_a3\": \"ZMB\",\n        \"su_dif\": 0,\n        \"subunit\": \"Zambia\",\n        \"su_a3\": \"ZMB\",\n        \"brk_diff\": 0,\n        \"name\": \"Zambia\",\n        \"name_long\": \"Zambia\",\n        \"brk_a3\": \"ZMB\",\n        \"brk_name\": \"Zambia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Zambia\",\n        \"postal\": \"ZM\",\n        \"formal_en\": \"Republic of Zambia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Zambia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Zambia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 8,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 13,\n        \"pop_est\": 17861030,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 23309,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"ZA\",\n        \"iso_a2\": \"ZM\",\n        \"iso_a2_eh\": \"ZM\",\n        \"iso_a3\": \"ZMB\",\n        \"iso_a3_eh\": \"ZMB\",\n        \"iso_n3\": \"894\",\n        \"iso_n3_eh\": \"894\",\n        \"un_a3\": \"894\",\n        \"wb_a2\": \"ZM\",\n        \"wb_a3\": \"ZMB\",\n        \"woe_id\": 23425003,\n        \"woe_id_eh\": 23425003,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"ZMB\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"ZMB\",\n        \"adm0_a3_us\": \"ZMB\",\n        \"adm0_a3_fr\": \"ZMB\",\n        \"adm0_a3_ru\": \"ZMB\",\n        \"adm0_a3_es\": \"ZMB\",\n        \"adm0_a3_cn\": \"ZMB\",\n        \"adm0_a3_tw\": \"ZMB\",\n        \"adm0_a3_in\": \"ZMB\",\n        \"adm0_a3_np\": \"ZMB\",\n        \"adm0_a3_pk\": \"ZMB\",\n        \"adm0_a3_de\": \"ZMB\",\n        \"adm0_a3_gb\": \"ZMB\",\n        \"adm0_a3_br\": \"ZMB\",\n        \"adm0_a3_il\": \"ZMB\",\n        \"adm0_a3_ps\": \"ZMB\",\n        \"adm0_a3_sa\": \"ZMB\",\n        \"adm0_a3_eg\": \"ZMB\",\n        \"adm0_a3_ma\": \"ZMB\",\n        \"adm0_a3_pt\": \"ZMB\",\n        \"adm0_a3_ar\": \"ZMB\",\n        \"adm0_a3_jp\": \"ZMB\",\n        \"adm0_a3_ko\": \"ZMB\",\n        \"adm0_a3_vn\": \"ZMB\",\n        \"adm0_a3_tr\": \"ZMB\",\n        \"adm0_a3_id\": \"ZMB\",\n        \"adm0_a3_pl\": \"ZMB\",\n        \"adm0_a3_gr\": \"ZMB\",\n        \"adm0_a3_it\": \"ZMB\",\n        \"adm0_a3_nl\": \"ZMB\",\n        \"adm0_a3_se\": \"ZMB\",\n        \"adm0_a3_bd\": \"ZMB\",\n        \"adm0_a3_ua\": \"ZMB\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Eastern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 26.395298,\n        \"label_y\": -14.660804,\n        \"ne_id\": 1159321439,\n        \"wikidataid\": \"Q953\",\n        \"name_ar\": \"زامبيا\",\n        \"name_bn\": \"জাম্বিয়া\",\n        \"name_de\": \"Sambia\",\n        \"name_en\": \"Zambia\",\n        \"name_es\": \"Zambia\",\n        \"name_fa\": \"زامبیا\",\n        \"name_fr\": \"Zambie\",\n        \"name_el\": \"Ζάμπια\",\n        \"name_he\": \"זמביה\",\n        \"name_hi\": \"ज़ाम्बिया\",\n        \"name_hu\": \"Zambia\",\n        \"name_id\": \"Zambia\",\n        \"name_it\": \"Zambia\",\n        \"name_ja\": \"ザンビア\",\n        \"name_ko\": \"잠비아\",\n        \"name_nl\": \"Zambia\",\n        \"name_pl\": \"Zambia\",\n        \"name_pt\": \"Zâmbia\",\n        \"name_ru\": \"Замбия\",\n        \"name_sv\": \"Zambia\",\n        \"name_tr\": \"Zambiya\",\n        \"name_uk\": \"Замбія\",\n        \"name_ur\": \"زیمبیا\",\n        \"name_vi\": \"Zambia\",\n        \"name_zh\": \"赞比亚\",\n        \"name_zht\": \"尚比亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"ZMB.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30.740009731422095, -8.34000593035372],\n            [31.15775133695005, -8.594578747317366],\n            [31.556348097466497, -8.762048841998642],\n            [32.19186486179194, -8.930358981973257],\n            [32.75937544122132, -9.23059905358906],\n            [33.2313879737753, -9.6767216935648],\n            [33.48568769708359, -10.525558770391115],\n            [33.315310499817286, -10.796549981329697],\n            [33.114289178201915, -11.607198174692314],\n            [33.306422153463075, -12.435778090060218],\n            [32.991764357237884, -12.783870537978274],\n            [32.68816531752313, -13.712857761289277],\n            [33.214024692525214, -13.971860039936153],\n            [30.17948123548183, -14.796099134991529],\n            [30.27425581230511, -15.507786960515213],\n            [29.516834344203147, -15.644677829656388],\n            [28.947463413211267, -16.04305144619444],\n            [28.8258687680285, -16.389748630440614],\n            [28.467906121542683, -16.468400160388846],\n            [27.59824344250276, -17.290830580314008],\n            [27.044427117630732, -17.938026218337434],\n            [26.70677330903564, -17.961228936436484],\n            [26.381935255648926, -17.8460421688579],\n            [25.264225701608012, -17.736539808831417],\n            [25.08444339366457, -17.661815687737374],\n            [25.07695031098226, -17.57882333747662],\n            [24.682349074001507, -17.353410739819473],\n            [24.033861525170778, -17.295843194246324],\n            [23.215048455506064, -17.523116143465984],\n            [22.56247846852426, -16.898451429921813],\n            [21.887842644953874, -16.08031015387688],\n            [21.933886346125917, -12.898437188369359],\n            [24.016136508894675, -12.911046237848574],\n            [23.930922072045377, -12.565847670138856],\n            [24.079905226342845, -12.191296888887365],\n            [23.904153680118185, -11.722281589406322],\n            [24.01789350759259, -11.23729827234709],\n            [23.912215203555718, -10.926826267137514],\n            [24.25715538910399, -10.951992689663657],\n            [24.31451622894795, -11.26282642989927],\n            [24.78316979340295, -11.238693536018964],\n            [25.418118116973204, -11.330935967659961],\n            [25.752309604604733, -11.784965101776358],\n            [26.553087599399618, -11.924439792532127],\n            [27.164419793412463, -11.608748467661075],\n            [27.388798862423783, -12.132747491100666],\n            [28.155108676879987, -12.272480564017897],\n            [28.523561639121027, -12.698604424696683],\n            [28.934285922976837, -13.248958428605135],\n            [29.69961388521949, -13.257226657771831],\n            [29.61600141777123, -12.178894545137311],\n            [29.34154788586909, -12.360743910372413],\n            [28.642417433392353, -11.971568698782315],\n            [28.372253045370428, -11.793646742401393],\n            [28.49606977714177, -10.789883721564046],\n            [28.67368167492893, -9.605924981324932],\n            [28.449871046672826, -9.164918308146085],\n            [28.734866570762502, -8.526559340044578],\n            [29.00291222506047, -8.407031752153472],\n            [30.346086053190817, -8.238256524288218],\n            [30.740009731422095, -8.34000593035372]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Sierra Leone\",\n        \"sov_a3\": \"SLE\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Sierra Leone\",\n        \"adm0_a3\": \"SLE\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Sierra Leone\",\n        \"gu_a3\": \"SLE\",\n        \"su_dif\": 0,\n        \"subunit\": \"Sierra Leone\",\n        \"su_a3\": \"SLE\",\n        \"brk_diff\": 0,\n        \"name\": \"Sierra Leone\",\n        \"name_long\": \"Sierra Leone\",\n        \"brk_a3\": \"SLE\",\n        \"brk_name\": \"Sierra Leone\",\n        \"brk_group\": null,\n        \"abbrev\": \"S.L.\",\n        \"postal\": \"SL\",\n        \"formal_en\": \"Republic of Sierra Leone\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Sierra Leone\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Sierra Leone\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 7,\n        \"pop_est\": 7813215,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 4121,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"SL\",\n        \"iso_a2\": \"SL\",\n        \"iso_a2_eh\": \"SL\",\n        \"iso_a3\": \"SLE\",\n        \"iso_a3_eh\": \"SLE\",\n        \"iso_n3\": \"694\",\n        \"iso_n3_eh\": \"694\",\n        \"un_a3\": \"694\",\n        \"wb_a2\": \"SL\",\n        \"wb_a3\": \"SLE\",\n        \"woe_id\": 23424946,\n        \"woe_id_eh\": 23424946,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"SLE\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"SLE\",\n        \"adm0_a3_us\": \"SLE\",\n        \"adm0_a3_fr\": \"SLE\",\n        \"adm0_a3_ru\": \"SLE\",\n        \"adm0_a3_es\": \"SLE\",\n        \"adm0_a3_cn\": \"SLE\",\n        \"adm0_a3_tw\": \"SLE\",\n        \"adm0_a3_in\": \"SLE\",\n        \"adm0_a3_np\": \"SLE\",\n        \"adm0_a3_pk\": \"SLE\",\n        \"adm0_a3_de\": \"SLE\",\n        \"adm0_a3_gb\": \"SLE\",\n        \"adm0_a3_br\": \"SLE\",\n        \"adm0_a3_il\": \"SLE\",\n        \"adm0_a3_ps\": \"SLE\",\n        \"adm0_a3_sa\": \"SLE\",\n        \"adm0_a3_eg\": \"SLE\",\n        \"adm0_a3_ma\": \"SLE\",\n        \"adm0_a3_pt\": \"SLE\",\n        \"adm0_a3_ar\": \"SLE\",\n        \"adm0_a3_jp\": \"SLE\",\n        \"adm0_a3_ko\": \"SLE\",\n        \"adm0_a3_vn\": \"SLE\",\n        \"adm0_a3_tr\": \"SLE\",\n        \"adm0_a3_id\": \"SLE\",\n        \"adm0_a3_pl\": \"SLE\",\n        \"adm0_a3_gr\": \"SLE\",\n        \"adm0_a3_it\": \"SLE\",\n        \"adm0_a3_nl\": \"SLE\",\n        \"adm0_a3_se\": \"SLE\",\n        \"adm0_a3_bd\": \"SLE\",\n        \"adm0_a3_ua\": \"SLE\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Western Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 12,\n        \"long_len\": 12,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": -11.763677,\n        \"label_y\": 8.617449,\n        \"ne_id\": 1159321251,\n        \"wikidataid\": \"Q1044\",\n        \"name_ar\": \"سيراليون\",\n        \"name_bn\": \"সিয়েরা লিওন\",\n        \"name_de\": \"Sierra Leone\",\n        \"name_en\": \"Sierra Leone\",\n        \"name_es\": \"Sierra Leona\",\n        \"name_fa\": \"سیرالئون\",\n        \"name_fr\": \"Sierra Leone\",\n        \"name_el\": \"Σιέρα Λεόνε\",\n        \"name_he\": \"סיירה לאון\",\n        \"name_hi\": \"सिएरा लियोन\",\n        \"name_hu\": \"Sierra Leone\",\n        \"name_id\": \"Sierra Leone\",\n        \"name_it\": \"Sierra Leone\",\n        \"name_ja\": \"シエラレオネ\",\n        \"name_ko\": \"시에라리온\",\n        \"name_nl\": \"Sierra Leone\",\n        \"name_pl\": \"Sierra Leone\",\n        \"name_pt\": \"Serra Leoa\",\n        \"name_ru\": \"Сьерра-Леоне\",\n        \"name_sv\": \"Sierra Leone\",\n        \"name_tr\": \"Sierra Leone\",\n        \"name_uk\": \"Сьєрра-Леоне\",\n        \"name_ur\": \"سیرالیون\",\n        \"name_vi\": \"Sierra Leone\",\n        \"name_zh\": \"塞拉利昂\",\n        \"name_zht\": \"獅子山\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"SLE.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-13.246550258832515, 8.903048610871508],\n            [-12.71195756677308, 9.342711696810767],\n            [-12.59671912276221, 9.62018830000197],\n            [-12.425928514037565, 9.835834051955956],\n            [-12.150338100625005, 9.858571682164381],\n            [-11.917277390988659, 10.046983954300558],\n            [-11.11748124840733, 10.045872911006285],\n            [-10.839151984083301, 9.688246161330369],\n            [-10.622395188835041, 9.267910061068278],\n            [-10.654770473665891, 8.977178452994195],\n            [-10.494315151399633, 8.715540676300435],\n            [-10.505477260774668, 8.348896389189605],\n            [-10.23009355309128, 8.406205552601293],\n            [-10.69559485517648, 7.939464016141088],\n            [-11.146704270868383, 7.396706447779536],\n            [-11.19980180504828, 7.105845648624737],\n            [-11.438779466182055, 6.785916856305747],\n            [-11.70819454593574, 6.860098374860726],\n            [-12.428098924193819, 7.26294200279203],\n            [-12.949049038128194, 7.798645738145738],\n            [-13.124025437868482, 8.163946438016978],\n            [-13.246550258832515, 8.903048610871508]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Guinea\",\n        \"sov_a3\": \"GIN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Guinea\",\n        \"adm0_a3\": \"GIN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Guinea\",\n        \"gu_a3\": \"GIN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Guinea\",\n        \"su_a3\": \"GIN\",\n        \"brk_diff\": 0,\n        \"name\": \"Guinea\",\n        \"name_long\": \"Guinea\",\n        \"brk_a3\": \"GIN\",\n        \"brk_name\": \"Guinea\",\n        \"brk_group\": null,\n        \"abbrev\": \"Gin.\",\n        \"postal\": \"GN\",\n        \"formal_en\": \"Republic of Guinea\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Guinea\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Guinea\",\n        \"name_alt\": null,\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 7,\n        \"mapcolor13\": 2,\n        \"pop_est\": 12771246,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 12296,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"GV\",\n        \"iso_a2\": \"GN\",\n        \"iso_a2_eh\": \"GN\",\n        \"iso_a3\": \"GIN\",\n        \"iso_a3_eh\": \"GIN\",\n        \"iso_n3\": \"324\",\n        \"iso_n3_eh\": \"324\",\n        \"un_a3\": \"324\",\n        \"wb_a2\": \"GN\",\n        \"wb_a3\": \"GIN\",\n        \"woe_id\": 23424835,\n        \"woe_id_eh\": 23424835,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"GIN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"GIN\",\n        \"adm0_a3_us\": \"GIN\",\n        \"adm0_a3_fr\": \"GIN\",\n        \"adm0_a3_ru\": \"GIN\",\n        \"adm0_a3_es\": \"GIN\",\n        \"adm0_a3_cn\": \"GIN\",\n        \"adm0_a3_tw\": \"GIN\",\n        \"adm0_a3_in\": \"GIN\",\n        \"adm0_a3_np\": \"GIN\",\n        \"adm0_a3_pk\": \"GIN\",\n        \"adm0_a3_de\": \"GIN\",\n        \"adm0_a3_gb\": \"GIN\",\n        \"adm0_a3_br\": \"GIN\",\n        \"adm0_a3_il\": \"GIN\",\n        \"adm0_a3_ps\": \"GIN\",\n        \"adm0_a3_sa\": \"GIN\",\n        \"adm0_a3_eg\": \"GIN\",\n        \"adm0_a3_ma\": \"GIN\",\n        \"adm0_a3_pt\": \"GIN\",\n        \"adm0_a3_ar\": \"GIN\",\n        \"adm0_a3_jp\": \"GIN\",\n        \"adm0_a3_ko\": \"GIN\",\n        \"adm0_a3_vn\": \"GIN\",\n        \"adm0_a3_tr\": \"GIN\",\n        \"adm0_a3_id\": \"GIN\",\n        \"adm0_a3_pl\": \"GIN\",\n        \"adm0_a3_gr\": \"GIN\",\n        \"adm0_a3_it\": \"GIN\",\n        \"adm0_a3_nl\": \"GIN\",\n        \"adm0_a3_se\": \"GIN\",\n        \"adm0_a3_bd\": \"GIN\",\n        \"adm0_a3_ua\": \"GIN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Western Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": -10.016402,\n        \"label_y\": 10.618516,\n        \"ne_id\": 1159320795,\n        \"wikidataid\": \"Q1006\",\n        \"name_ar\": \"غينيا\",\n        \"name_bn\": \"গিনি\",\n        \"name_de\": \"Guinea\",\n        \"name_en\": \"Guinea\",\n        \"name_es\": \"Guinea\",\n        \"name_fa\": \"گینه\",\n        \"name_fr\": \"Guinée\",\n        \"name_el\": \"Γουινέα\",\n        \"name_he\": \"גינאה\",\n        \"name_hi\": \"गिनी\",\n        \"name_hu\": \"Guinea\",\n        \"name_id\": \"Guinea\",\n        \"name_it\": \"Guinea\",\n        \"name_ja\": \"ギニア\",\n        \"name_ko\": \"기니\",\n        \"name_nl\": \"Guinee\",\n        \"name_pl\": \"Gwinea\",\n        \"name_pt\": \"Guiné\",\n        \"name_ru\": \"Гвинея\",\n        \"name_sv\": \"Guinea\",\n        \"name_tr\": \"Gine\",\n        \"name_uk\": \"Гвінея\",\n        \"name_ur\": \"جمہوریہ گنی\",\n        \"name_vi\": \"Guinée\",\n        \"name_zh\": \"几内亚\",\n        \"name_zht\": \"幾內亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"GIN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-13.700476040084325, 12.586182969610194],\n            [-13.217818162478238, 12.575873521367967],\n            [-12.499050665730564, 12.332089952031057],\n            [-12.27859900557344, 12.354440008997287],\n            [-12.203564825885634, 12.465647691289405],\n            [-11.658300950557932, 12.386582749882836],\n            [-11.51394283695059, 12.442987575729418],\n            [-11.456168585648271, 12.076834214725338],\n            [-11.297573614944511, 12.077971096235771],\n            [-11.03655595543826, 12.211244615116515],\n            [-10.870829637078215, 12.17788747807211],\n            [-10.593223842806282, 11.92397532800598],\n            [-10.165213792348837, 11.844083563682744],\n            [-9.890992804392013, 12.060478623904972],\n            [-9.567911749703214, 12.194243068892476],\n            [-9.327616339546012, 12.334286200403454],\n            [-9.127473517279583, 12.308060411015333],\n            [-8.90526485842453, 12.088358059126437],\n            [-8.786099005559464, 11.812560939984706],\n            [-8.376304897484914, 11.393645941610629],\n            [-8.581305304386774, 11.136245632364805],\n            [-8.620321010767128, 10.810890814655183],\n            [-8.407310756860028, 10.909256903522762],\n            [-8.282357143578281, 10.792597357623846],\n            [-8.33537716310974, 10.494811916541934],\n            [-8.029943610048619, 10.206534939001713],\n            [-8.229337124046822, 10.1290202905639],\n            [-8.30961646161225, 9.789531968622441],\n            [-8.07911373537435, 9.376223863152035],\n            [-7.832100389019188, 8.575704250518626],\n            [-8.20349890790088, 8.455453192575447],\n            [-8.299048631208564, 8.316443589710303],\n            [-8.221792364932199, 8.123328762235573],\n            [-8.280703497744938, 7.687179673692157],\n            [-8.439298468448698, 7.686042792181738],\n            [-8.722123582382125, 7.71167430259851],\n            [-8.926064622422004, 7.309037380396376],\n            [-9.208786383490846, 7.313920803247953],\n            [-9.40334815106975, 7.526905218938907],\n            [-9.337279832384581, 7.928534450711354],\n            [-9.755342169625834, 8.541055202666925],\n            [-10.016566534861255, 8.428503933135232],\n            [-10.23009355309128, 8.406205552601293],\n            [-10.505477260774668, 8.348896389189605],\n            [-10.494315151399633, 8.715540676300435],\n            [-10.654770473665891, 8.977178452994195],\n            [-10.622395188835041, 9.267910061068278],\n            [-10.839151984083301, 9.688246161330369],\n            [-11.11748124840733, 10.045872911006285],\n            [-11.917277390988659, 10.046983954300558],\n            [-12.150338100625005, 9.858571682164381],\n            [-12.425928514037565, 9.835834051955956],\n            [-12.59671912276221, 9.62018830000197],\n            [-12.71195756677308, 9.342711696810767],\n            [-13.246550258832515, 8.903048610871508],\n            [-13.685153977909792, 9.49474376061346],\n            [-14.074044969122282, 9.886166897008252],\n            [-14.33007585291237, 10.015719712763968],\n            [-14.579698859098258, 10.214467271358515],\n            [-14.693231980843505, 10.656300767454042],\n            [-14.839553798877944, 10.87657156009814],\n            [-15.130311245168173, 11.040411688679526],\n            [-14.685687221728898, 11.527823798056488],\n            [-14.382191534878729, 11.509271958863692],\n            [-14.121406419317779, 11.677117010947697],\n            [-13.900799729863776, 11.678718980348748],\n            [-13.743160773157413, 11.811269029177412],\n            [-13.828271857142125, 12.142644151249044],\n            [-13.718743658899513, 12.24718557377551],\n            [-13.700476040084325, 12.586182969610194]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Liberia\",\n        \"sov_a3\": \"LBR\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Liberia\",\n        \"adm0_a3\": \"LBR\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Liberia\",\n        \"gu_a3\": \"LBR\",\n        \"su_dif\": 0,\n        \"subunit\": \"Liberia\",\n        \"su_a3\": \"LBR\",\n        \"brk_diff\": 0,\n        \"name\": \"Liberia\",\n        \"name_long\": \"Liberia\",\n        \"brk_a3\": \"LBR\",\n        \"brk_name\": \"Liberia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Liberia\",\n        \"postal\": \"LR\",\n        \"formal_en\": \"Republic of Liberia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Liberia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Liberia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 9,\n        \"pop_est\": 4937374,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 3070,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"LI\",\n        \"iso_a2\": \"LR\",\n        \"iso_a2_eh\": \"LR\",\n        \"iso_a3\": \"LBR\",\n        \"iso_a3_eh\": \"LBR\",\n        \"iso_n3\": \"430\",\n        \"iso_n3_eh\": \"430\",\n        \"un_a3\": \"430\",\n        \"wb_a2\": \"LR\",\n        \"wb_a3\": \"LBR\",\n        \"woe_id\": 23424876,\n        \"woe_id_eh\": 23424876,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"LBR\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"LBR\",\n        \"adm0_a3_us\": \"LBR\",\n        \"adm0_a3_fr\": \"LBR\",\n        \"adm0_a3_ru\": \"LBR\",\n        \"adm0_a3_es\": \"LBR\",\n        \"adm0_a3_cn\": \"LBR\",\n        \"adm0_a3_tw\": \"LBR\",\n        \"adm0_a3_in\": \"LBR\",\n        \"adm0_a3_np\": \"LBR\",\n        \"adm0_a3_pk\": \"LBR\",\n        \"adm0_a3_de\": \"LBR\",\n        \"adm0_a3_gb\": \"LBR\",\n        \"adm0_a3_br\": \"LBR\",\n        \"adm0_a3_il\": \"LBR\",\n        \"adm0_a3_ps\": \"LBR\",\n        \"adm0_a3_sa\": \"LBR\",\n        \"adm0_a3_eg\": \"LBR\",\n        \"adm0_a3_ma\": \"LBR\",\n        \"adm0_a3_pt\": \"LBR\",\n        \"adm0_a3_ar\": \"LBR\",\n        \"adm0_a3_jp\": \"LBR\",\n        \"adm0_a3_ko\": \"LBR\",\n        \"adm0_a3_vn\": \"LBR\",\n        \"adm0_a3_tr\": \"LBR\",\n        \"adm0_a3_id\": \"LBR\",\n        \"adm0_a3_pl\": \"LBR\",\n        \"adm0_a3_gr\": \"LBR\",\n        \"adm0_a3_it\": \"LBR\",\n        \"adm0_a3_nl\": \"LBR\",\n        \"adm0_a3_se\": \"LBR\",\n        \"adm0_a3_bd\": \"LBR\",\n        \"adm0_a3_ua\": \"LBR\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Western Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 7,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": -9.460379,\n        \"label_y\": 6.447177,\n        \"ne_id\": 1159321015,\n        \"wikidataid\": \"Q1014\",\n        \"name_ar\": \"ليبيريا\",\n        \"name_bn\": \"লাইবেরিয়া\",\n        \"name_de\": \"Liberia\",\n        \"name_en\": \"Liberia\",\n        \"name_es\": \"Liberia\",\n        \"name_fa\": \"لیبریا\",\n        \"name_fr\": \"Liberia\",\n        \"name_el\": \"Λιβερία\",\n        \"name_he\": \"ליבריה\",\n        \"name_hi\": \"लाइबेरिया\",\n        \"name_hu\": \"Libéria\",\n        \"name_id\": \"Liberia\",\n        \"name_it\": \"Liberia\",\n        \"name_ja\": \"リベリア\",\n        \"name_ko\": \"라이베리아\",\n        \"name_nl\": \"Liberia\",\n        \"name_pl\": \"Liberia\",\n        \"name_pt\": \"Libéria\",\n        \"name_ru\": \"Либерия\",\n        \"name_sv\": \"Liberia\",\n        \"name_tr\": \"Liberya\",\n        \"name_uk\": \"Ліберія\",\n        \"name_ur\": \"لائبیریا\",\n        \"name_vi\": \"Liberia\",\n        \"name_zh\": \"利比里亚\",\n        \"name_zht\": \"賴比瑞亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"LBR.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.439298468448698, 7.686042792181738],\n            [-8.48544552248535, 7.39520783124307],\n            [-8.385451626000574, 6.911800645368743],\n            [-8.60288021486862, 6.46756419517166],\n            [-8.311347622094019, 6.193033148621083],\n            [-7.993692592795881, 6.126189683451543],\n            [-7.570152553731688, 5.707352199725904],\n            [-7.539715135111763, 5.313345241716519],\n            [-7.635368211284031, 5.188159084489456],\n            [-7.71215938966975, 4.364565944837722],\n            [-7.974107224957251, 4.355755113131963],\n            [-9.004793667018674, 4.8324185245922],\n            [-9.913420376006684, 5.593560695819207],\n            [-10.765383876986645, 6.140710760925558],\n            [-11.438779466182055, 6.785916856305747],\n            [-11.19980180504828, 7.105845648624737],\n            [-11.146704270868383, 7.396706447779536],\n            [-10.69559485517648, 7.939464016141088],\n            [-10.23009355309128, 8.406205552601293],\n            [-10.016566534861255, 8.428503933135232],\n            [-9.755342169625834, 8.541055202666925],\n            [-9.337279832384581, 7.928534450711354],\n            [-9.40334815106975, 7.526905218938907],\n            [-9.208786383490846, 7.313920803247953],\n            [-8.926064622422004, 7.309037380396376],\n            [-8.722123582382125, 7.71167430259851],\n            [-8.439298468448698, 7.686042792181738]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Central African Republic\",\n        \"sov_a3\": \"CAF\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Central African Republic\",\n        \"adm0_a3\": \"CAF\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Central African Republic\",\n        \"gu_a3\": \"CAF\",\n        \"su_dif\": 0,\n        \"subunit\": \"Central African Republic\",\n        \"su_a3\": \"CAF\",\n        \"brk_diff\": 0,\n        \"name\": \"Central African Rep.\",\n        \"name_long\": \"Central African Republic\",\n        \"brk_a3\": \"CAF\",\n        \"brk_name\": \"Central African Rep.\",\n        \"brk_group\": null,\n        \"abbrev\": \"C.A.R.\",\n        \"postal\": \"CF\",\n        \"formal_en\": \"Central African Republic\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Central African Republic\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Central African Republic\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 6,\n        \"mapcolor13\": 9,\n        \"pop_est\": 4745185,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 2220,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"CT\",\n        \"iso_a2\": \"CF\",\n        \"iso_a2_eh\": \"CF\",\n        \"iso_a3\": \"CAF\",\n        \"iso_a3_eh\": \"CAF\",\n        \"iso_n3\": \"140\",\n        \"iso_n3_eh\": \"140\",\n        \"un_a3\": \"140\",\n        \"wb_a2\": \"CF\",\n        \"wb_a3\": \"CAF\",\n        \"woe_id\": 23424792,\n        \"woe_id_eh\": 23424792,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"CAF\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"CAF\",\n        \"adm0_a3_us\": \"CAF\",\n        \"adm0_a3_fr\": \"CAF\",\n        \"adm0_a3_ru\": \"CAF\",\n        \"adm0_a3_es\": \"CAF\",\n        \"adm0_a3_cn\": \"CAF\",\n        \"adm0_a3_tw\": \"CAF\",\n        \"adm0_a3_in\": \"CAF\",\n        \"adm0_a3_np\": \"CAF\",\n        \"adm0_a3_pk\": \"CAF\",\n        \"adm0_a3_de\": \"CAF\",\n        \"adm0_a3_gb\": \"CAF\",\n        \"adm0_a3_br\": \"CAF\",\n        \"adm0_a3_il\": \"CAF\",\n        \"adm0_a3_ps\": \"CAF\",\n        \"adm0_a3_sa\": \"CAF\",\n        \"adm0_a3_eg\": \"CAF\",\n        \"adm0_a3_ma\": \"CAF\",\n        \"adm0_a3_pt\": \"CAF\",\n        \"adm0_a3_ar\": \"CAF\",\n        \"adm0_a3_jp\": \"CAF\",\n        \"adm0_a3_ko\": \"CAF\",\n        \"adm0_a3_vn\": \"CAF\",\n        \"adm0_a3_tr\": \"CAF\",\n        \"adm0_a3_id\": \"CAF\",\n        \"adm0_a3_pl\": \"CAF\",\n        \"adm0_a3_gr\": \"CAF\",\n        \"adm0_a3_it\": \"CAF\",\n        \"adm0_a3_nl\": \"CAF\",\n        \"adm0_a3_se\": \"CAF\",\n        \"adm0_a3_bd\": \"CAF\",\n        \"adm0_a3_ua\": \"CAF\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Middle Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 20,\n        \"long_len\": 24,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 20.906897,\n        \"label_y\": 6.989681,\n        \"ne_id\": 1159320463,\n        \"wikidataid\": \"Q929\",\n        \"name_ar\": \"جمهورية أفريقيا الوسطى\",\n        \"name_bn\": \"মধ্য আফ্রিকান প্রজাতন্ত্র\",\n        \"name_de\": \"Zentralafrikanische Republik\",\n        \"name_en\": \"Central African Republic\",\n        \"name_es\": \"República Centroafricana\",\n        \"name_fa\": \"جمهوری آفریقای مرکزی\",\n        \"name_fr\": \"République centrafricaine\",\n        \"name_el\": \"Κεντροαφρικανική Δημοκρατία\",\n        \"name_he\": \"הרפובליקה המרכז-אפריקאית\",\n        \"name_hi\": \"मध्य अफ़्रीकी गणराज्य\",\n        \"name_hu\": \"Közép-afrikai Köztársaság\",\n        \"name_id\": \"Republik Afrika Tengah\",\n        \"name_it\": \"Repubblica Centrafricana\",\n        \"name_ja\": \"中央アフリカ共和国\",\n        \"name_ko\": \"중앙아프리카 공화국\",\n        \"name_nl\": \"Centraal-Afrikaanse Republiek\",\n        \"name_pl\": \"Republika Środkowoafrykańska\",\n        \"name_pt\": \"República Centro-Africana\",\n        \"name_ru\": \"Центральноафриканская Республика\",\n        \"name_sv\": \"Centralafrikanska republiken\",\n        \"name_tr\": \"Orta Afrika Cumhuriyeti\",\n        \"name_uk\": \"Центральноафриканська Республіка\",\n        \"name_ur\": \"وسطی افریقی جمہوریہ\",\n        \"name_vi\": \"Cộng hòa Trung Phi\",\n        \"name_zh\": \"中非共和国\",\n        \"name_zht\": \"中非共和國\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"CAF.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [27.37422610851749, 5.233944403500061],\n            [27.04406538260471, 5.127852688004836],\n            [26.402760857862543, 5.150874538590871],\n            [25.650455356557472, 5.256087754737123],\n            [25.278798455514305, 5.170408229997192],\n            [25.12883344900328, 4.92724477784779],\n            [24.805028924262416, 4.89724660890235],\n            [24.410531040146253, 5.10878408448913],\n            [23.29721398285014, 4.609693101414223],\n            [22.841479526468106, 4.710126247573484],\n            [22.70412356943629, 4.633050848810157],\n            [22.405123732195538, 4.029160061047321],\n            [21.659122755630023, 4.22434194581372],\n            [20.927591180106276, 4.322785549329737],\n            [20.290679152108936, 4.691677761245288],\n            [19.46778364429315, 5.03152781821278],\n            [18.93231245288476, 4.709506130385975],\n            [18.54298221199778, 4.201785183118318],\n            [18.45306521980993, 3.504385891123349],\n            [17.809900343505262, 3.56019643799857],\n            [17.133042433346304, 3.728196519379452],\n            [16.537058139724138, 3.198254706226279],\n            [16.012852410555354, 2.267639675298085],\n            [15.907380812247652, 2.557389431158612],\n            [15.862732374747482, 3.013537298998983],\n            [15.405395948964383, 3.33530060466434],\n            [15.036219516671252, 3.851367295747124],\n            [14.950953403389661, 4.210389309094921],\n            [14.47837243008047, 4.732605495620447],\n            [14.558935988023507, 5.03059764243153],\n            [14.459407179429348, 5.4517605656103],\n            [14.536560092841114, 6.22695872642069],\n            [14.776545444404576, 6.408498033062045],\n            [15.279460483469109, 7.421924546737969],\n            [16.106231723706742, 7.497087917506462],\n            [16.290561557691888, 7.754307359239419],\n            [16.456184523187346, 7.734773667832968],\n            [16.705988396886255, 7.508327541529979],\n            [17.964929640380888, 7.890914008002994],\n            [18.38955488452322, 8.281303615751824],\n            [18.911021762780507, 8.630894680206353],\n            [18.812009718509273, 8.982914536978598],\n            [19.09400800952602, 9.07484691002584],\n            [20.05968549976427, 9.012706000194854],\n            [21.000868361096167, 9.475985215691509],\n            [21.723821648859456, 10.567055568885976],\n            [22.23112918466876, 10.97188873946061],\n            [22.864165480244225, 11.142395127807546],\n            [22.97754357269261, 10.71446259199854],\n            [23.554304233502194, 10.089255275915308],\n            [23.55724979014283, 9.681218166538684],\n            [23.394779087017184, 9.265067857292223],\n            [23.459012892355986, 8.954285793488893],\n            [23.805813429466752, 8.666318874542526],\n            [24.567369012152085, 8.229187933785468],\n            [25.11493248871679, 7.825104071479174],\n            [25.124130893664727, 7.500085150579437],\n            [25.79664798351118, 6.979315904158071],\n            [26.213418409945117, 6.546603298362072],\n            [26.465909458123235, 5.94671743410187],\n            [27.21340905122517, 5.550953477394557],\n            [27.37422610851749, 5.233944403500061]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Sudan\",\n        \"sov_a3\": \"SDN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Sudan\",\n        \"adm0_a3\": \"SDN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Sudan\",\n        \"gu_a3\": \"SDN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Sudan\",\n        \"su_a3\": \"SDN\",\n        \"brk_diff\": 0,\n        \"name\": \"Sudan\",\n        \"name_long\": \"Sudan\",\n        \"brk_a3\": \"SDN\",\n        \"brk_name\": \"Sudan\",\n        \"brk_group\": null,\n        \"abbrev\": \"Sudan\",\n        \"postal\": \"SD\",\n        \"formal_en\": \"Republic of the Sudan\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Sudan\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Sudan\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 1,\n        \"pop_est\": 42813238,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 30513,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"SU\",\n        \"iso_a2\": \"SD\",\n        \"iso_a2_eh\": \"SD\",\n        \"iso_a3\": \"SDN\",\n        \"iso_a3_eh\": \"SDN\",\n        \"iso_n3\": \"729\",\n        \"iso_n3_eh\": \"729\",\n        \"un_a3\": \"729\",\n        \"wb_a2\": \"SD\",\n        \"wb_a3\": \"SDN\",\n        \"woe_id\": -90,\n        \"woe_id_eh\": 23424952,\n        \"woe_note\": \"Almost all FLickr photos are in the north.\",\n        \"adm0_iso\": \"SDZ\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"SDZ\",\n        \"adm0_a3_us\": \"SDN\",\n        \"adm0_a3_fr\": \"SDN\",\n        \"adm0_a3_ru\": \"SDN\",\n        \"adm0_a3_es\": \"SDN\",\n        \"adm0_a3_cn\": \"SDN\",\n        \"adm0_a3_tw\": \"SDN\",\n        \"adm0_a3_in\": \"SDN\",\n        \"adm0_a3_np\": \"SDN\",\n        \"adm0_a3_pk\": \"SDN\",\n        \"adm0_a3_de\": \"SDN\",\n        \"adm0_a3_gb\": \"SDN\",\n        \"adm0_a3_br\": \"SDN\",\n        \"adm0_a3_il\": \"SDN\",\n        \"adm0_a3_ps\": \"SDN\",\n        \"adm0_a3_sa\": \"SDN\",\n        \"adm0_a3_eg\": \"SDN\",\n        \"adm0_a3_ma\": \"SDN\",\n        \"adm0_a3_pt\": \"SDN\",\n        \"adm0_a3_ar\": \"SDN\",\n        \"adm0_a3_jp\": \"SDN\",\n        \"adm0_a3_ko\": \"SDN\",\n        \"adm0_a3_vn\": \"SDN\",\n        \"adm0_a3_tr\": \"SDN\",\n        \"adm0_a3_id\": \"SDN\",\n        \"adm0_a3_pl\": \"SDN\",\n        \"adm0_a3_gr\": \"SDN\",\n        \"adm0_a3_it\": \"SDN\",\n        \"adm0_a3_nl\": \"SDN\",\n        \"adm0_a3_se\": \"SDN\",\n        \"adm0_a3_bd\": \"SDN\",\n        \"adm0_a3_ua\": \"SDN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Northern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.5,\n        \"max_label\": 8,\n        \"label_x\": 29.260657,\n        \"label_y\": 16.330746,\n        \"ne_id\": 1159321229,\n        \"wikidataid\": \"Q1049\",\n        \"name_ar\": \"السودان\",\n        \"name_bn\": \"সুদান\",\n        \"name_de\": \"Sudan\",\n        \"name_en\": \"Sudan\",\n        \"name_es\": \"Sudán\",\n        \"name_fa\": \"سودان\",\n        \"name_fr\": \"Soudan\",\n        \"name_el\": \"Σουδάν\",\n        \"name_he\": \"סודאן\",\n        \"name_hi\": \"सूडान\",\n        \"name_hu\": \"Szudán\",\n        \"name_id\": \"Sudan\",\n        \"name_it\": \"Sudan\",\n        \"name_ja\": \"スーダン\",\n        \"name_ko\": \"수단\",\n        \"name_nl\": \"Soedan\",\n        \"name_pl\": \"Sudan\",\n        \"name_pt\": \"Sudão\",\n        \"name_ru\": \"Судан\",\n        \"name_sv\": \"Sudan\",\n        \"name_tr\": \"Sudan\",\n        \"name_uk\": \"Судан\",\n        \"name_ur\": \"سوڈان\",\n        \"name_vi\": \"Sudan\",\n        \"name_zh\": \"苏丹\",\n        \"name_zht\": \"蘇丹\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"SDN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [24.567369012152085, 8.229187933785468],\n            [23.805813429466752, 8.666318874542526],\n            [23.459012892355986, 8.954285793488893],\n            [23.394779087017184, 9.265067857292223],\n            [23.55724979014283, 9.681218166538684],\n            [23.554304233502194, 10.089255275915308],\n            [22.97754357269261, 10.71446259199854],\n            [22.864165480244225, 11.142395127807546],\n            [22.87622, 11.384610000000123],\n            [22.50869, 11.67936],\n            [22.49762, 12.26024],\n            [22.28801, 12.64605],\n            [21.93681, 12.588180000000136],\n            [22.03759, 12.95546],\n            [22.29658, 13.37232],\n            [22.18329, 13.78648],\n            [22.51202, 14.09318],\n            [22.30351, 14.32682],\n            [22.56795000000011, 14.944290000000137],\n            [23.024590000000103, 15.68072],\n            [23.886890000000108, 15.61084],\n            [23.83766000000014, 19.580470000000105],\n            [23.850000000000136, 20],\n            [25.000000000000114, 20.00304],\n            [25, 22],\n            [29.02, 22],\n            [32.9, 22],\n            [36.86623, 22],\n            [37.1887200000001, 21.01885],\n            [36.96941, 20.83744000000013],\n            [37.11470000000014, 19.80796],\n            [37.4817900000001, 18.61409],\n            [37.86276, 18.36786],\n            [38.410089959473225, 17.998307399970315],\n            [37.90400000000011, 17.42754],\n            [37.16747, 17.263140000000135],\n            [36.852530000000115, 16.95655],\n            [36.75389, 16.29186],\n            [36.32322, 14.82249],\n            [36.42951, 14.42211],\n            [36.27022, 13.563330000000121],\n            [35.86363, 12.57828],\n            [35.26049, 12.08286],\n            [34.83163000000013, 11.318960000000118],\n            [34.73115000000013, 10.910170000000107],\n            [34.25745, 10.63009],\n            [33.96162, 9.58358],\n            [33.97498, 8.68456],\n            [33.963392794971185, 9.464285229420625],\n            [33.82496348090751, 9.484060845715362],\n            [33.84213085302815, 9.981914637215993],\n            [33.72195924818311, 10.325262079630193],\n            [33.206938084561784, 10.720111638406593],\n            [33.086766479716744, 11.441141267476496],\n            [33.206938084561784, 12.179338268667095],\n            [32.743419037302544, 12.248007757149992],\n            [32.67474954881965, 12.02483191958072],\n            [32.073891524594785, 11.973329803218519],\n            [32.31423473428475, 11.68148447716652],\n            [32.400071594888345, 11.080626452941488],\n            [31.850715687025513, 10.531270545078826],\n            [31.35286189552488, 9.810240916008695],\n            [30.837840731903384, 9.70723668328452],\n            [29.996639497988554, 10.290927335388687],\n            [29.61895731133285, 10.084918869940225],\n            [29.515953078608618, 9.793073543888056],\n            [29.000931914987177, 9.60423245056029],\n            [28.966597170745786, 9.398223985111656],\n            [27.970889587744352, 9.398223985111656],\n            [27.833550610778786, 9.60423245056029],\n            [27.112520981708883, 9.638567194801624],\n            [26.752006167173818, 9.466893473594496],\n            [26.477328213242515, 9.552730334198088],\n            [25.962307049621018, 10.136420986302426],\n            [25.790633328413946, 10.411098940233728],\n            [25.069603699343986, 10.273759963267992],\n            [24.794925745412684, 9.810240916008695],\n            [24.53741516360202, 8.91753756573172],\n            [24.19406772118765, 8.728696472403897],\n            [23.886979580860668, 8.619729712933065],\n            [24.567369012152085, 8.229187933785468]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Djibouti\",\n        \"sov_a3\": \"DJI\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Djibouti\",\n        \"adm0_a3\": \"DJI\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Djibouti\",\n        \"gu_a3\": \"DJI\",\n        \"su_dif\": 0,\n        \"subunit\": \"Djibouti\",\n        \"su_a3\": \"DJI\",\n        \"brk_diff\": 0,\n        \"name\": \"Djibouti\",\n        \"name_long\": \"Djibouti\",\n        \"brk_a3\": \"DJI\",\n        \"brk_name\": \"Djibouti\",\n        \"brk_group\": null,\n        \"abbrev\": \"Dji.\",\n        \"postal\": \"DJ\",\n        \"formal_en\": \"Republic of Djibouti\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Djibouti\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Djibouti\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 8,\n        \"pop_est\": 973560,\n        \"pop_rank\": 11,\n        \"pop_year\": 2019,\n        \"gdp_md\": 3324,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"DJ\",\n        \"iso_a2\": \"DJ\",\n        \"iso_a2_eh\": \"DJ\",\n        \"iso_a3\": \"DJI\",\n        \"iso_a3_eh\": \"DJI\",\n        \"iso_n3\": \"262\",\n        \"iso_n3_eh\": \"262\",\n        \"un_a3\": \"262\",\n        \"wb_a2\": \"DJ\",\n        \"wb_a3\": \"DJI\",\n        \"woe_id\": 23424797,\n        \"woe_id_eh\": 23424797,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"DJI\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"DJI\",\n        \"adm0_a3_us\": \"DJI\",\n        \"adm0_a3_fr\": \"DJI\",\n        \"adm0_a3_ru\": \"DJI\",\n        \"adm0_a3_es\": \"DJI\",\n        \"adm0_a3_cn\": \"DJI\",\n        \"adm0_a3_tw\": \"DJI\",\n        \"adm0_a3_in\": \"DJI\",\n        \"adm0_a3_np\": \"DJI\",\n        \"adm0_a3_pk\": \"DJI\",\n        \"adm0_a3_de\": \"DJI\",\n        \"adm0_a3_gb\": \"DJI\",\n        \"adm0_a3_br\": \"DJI\",\n        \"adm0_a3_il\": \"DJI\",\n        \"adm0_a3_ps\": \"DJI\",\n        \"adm0_a3_sa\": \"DJI\",\n        \"adm0_a3_eg\": \"DJI\",\n        \"adm0_a3_ma\": \"DJI\",\n        \"adm0_a3_pt\": \"DJI\",\n        \"adm0_a3_ar\": \"DJI\",\n        \"adm0_a3_jp\": \"DJI\",\n        \"adm0_a3_ko\": \"DJI\",\n        \"adm0_a3_vn\": \"DJI\",\n        \"adm0_a3_tr\": \"DJI\",\n        \"adm0_a3_id\": \"DJI\",\n        \"adm0_a3_pl\": \"DJI\",\n        \"adm0_a3_gr\": \"DJI\",\n        \"adm0_a3_it\": \"DJI\",\n        \"adm0_a3_nl\": \"DJI\",\n        \"adm0_a3_se\": \"DJI\",\n        \"adm0_a3_bd\": \"DJI\",\n        \"adm0_a3_ua\": \"DJI\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Eastern Africa\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 42.498825,\n        \"label_y\": 11.976343,\n        \"ne_id\": 1159320541,\n        \"wikidataid\": \"Q977\",\n        \"name_ar\": \"جيبوتي\",\n        \"name_bn\": \"জিবুতি\",\n        \"name_de\": \"Dschibuti\",\n        \"name_en\": \"Djibouti\",\n        \"name_es\": \"Yibuti\",\n        \"name_fa\": \"جیبوتی\",\n        \"name_fr\": \"Djibouti\",\n        \"name_el\": \"Τζιμπουτί\",\n        \"name_he\": \"ג'יבוטי\",\n        \"name_hi\": \"जिबूती\",\n        \"name_hu\": \"Dzsibuti\",\n        \"name_id\": \"Djibouti\",\n        \"name_it\": \"Gibuti\",\n        \"name_ja\": \"ジブチ\",\n        \"name_ko\": \"지부티\",\n        \"name_nl\": \"Djibouti\",\n        \"name_pl\": \"Dżibuti\",\n        \"name_pt\": \"Djibouti\",\n        \"name_ru\": \"Джибути\",\n        \"name_sv\": \"Djibouti\",\n        \"name_tr\": \"Cibuti\",\n        \"name_uk\": \"Джибуті\",\n        \"name_ur\": \"جبوتی\",\n        \"name_vi\": \"Djibouti\",\n        \"name_zh\": \"吉布提\",\n        \"name_zht\": \"吉布地\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"DJI.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [42.35156000000012, 12.542230000000131],\n            [42.77964236834475, 12.455415757695675],\n            [43.08122602720016, 12.699638576707116],\n            [43.31785241066467, 12.390148423711025],\n            [43.286381463398925, 11.974928290245884],\n            [42.715873650896526, 11.735640570518342],\n            [43.14530480324214, 11.462039699748857],\n            [42.77685184100096, 10.92687856693442],\n            [42.55493000000013, 11.105110000000195],\n            [42.31414000000012, 11.0342],\n            [41.755570000000205, 11.050910000000101],\n            [41.73959000000019, 11.355110000000138],\n            [41.66176000000013, 11.6312],\n            [42.000000000000114, 12.100000000000136],\n            [42.35156000000012, 12.542230000000131]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Eritrea\",\n        \"sov_a3\": \"ERI\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Eritrea\",\n        \"adm0_a3\": \"ERI\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Eritrea\",\n        \"gu_a3\": \"ERI\",\n        \"su_dif\": 0,\n        \"subunit\": \"Eritrea\",\n        \"su_a3\": \"ERI\",\n        \"brk_diff\": 0,\n        \"name\": \"Eritrea\",\n        \"name_long\": \"Eritrea\",\n        \"brk_a3\": \"ERI\",\n        \"brk_name\": \"Eritrea\",\n        \"brk_group\": null,\n        \"abbrev\": \"Erit.\",\n        \"postal\": \"ER\",\n        \"formal_en\": \"State of Eritrea\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Eritrea\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Eritrea\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 12,\n        \"pop_est\": 6081196,\n        \"pop_rank\": 13,\n        \"pop_year\": 2020,\n        \"gdp_md\": 2065,\n        \"gdp_year\": 2011,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"ER\",\n        \"iso_a2\": \"ER\",\n        \"iso_a2_eh\": \"ER\",\n        \"iso_a3\": \"ERI\",\n        \"iso_a3_eh\": \"ERI\",\n        \"iso_n3\": \"232\",\n        \"iso_n3_eh\": \"232\",\n        \"un_a3\": \"232\",\n        \"wb_a2\": \"ER\",\n        \"wb_a3\": \"ERI\",\n        \"woe_id\": 23424806,\n        \"woe_id_eh\": 23424806,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"ERI\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"ERI\",\n        \"adm0_a3_us\": \"ERI\",\n        \"adm0_a3_fr\": \"ERI\",\n        \"adm0_a3_ru\": \"ERI\",\n        \"adm0_a3_es\": \"ERI\",\n        \"adm0_a3_cn\": \"ERI\",\n        \"adm0_a3_tw\": \"ERI\",\n        \"adm0_a3_in\": \"ERI\",\n        \"adm0_a3_np\": \"ERI\",\n        \"adm0_a3_pk\": \"ERI\",\n        \"adm0_a3_de\": \"ERI\",\n        \"adm0_a3_gb\": \"ERI\",\n        \"adm0_a3_br\": \"ERI\",\n        \"adm0_a3_il\": \"ERI\",\n        \"adm0_a3_ps\": \"ERI\",\n        \"adm0_a3_sa\": \"ERI\",\n        \"adm0_a3_eg\": \"ERI\",\n        \"adm0_a3_ma\": \"ERI\",\n        \"adm0_a3_pt\": \"ERI\",\n        \"adm0_a3_ar\": \"ERI\",\n        \"adm0_a3_jp\": \"ERI\",\n        \"adm0_a3_ko\": \"ERI\",\n        \"adm0_a3_vn\": \"ERI\",\n        \"adm0_a3_tr\": \"ERI\",\n        \"adm0_a3_id\": \"ERI\",\n        \"adm0_a3_pl\": \"ERI\",\n        \"adm0_a3_gr\": \"ERI\",\n        \"adm0_a3_it\": \"ERI\",\n        \"adm0_a3_nl\": \"ERI\",\n        \"adm0_a3_se\": \"ERI\",\n        \"adm0_a3_bd\": \"ERI\",\n        \"adm0_a3_ua\": \"ERI\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Eastern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 38.285566,\n        \"label_y\": 15.787401,\n        \"ne_id\": 1159320581,\n        \"wikidataid\": \"Q986\",\n        \"name_ar\": \"إريتريا\",\n        \"name_bn\": \"ইরিত্রিয়া\",\n        \"name_de\": \"Eritrea\",\n        \"name_en\": \"Eritrea\",\n        \"name_es\": \"Eritrea\",\n        \"name_fa\": \"اریتره\",\n        \"name_fr\": \"Érythrée\",\n        \"name_el\": \"Ερυθραία\",\n        \"name_he\": \"אריתריאה\",\n        \"name_hi\": \"इरित्रिया\",\n        \"name_hu\": \"Eritrea\",\n        \"name_id\": \"Eritrea\",\n        \"name_it\": \"Eritrea\",\n        \"name_ja\": \"エリトリア\",\n        \"name_ko\": \"에리트레아\",\n        \"name_nl\": \"Eritrea\",\n        \"name_pl\": \"Erytrea\",\n        \"name_pt\": \"Eritreia\",\n        \"name_ru\": \"Эритрея\",\n        \"name_sv\": \"Eritrea\",\n        \"name_tr\": \"Eritre\",\n        \"name_uk\": \"Еритрея\",\n        \"name_ur\": \"اریتریا\",\n        \"name_vi\": \"Eritrea\",\n        \"name_zh\": \"厄立特里亚\",\n        \"name_zht\": \"厄利垂亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"ERI.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [36.42951, 14.42211],\n            [36.32322, 14.82249],\n            [36.75389, 16.29186],\n            [36.852530000000115, 16.95655],\n            [37.16747, 17.263140000000135],\n            [37.90400000000011, 17.42754],\n            [38.410089959473225, 17.998307399970315],\n            [38.990622999840014, 16.840626125551694],\n            [39.26611006038803, 15.92272349696725],\n            [39.814293654140215, 15.435647284400318],\n            [41.17927493669765, 14.491079616753211],\n            [41.73495161313235, 13.921036892141558],\n            [42.27683068214486, 13.343992010954423],\n            [42.58957645037526, 13.000421250861905],\n            [43.08122602720016, 12.699638576707116],\n            [42.77964236834475, 12.455415757695675],\n            [42.35156000000012, 12.542230000000131],\n            [42.00975, 12.86582],\n            [41.59856, 13.452090000000112],\n            [41.1552, 13.77333],\n            [40.8966, 14.118640000000141],\n            [40.02625000000012, 14.51959],\n            [39.34061, 14.53155],\n            [39.0994, 14.74064],\n            [38.51295, 14.50547],\n            [37.90607000000011, 14.959430000000168],\n            [37.59377, 14.2131],\n            [36.42951, 14.42211]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Ivory Coast\",\n        \"sov_a3\": \"CIV\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Ivory Coast\",\n        \"adm0_a3\": \"CIV\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Ivory Coast\",\n        \"gu_a3\": \"CIV\",\n        \"su_dif\": 0,\n        \"subunit\": \"Ivory Coast\",\n        \"su_a3\": \"CIV\",\n        \"brk_diff\": 0,\n        \"name\": \"Côte d'Ivoire\",\n        \"name_long\": \"Côte d'Ivoire\",\n        \"brk_a3\": \"CIV\",\n        \"brk_name\": \"Côte d'Ivoire\",\n        \"brk_group\": null,\n        \"abbrev\": \"I.C.\",\n        \"postal\": \"CI\",\n        \"formal_en\": \"Republic of Ivory Coast\",\n        \"formal_fr\": \"Republic of Cote D'Ivoire\",\n        \"name_ciawf\": \"Cote D'ivoire\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Côte d'Ivoire\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 3,\n        \"pop_est\": 25716544,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 58539,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"IV\",\n        \"iso_a2\": \"CI\",\n        \"iso_a2_eh\": \"CI\",\n        \"iso_a3\": \"CIV\",\n        \"iso_a3_eh\": \"CIV\",\n        \"iso_n3\": \"384\",\n        \"iso_n3_eh\": \"384\",\n        \"un_a3\": \"384\",\n        \"wb_a2\": \"CI\",\n        \"wb_a3\": \"CIV\",\n        \"woe_id\": 23424854,\n        \"woe_id_eh\": 23424854,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"CIV\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"CIV\",\n        \"adm0_a3_us\": \"CIV\",\n        \"adm0_a3_fr\": \"CIV\",\n        \"adm0_a3_ru\": \"CIV\",\n        \"adm0_a3_es\": \"CIV\",\n        \"adm0_a3_cn\": \"CIV\",\n        \"adm0_a3_tw\": \"CIV\",\n        \"adm0_a3_in\": \"CIV\",\n        \"adm0_a3_np\": \"CIV\",\n        \"adm0_a3_pk\": \"CIV\",\n        \"adm0_a3_de\": \"CIV\",\n        \"adm0_a3_gb\": \"CIV\",\n        \"adm0_a3_br\": \"CIV\",\n        \"adm0_a3_il\": \"CIV\",\n        \"adm0_a3_ps\": \"CIV\",\n        \"adm0_a3_sa\": \"CIV\",\n        \"adm0_a3_eg\": \"CIV\",\n        \"adm0_a3_ma\": \"CIV\",\n        \"adm0_a3_pt\": \"CIV\",\n        \"adm0_a3_ar\": \"CIV\",\n        \"adm0_a3_jp\": \"CIV\",\n        \"adm0_a3_ko\": \"CIV\",\n        \"adm0_a3_vn\": \"CIV\",\n        \"adm0_a3_tr\": \"CIV\",\n        \"adm0_a3_id\": \"CIV\",\n        \"adm0_a3_pl\": \"CIV\",\n        \"adm0_a3_gr\": \"CIV\",\n        \"adm0_a3_it\": \"CIV\",\n        \"adm0_a3_nl\": \"CIV\",\n        \"adm0_a3_se\": \"CIV\",\n        \"adm0_a3_bd\": \"CIV\",\n        \"adm0_a3_ua\": \"CIV\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Western Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 13,\n        \"long_len\": 13,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.5,\n        \"max_label\": 8,\n        \"label_x\": -5.568618,\n        \"label_y\": 7.49139,\n        \"ne_id\": 1159320507,\n        \"wikidataid\": \"Q1008\",\n        \"name_ar\": \"ساحل العاج\",\n        \"name_bn\": \"কোত দিভোয়ার\",\n        \"name_de\": \"Elfenbeinküste\",\n        \"name_en\": \"Ivory Coast\",\n        \"name_es\": \"Costa de Marfil\",\n        \"name_fa\": \"ساحل عاج\",\n        \"name_fr\": \"Côte d'Ivoire\",\n        \"name_el\": \"Ακτή Ελεφαντοστού\",\n        \"name_he\": \"חוף השנהב\",\n        \"name_hi\": \"कोत दिव्वार\",\n        \"name_hu\": \"Elefántcsontpart\",\n        \"name_id\": \"Pantai Gading\",\n        \"name_it\": \"Costa d'Avorio\",\n        \"name_ja\": \"コートジボワール\",\n        \"name_ko\": \"코트디부아르\",\n        \"name_nl\": \"Ivoorkust\",\n        \"name_pl\": \"Wybrzeże Kości Słoniowej\",\n        \"name_pt\": \"Costa do Marfim\",\n        \"name_ru\": \"Кот-д’Ивуар\",\n        \"name_sv\": \"Elfenbenskusten\",\n        \"name_tr\": \"Fildişi Sahili\",\n        \"name_uk\": \"Кот-д'Івуар\",\n        \"name_ur\": \"کوت داوواغ\",\n        \"name_vi\": \"Bờ Biển Ngà\",\n        \"name_zh\": \"科特迪瓦\",\n        \"name_zht\": \"象牙海岸\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"CIV.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.029943610048619, 10.206534939001713],\n            [-7.899589809592372, 10.297382106970828],\n            [-7.622759161804809, 10.147236232946796],\n            [-6.850506557635057, 10.138993841996239],\n            [-6.666460944027548, 10.430810655148449],\n            [-6.493965013037268, 10.411302801958271],\n            [-6.205222947606431, 10.524060777219134],\n            [-6.050452032892267, 10.096360785355444],\n            [-5.816926235365287, 10.222554633012194],\n            [-5.404341599946974, 10.370736802609146],\n            [-4.954653286143099, 10.152713934769736],\n            [-4.779883592131966, 9.821984768101743],\n            [-4.330246954760383, 9.610834865757141],\n            [-3.980449184576685, 9.8623440617217],\n            [-3.511898972986273, 9.90032623945622],\n            [-2.827496303712707, 9.642460842319778],\n            [-2.562189500326241, 8.219627793811483],\n            [-2.983584967450327, 7.379704901555513],\n            [-3.244370083011262, 6.250471503113502],\n            [-2.81070146321784, 5.38905121502411],\n            [-2.856125047202397, 4.994475816259509],\n            [-3.311084357100071, 4.984295559098015],\n            [-4.008819545904942, 5.179813340674315],\n            [-4.649917364917911, 5.168263658057086],\n            [-5.834496222344526, 4.993700669775137],\n            [-6.528769090185847, 4.705087795425015],\n            [-7.518941209330436, 4.338288479017308],\n            [-7.71215938966975, 4.364565944837722],\n            [-7.635368211284031, 5.188159084489456],\n            [-7.539715135111763, 5.313345241716519],\n            [-7.570152553731688, 5.707352199725904],\n            [-7.993692592795881, 6.126189683451543],\n            [-8.311347622094019, 6.193033148621083],\n            [-8.60288021486862, 6.46756419517166],\n            [-8.385451626000574, 6.911800645368743],\n            [-8.48544552248535, 7.39520783124307],\n            [-8.439298468448698, 7.686042792181738],\n            [-8.280703497744938, 7.687179673692157],\n            [-8.221792364932199, 8.123328762235573],\n            [-8.299048631208564, 8.316443589710303],\n            [-8.20349890790088, 8.455453192575447],\n            [-7.832100389019188, 8.575704250518626],\n            [-8.07911373537435, 9.376223863152035],\n            [-8.30961646161225, 9.789531968622441],\n            [-8.229337124046822, 10.1290202905639],\n            [-8.029943610048619, 10.206534939001713]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Mali\",\n        \"sov_a3\": \"MLI\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Mali\",\n        \"adm0_a3\": \"MLI\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Mali\",\n        \"gu_a3\": \"MLI\",\n        \"su_dif\": 0,\n        \"subunit\": \"Mali\",\n        \"su_a3\": \"MLI\",\n        \"brk_diff\": 0,\n        \"name\": \"Mali\",\n        \"name_long\": \"Mali\",\n        \"brk_a3\": \"MLI\",\n        \"brk_name\": \"Mali\",\n        \"brk_group\": null,\n        \"abbrev\": \"Mali\",\n        \"postal\": \"ML\",\n        \"formal_en\": \"Republic of Mali\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Mali\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Mali\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 7,\n        \"pop_est\": 19658031,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 17279,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"ML\",\n        \"iso_a2\": \"ML\",\n        \"iso_a2_eh\": \"ML\",\n        \"iso_a3\": \"MLI\",\n        \"iso_a3_eh\": \"MLI\",\n        \"iso_n3\": \"466\",\n        \"iso_n3_eh\": \"466\",\n        \"un_a3\": \"466\",\n        \"wb_a2\": \"ML\",\n        \"wb_a3\": \"MLI\",\n        \"woe_id\": 23424891,\n        \"woe_id_eh\": 23424891,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"MLI\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"MLI\",\n        \"adm0_a3_us\": \"MLI\",\n        \"adm0_a3_fr\": \"MLI\",\n        \"adm0_a3_ru\": \"MLI\",\n        \"adm0_a3_es\": \"MLI\",\n        \"adm0_a3_cn\": \"MLI\",\n        \"adm0_a3_tw\": \"MLI\",\n        \"adm0_a3_in\": \"MLI\",\n        \"adm0_a3_np\": \"MLI\",\n        \"adm0_a3_pk\": \"MLI\",\n        \"adm0_a3_de\": \"MLI\",\n        \"adm0_a3_gb\": \"MLI\",\n        \"adm0_a3_br\": \"MLI\",\n        \"adm0_a3_il\": \"MLI\",\n        \"adm0_a3_ps\": \"MLI\",\n        \"adm0_a3_sa\": \"MLI\",\n        \"adm0_a3_eg\": \"MLI\",\n        \"adm0_a3_ma\": \"MLI\",\n        \"adm0_a3_pt\": \"MLI\",\n        \"adm0_a3_ar\": \"MLI\",\n        \"adm0_a3_jp\": \"MLI\",\n        \"adm0_a3_ko\": \"MLI\",\n        \"adm0_a3_vn\": \"MLI\",\n        \"adm0_a3_tr\": \"MLI\",\n        \"adm0_a3_id\": \"MLI\",\n        \"adm0_a3_pl\": \"MLI\",\n        \"adm0_a3_gr\": \"MLI\",\n        \"adm0_a3_it\": \"MLI\",\n        \"adm0_a3_nl\": \"MLI\",\n        \"adm0_a3_se\": \"MLI\",\n        \"adm0_a3_bd\": \"MLI\",\n        \"adm0_a3_ua\": \"MLI\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Western Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 4,\n        \"long_len\": 4,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 7,\n        \"label_x\": -2.038455,\n        \"label_y\": 18.692713,\n        \"ne_id\": 1159321063,\n        \"wikidataid\": \"Q912\",\n        \"name_ar\": \"مالي\",\n        \"name_bn\": \"মালি\",\n        \"name_de\": \"Mali\",\n        \"name_en\": \"Mali\",\n        \"name_es\": \"Malí\",\n        \"name_fa\": \"مالی\",\n        \"name_fr\": \"Mali\",\n        \"name_el\": \"Μάλι\",\n        \"name_he\": \"מאלי\",\n        \"name_hi\": \"माली\",\n        \"name_hu\": \"Mali\",\n        \"name_id\": \"Mali\",\n        \"name_it\": \"Mali\",\n        \"name_ja\": \"マリ共和国\",\n        \"name_ko\": \"말리\",\n        \"name_nl\": \"Mali\",\n        \"name_pl\": \"Mali\",\n        \"name_pt\": \"Mali\",\n        \"name_ru\": \"Мали\",\n        \"name_sv\": \"Mali\",\n        \"name_tr\": \"Mali\",\n        \"name_uk\": \"Малі\",\n        \"name_ur\": \"مالی\",\n        \"name_vi\": \"Mali\",\n        \"name_zh\": \"马里\",\n        \"name_zht\": \"馬利共和國\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"MLI.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-11.51394283695059, 12.442987575729418],\n            [-11.467899135778524, 12.754518947800975],\n            [-11.55339779300543, 13.141213690641067],\n            [-11.927716030311615, 13.422075100147396],\n            [-12.12488745772126, 13.994727484589788],\n            [-12.170750291380301, 14.616834214735505],\n            [-11.834207526079467, 14.79909699142894],\n            [-11.666078253617854, 15.388208319556298],\n            [-11.349095017939504, 15.411256008358478],\n            [-10.650791388379417, 15.132745876521426],\n            [-10.086846482778213, 15.330485744686271],\n            [-9.700255092802706, 15.264107367407362],\n            [-9.55023840985939, 15.486496893775438],\n            [-5.537744309908447, 15.501689764869257],\n            [-5.315277268891933, 16.20185374599184],\n            [-5.488522508150439, 16.325102037007966],\n            [-5.971128709324248, 20.64083344164763],\n            [-6.453786586930335, 24.956590684503425],\n            [-4.923337368174231, 24.974574082941],\n            [-1.550054897457613, 22.792665920497384],\n            [1.823227573259032, 20.610809434486043],\n            [2.06099083823392, 20.142233384679486],\n            [2.683588494486429, 19.856230170160117],\n            [3.1466610042539, 19.693578599521445],\n            [3.158133172222705, 19.057364203360038],\n            [4.267419467800039, 19.155265204337],\n            [4.270209995143802, 16.852227484601215],\n            [3.723421665063483, 16.184283759012615],\n            [3.638258904646477, 15.568119818580456],\n            [2.749992709981484, 15.409524847876696],\n            [1.385528191746858, 15.323561102759172],\n            [1.015783318698482, 14.96818227788799],\n            [0.374892205414682, 14.92890818934613],\n            [-0.26625729003058, 14.924308986872148],\n            [-0.515854458000348, 15.116157741755728],\n            [-1.066363491205664, 14.973815009007765],\n            [-2.001035122068771, 14.559008287000893],\n            [-2.191824510090385, 14.246417548067356],\n            [-2.967694464520577, 13.79815033615151],\n            [-3.10370683431276, 13.541266791228594],\n            [-3.522802700199861, 13.337661647998615],\n            [-4.006390753587226, 13.472485459848116],\n            [-4.28040503581488, 13.228443508349741],\n            [-4.427166103523803, 12.542645575404295],\n            [-5.220941941743121, 11.713858954307227],\n            [-5.197842576508648, 11.37514577885014],\n            [-5.470564947929006, 10.951269842976048],\n            [-5.404341599946974, 10.370736802609146],\n            [-5.816926235365287, 10.222554633012194],\n            [-6.050452032892267, 10.096360785355444],\n            [-6.205222947606431, 10.524060777219134],\n            [-6.493965013037268, 10.411302801958271],\n            [-6.666460944027548, 10.430810655148449],\n            [-6.850506557635057, 10.138993841996239],\n            [-7.622759161804809, 10.147236232946796],\n            [-7.899589809592372, 10.297382106970828],\n            [-8.029943610048619, 10.206534939001713],\n            [-8.33537716310974, 10.494811916541934],\n            [-8.282357143578281, 10.792597357623846],\n            [-8.407310756860028, 10.909256903522762],\n            [-8.620321010767128, 10.810890814655183],\n            [-8.581305304386774, 11.136245632364805],\n            [-8.376304897484914, 11.393645941610629],\n            [-8.786099005559464, 11.812560939984706],\n            [-8.90526485842453, 12.088358059126437],\n            [-9.127473517279583, 12.308060411015333],\n            [-9.327616339546012, 12.334286200403454],\n            [-9.567911749703214, 12.194243068892476],\n            [-9.890992804392013, 12.060478623904972],\n            [-10.165213792348837, 11.844083563682744],\n            [-10.593223842806282, 11.92397532800598],\n            [-10.870829637078215, 12.17788747807211],\n            [-11.03655595543826, 12.211244615116515],\n            [-11.297573614944511, 12.077971096235771],\n            [-11.456168585648271, 12.076834214725338],\n            [-11.51394283695059, 12.442987575729418]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Senegal\",\n        \"sov_a3\": \"SEN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Senegal\",\n        \"adm0_a3\": \"SEN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Senegal\",\n        \"gu_a3\": \"SEN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Senegal\",\n        \"su_a3\": \"SEN\",\n        \"brk_diff\": 0,\n        \"name\": \"Senegal\",\n        \"name_long\": \"Senegal\",\n        \"brk_a3\": \"SEN\",\n        \"brk_name\": \"Senegal\",\n        \"brk_group\": null,\n        \"abbrev\": \"Sen.\",\n        \"postal\": \"SN\",\n        \"formal_en\": \"Republic of Senegal\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Senegal\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Senegal\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 5,\n        \"pop_est\": 16296364,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 23578,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"SG\",\n        \"iso_a2\": \"SN\",\n        \"iso_a2_eh\": \"SN\",\n        \"iso_a3\": \"SEN\",\n        \"iso_a3_eh\": \"SEN\",\n        \"iso_n3\": \"686\",\n        \"iso_n3_eh\": \"686\",\n        \"un_a3\": \"686\",\n        \"wb_a2\": \"SN\",\n        \"wb_a3\": \"SEN\",\n        \"woe_id\": 23424943,\n        \"woe_id_eh\": 23424943,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"SEN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"SEN\",\n        \"adm0_a3_us\": \"SEN\",\n        \"adm0_a3_fr\": \"SEN\",\n        \"adm0_a3_ru\": \"SEN\",\n        \"adm0_a3_es\": \"SEN\",\n        \"adm0_a3_cn\": \"SEN\",\n        \"adm0_a3_tw\": \"SEN\",\n        \"adm0_a3_in\": \"SEN\",\n        \"adm0_a3_np\": \"SEN\",\n        \"adm0_a3_pk\": \"SEN\",\n        \"adm0_a3_de\": \"SEN\",\n        \"adm0_a3_gb\": \"SEN\",\n        \"adm0_a3_br\": \"SEN\",\n        \"adm0_a3_il\": \"SEN\",\n        \"adm0_a3_ps\": \"SEN\",\n        \"adm0_a3_sa\": \"SEN\",\n        \"adm0_a3_eg\": \"SEN\",\n        \"adm0_a3_ma\": \"SEN\",\n        \"adm0_a3_pt\": \"SEN\",\n        \"adm0_a3_ar\": \"SEN\",\n        \"adm0_a3_jp\": \"SEN\",\n        \"adm0_a3_ko\": \"SEN\",\n        \"adm0_a3_vn\": \"SEN\",\n        \"adm0_a3_tr\": \"SEN\",\n        \"adm0_a3_id\": \"SEN\",\n        \"adm0_a3_pl\": \"SEN\",\n        \"adm0_a3_gr\": \"SEN\",\n        \"adm0_a3_it\": \"SEN\",\n        \"adm0_a3_nl\": \"SEN\",\n        \"adm0_a3_se\": \"SEN\",\n        \"adm0_a3_bd\": \"SEN\",\n        \"adm0_a3_ua\": \"SEN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Western Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.7,\n        \"max_label\": 8,\n        \"label_x\": -14.778586,\n        \"label_y\": 15.138125,\n        \"ne_id\": 1159321243,\n        \"wikidataid\": \"Q1041\",\n        \"name_ar\": \"السنغال\",\n        \"name_bn\": \"সেনেগাল\",\n        \"name_de\": \"Senegal\",\n        \"name_en\": \"Senegal\",\n        \"name_es\": \"Senegal\",\n        \"name_fa\": \"سنگال\",\n        \"name_fr\": \"Sénégal\",\n        \"name_el\": \"Σενεγάλη\",\n        \"name_he\": \"סנגל\",\n        \"name_hi\": \"सेनेगल\",\n        \"name_hu\": \"Szenegál\",\n        \"name_id\": \"Senegal\",\n        \"name_it\": \"Senegal\",\n        \"name_ja\": \"セネガル\",\n        \"name_ko\": \"세네갈\",\n        \"name_nl\": \"Senegal\",\n        \"name_pl\": \"Senegal\",\n        \"name_pt\": \"Senegal\",\n        \"name_ru\": \"Сенегал\",\n        \"name_sv\": \"Senegal\",\n        \"name_tr\": \"Senegal\",\n        \"name_uk\": \"Сенегал\",\n        \"name_ur\": \"سینیگال\",\n        \"name_vi\": \"Sénégal\",\n        \"name_zh\": \"塞内加尔\",\n        \"name_zht\": \"塞內加爾\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"SEN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-16.71372880702347, 13.594958604379855],\n            [-17.126106736712615, 14.373515733289224],\n            [-17.62504269049066, 14.729540513564073],\n            [-17.18517289882223, 14.919477240452862],\n            [-16.700706346085923, 15.621527411354108],\n            [-16.463098110407884, 16.13503611903846],\n            [-16.12069007004193, 16.455662543193384],\n            [-15.623666144258692, 16.369337063049812],\n            [-15.135737270558819, 16.587282416240782],\n            [-14.577347581428981, 16.59826365810281],\n            [-14.099521450242179, 16.304302273010492],\n            [-13.435737677453062, 16.03938304286619],\n            [-12.830658331747516, 15.303691514542948],\n            [-12.170750291380301, 14.616834214735505],\n            [-12.12488745772126, 13.994727484589788],\n            [-11.927716030311615, 13.422075100147396],\n            [-11.55339779300543, 13.141213690641067],\n            [-11.467899135778524, 12.754518947800975],\n            [-11.51394283695059, 12.442987575729418],\n            [-11.658300950557932, 12.386582749882836],\n            [-12.203564825885634, 12.465647691289405],\n            [-12.27859900557344, 12.354440008997287],\n            [-12.499050665730564, 12.332089952031057],\n            [-13.217818162478238, 12.575873521367967],\n            [-13.700476040084325, 12.586182969610194],\n            [-15.54847693527401, 12.628170070847347],\n            [-15.816574266004254, 12.515567124883347],\n            [-16.147716844130585, 12.547761542201187],\n            [-16.677451951554573, 12.384851589401052],\n            [-16.841524624081273, 13.15139394780256],\n            [-15.931295945692211, 13.130284125211332],\n            [-15.691000535534995, 13.270353094938457],\n            [-15.511812506562933, 13.278569647672867],\n            [-15.141163295949468, 13.509511623585238],\n            [-14.712197231494628, 13.298206691943777],\n            [-14.277701788784555, 13.280585028532244],\n            [-13.844963344772408, 13.505041612192002],\n            [-14.046992356817482, 13.79406789800045],\n            [-14.376713833055788, 13.625680243377374],\n            [-14.687030808968487, 13.630356960499784],\n            [-15.08173539881382, 13.876491807505985],\n            [-15.39877031092446, 13.86036876063092],\n            [-15.624596320039942, 13.62358734786956],\n            [-16.71372880702347, 13.594958604379855]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Nigeria\",\n        \"sov_a3\": \"NGA\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Nigeria\",\n        \"adm0_a3\": \"NGA\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Nigeria\",\n        \"gu_a3\": \"NGA\",\n        \"su_dif\": 0,\n        \"subunit\": \"Nigeria\",\n        \"su_a3\": \"NGA\",\n        \"brk_diff\": 0,\n        \"name\": \"Nigeria\",\n        \"name_long\": \"Nigeria\",\n        \"brk_a3\": \"NGA\",\n        \"brk_name\": \"Nigeria\",\n        \"brk_group\": null,\n        \"abbrev\": \"Nigeria\",\n        \"postal\": \"NG\",\n        \"formal_en\": \"Federal Republic of Nigeria\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Nigeria\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Nigeria\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 2,\n        \"pop_est\": 200963599,\n        \"pop_rank\": 17,\n        \"pop_year\": 2019,\n        \"gdp_md\": 448120,\n        \"gdp_year\": 2019,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"NI\",\n        \"iso_a2\": \"NG\",\n        \"iso_a2_eh\": \"NG\",\n        \"iso_a3\": \"NGA\",\n        \"iso_a3_eh\": \"NGA\",\n        \"iso_n3\": \"566\",\n        \"iso_n3_eh\": \"566\",\n        \"un_a3\": \"566\",\n        \"wb_a2\": \"NG\",\n        \"wb_a3\": \"NGA\",\n        \"woe_id\": 23424908,\n        \"woe_id_eh\": 23424908,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"NGA\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"NGA\",\n        \"adm0_a3_us\": \"NGA\",\n        \"adm0_a3_fr\": \"NGA\",\n        \"adm0_a3_ru\": \"NGA\",\n        \"adm0_a3_es\": \"NGA\",\n        \"adm0_a3_cn\": \"NGA\",\n        \"adm0_a3_tw\": \"NGA\",\n        \"adm0_a3_in\": \"NGA\",\n        \"adm0_a3_np\": \"NGA\",\n        \"adm0_a3_pk\": \"NGA\",\n        \"adm0_a3_de\": \"NGA\",\n        \"adm0_a3_gb\": \"NGA\",\n        \"adm0_a3_br\": \"NGA\",\n        \"adm0_a3_il\": \"NGA\",\n        \"adm0_a3_ps\": \"NGA\",\n        \"adm0_a3_sa\": \"NGA\",\n        \"adm0_a3_eg\": \"NGA\",\n        \"adm0_a3_ma\": \"NGA\",\n        \"adm0_a3_pt\": \"NGA\",\n        \"adm0_a3_ar\": \"NGA\",\n        \"adm0_a3_jp\": \"NGA\",\n        \"adm0_a3_ko\": \"NGA\",\n        \"adm0_a3_vn\": \"NGA\",\n        \"adm0_a3_tr\": \"NGA\",\n        \"adm0_a3_id\": \"NGA\",\n        \"adm0_a3_pl\": \"NGA\",\n        \"adm0_a3_gr\": \"NGA\",\n        \"adm0_a3_it\": \"NGA\",\n        \"adm0_a3_nl\": \"NGA\",\n        \"adm0_a3_se\": \"NGA\",\n        \"adm0_a3_bd\": \"NGA\",\n        \"adm0_a3_ua\": \"NGA\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Western Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 7,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 6.7,\n        \"label_x\": 7.50322,\n        \"label_y\": 9.439799,\n        \"ne_id\": 1159321089,\n        \"wikidataid\": \"Q1033\",\n        \"name_ar\": \"نيجيريا\",\n        \"name_bn\": \"নাইজেরিয়া\",\n        \"name_de\": \"Nigeria\",\n        \"name_en\": \"Nigeria\",\n        \"name_es\": \"Nigeria\",\n        \"name_fa\": \"نیجریه\",\n        \"name_fr\": \"Nigeria\",\n        \"name_el\": \"Νιγηρία\",\n        \"name_he\": \"ניגריה\",\n        \"name_hi\": \"नाईजीरिया\",\n        \"name_hu\": \"Nigéria\",\n        \"name_id\": \"Nigeria\",\n        \"name_it\": \"Nigeria\",\n        \"name_ja\": \"ナイジェリア\",\n        \"name_ko\": \"나이지리아\",\n        \"name_nl\": \"Nigeria\",\n        \"name_pl\": \"Nigeria\",\n        \"name_pt\": \"Nigéria\",\n        \"name_ru\": \"Нигерия\",\n        \"name_sv\": \"Nigeria\",\n        \"name_tr\": \"Nijerya\",\n        \"name_uk\": \"Нігерія\",\n        \"name_ur\": \"نائجیریا\",\n        \"name_vi\": \"Nigeria\",\n        \"name_zh\": \"尼日利亚\",\n        \"name_zht\": \"奈及利亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"NGA.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.691701694356254, 6.258817246928629],\n            [2.74906253420022, 7.870734361192888],\n            [2.723792758809509, 8.50684540448971],\n            [2.912308383810256, 9.137607937044322],\n            [3.220351596702101, 9.444152533399702],\n            [3.705438266625919, 10.063210354040208],\n            [3.600070021182802, 10.332186184119408],\n            [3.797112257511714, 10.734745591673105],\n            [3.572216424177469, 11.32793935795152],\n            [3.611180454125559, 11.660167141155968],\n            [3.680633579125811, 12.552903347214226],\n            [3.967282749048849, 12.956108710171575],\n            [4.107945997747322, 13.531215725147831],\n            [4.368343540066007, 13.747481594289411],\n            [5.443058302440136, 13.865923977102227],\n            [6.445426059605637, 13.492768459522678],\n            [6.820441928747754, 13.115091254117518],\n            [7.330746697630019, 13.0980380314612],\n            [7.804671258178786, 13.343526923063747],\n            [9.014933302454438, 12.826659247280418],\n            [9.524928012742947, 12.851102199754479],\n            [10.114814487354693, 13.27725189864941],\n            [10.701031935273706, 13.246917832894084],\n            [10.989593133191534, 13.387322699431195],\n            [11.527803175511394, 13.328980007373588],\n            [12.302071160540523, 13.037189032437524],\n            [13.083987257548813, 13.596147162322495],\n            [13.318701613018561, 13.556356309457826],\n            [13.995352817448293, 12.461565253138303],\n            [14.181336297266794, 12.483656927943116],\n            [14.577177768622533, 12.085360826053503],\n            [14.468192172918975, 11.904751695193411],\n            [14.415378859116684, 11.572368882692075],\n            [13.572949659894562, 10.798565985553566],\n            [13.308676385153918, 10.160362046748928],\n            [13.167599724997103, 9.640626328973411],\n            [12.955467970438974, 9.417771714714704],\n            [12.753671502339216, 8.717762762888995],\n            [12.218872104550599, 8.305824082874324],\n            [12.063946160539558, 7.799808457872302],\n            [11.839308709366803, 7.397042344589437],\n            [11.74577436691851, 6.981382961449754],\n            [11.058787876030351, 6.644426784690594],\n            [10.497375115611419, 7.055357774275564],\n            [10.118276808318257, 7.03876963950988],\n            [9.522705926154401, 6.453482367372117],\n            [9.233162876023044, 6.444490668153335],\n            [8.757532993208628, 5.479665839047911],\n            [8.500287713259695, 4.771982937026849],\n            [7.462108188515941, 4.412108262546241],\n            [7.082596469764439, 4.464689032403228],\n            [6.6980721370806, 4.240594183769517],\n            [5.898172641634687, 4.262453314628985],\n            [5.362804803090881, 4.887970689305959],\n            [5.033574252959369, 5.611802476418234],\n            [4.325607130560684, 6.270651149923467],\n            [3.574180128604553, 6.258300482605719],\n            [2.691701694356254, 6.258817246928629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Benin\",\n        \"sov_a3\": \"BEN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Benin\",\n        \"adm0_a3\": \"BEN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Benin\",\n        \"gu_a3\": \"BEN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Benin\",\n        \"su_a3\": \"BEN\",\n        \"brk_diff\": 0,\n        \"name\": \"Benin\",\n        \"name_long\": \"Benin\",\n        \"brk_a3\": \"BEN\",\n        \"brk_name\": \"Benin\",\n        \"brk_group\": null,\n        \"abbrev\": \"Benin\",\n        \"postal\": \"BJ\",\n        \"formal_en\": \"Republic of Benin\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Benin\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Benin\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 12,\n        \"pop_est\": 11801151,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 14390,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"BN\",\n        \"iso_a2\": \"BJ\",\n        \"iso_a2_eh\": \"BJ\",\n        \"iso_a3\": \"BEN\",\n        \"iso_a3_eh\": \"BEN\",\n        \"iso_n3\": \"204\",\n        \"iso_n3_eh\": \"204\",\n        \"un_a3\": \"204\",\n        \"wb_a2\": \"BJ\",\n        \"wb_a3\": \"BEN\",\n        \"woe_id\": 23424764,\n        \"woe_id_eh\": 23424764,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"BEN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"BEN\",\n        \"adm0_a3_us\": \"BEN\",\n        \"adm0_a3_fr\": \"BEN\",\n        \"adm0_a3_ru\": \"BEN\",\n        \"adm0_a3_es\": \"BEN\",\n        \"adm0_a3_cn\": \"BEN\",\n        \"adm0_a3_tw\": \"BEN\",\n        \"adm0_a3_in\": \"BEN\",\n        \"adm0_a3_np\": \"BEN\",\n        \"adm0_a3_pk\": \"BEN\",\n        \"adm0_a3_de\": \"BEN\",\n        \"adm0_a3_gb\": \"BEN\",\n        \"adm0_a3_br\": \"BEN\",\n        \"adm0_a3_il\": \"BEN\",\n        \"adm0_a3_ps\": \"BEN\",\n        \"adm0_a3_sa\": \"BEN\",\n        \"adm0_a3_eg\": \"BEN\",\n        \"adm0_a3_ma\": \"BEN\",\n        \"adm0_a3_pt\": \"BEN\",\n        \"adm0_a3_ar\": \"BEN\",\n        \"adm0_a3_jp\": \"BEN\",\n        \"adm0_a3_ko\": \"BEN\",\n        \"adm0_a3_vn\": \"BEN\",\n        \"adm0_a3_tr\": \"BEN\",\n        \"adm0_a3_id\": \"BEN\",\n        \"adm0_a3_pl\": \"BEN\",\n        \"adm0_a3_gr\": \"BEN\",\n        \"adm0_a3_it\": \"BEN\",\n        \"adm0_a3_nl\": \"BEN\",\n        \"adm0_a3_se\": \"BEN\",\n        \"adm0_a3_bd\": \"BEN\",\n        \"adm0_a3_ua\": \"BEN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Western Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 2.352018,\n        \"label_y\": 10.324775,\n        \"ne_id\": 1159320399,\n        \"wikidataid\": \"Q962\",\n        \"name_ar\": \"بنين\",\n        \"name_bn\": \"বেনিন\",\n        \"name_de\": \"Benin\",\n        \"name_en\": \"Benin\",\n        \"name_es\": \"Benín\",\n        \"name_fa\": \"بنین\",\n        \"name_fr\": \"Bénin\",\n        \"name_el\": \"Μπενίν\",\n        \"name_he\": \"בנין\",\n        \"name_hi\": \"बेनिन\",\n        \"name_hu\": \"Benin\",\n        \"name_id\": \"Benin\",\n        \"name_it\": \"Benin\",\n        \"name_ja\": \"ベナン\",\n        \"name_ko\": \"베냉\",\n        \"name_nl\": \"Benin\",\n        \"name_pl\": \"Benin\",\n        \"name_pt\": \"Benim\",\n        \"name_ru\": \"Бенин\",\n        \"name_sv\": \"Benin\",\n        \"name_tr\": \"Benin\",\n        \"name_uk\": \"Бенін\",\n        \"name_ur\": \"بینن\",\n        \"name_vi\": \"Bénin\",\n        \"name_zh\": \"贝宁\",\n        \"name_zht\": \"貝南\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"BEN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [2.691701694356254, 6.258817246928629],\n            [1.865240512712319, 6.142157701029731],\n            [1.618950636409238, 6.832038072126238],\n            [1.664477573258381, 9.12859039960938],\n            [1.46304284018467, 9.334624335157088],\n            [1.425060662450136, 9.825395412633],\n            [1.077795037448738, 10.175606594275024],\n            [0.772335646171484, 10.470808213742359],\n            [0.899563022474069, 10.99733938236426],\n            [1.243469679376489, 11.110510769083461],\n            [1.447178175471066, 11.547719224488858],\n            [1.935985548519881, 11.641150214072553],\n            [2.154473504249921, 11.940150051313339],\n            [2.49016360841793, 12.233052069543675],\n            [2.848643019226586, 12.23563589115821],\n            [3.611180454125559, 11.660167141155968],\n            [3.572216424177469, 11.32793935795152],\n            [3.797112257511714, 10.734745591673105],\n            [3.600070021182802, 10.332186184119408],\n            [3.705438266625919, 10.063210354040208],\n            [3.220351596702101, 9.444152533399702],\n            [2.912308383810256, 9.137607937044322],\n            [2.723792758809509, 8.50684540448971],\n            [2.74906253420022, 7.870734361192888],\n            [2.691701694356254, 6.258817246928629]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Angola\",\n        \"sov_a3\": \"AGO\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Angola\",\n        \"adm0_a3\": \"AGO\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Angola\",\n        \"gu_a3\": \"AGO\",\n        \"su_dif\": 0,\n        \"subunit\": \"Angola\",\n        \"su_a3\": \"AGO\",\n        \"brk_diff\": 0,\n        \"name\": \"Angola\",\n        \"name_long\": \"Angola\",\n        \"brk_a3\": \"AGO\",\n        \"brk_name\": \"Angola\",\n        \"brk_group\": null,\n        \"abbrev\": \"Ang.\",\n        \"postal\": \"AO\",\n        \"formal_en\": \"People's Republic of Angola\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Angola\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Angola\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 6,\n        \"mapcolor13\": 1,\n        \"pop_est\": 31825295,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 88815,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"AO\",\n        \"iso_a2\": \"AO\",\n        \"iso_a2_eh\": \"AO\",\n        \"iso_a3\": \"AGO\",\n        \"iso_a3_eh\": \"AGO\",\n        \"iso_n3\": \"024\",\n        \"iso_n3_eh\": \"024\",\n        \"un_a3\": \"024\",\n        \"wb_a2\": \"AO\",\n        \"wb_a3\": \"AGO\",\n        \"woe_id\": 23424745,\n        \"woe_id_eh\": 23424745,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"AGO\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"AGO\",\n        \"adm0_a3_us\": \"AGO\",\n        \"adm0_a3_fr\": \"AGO\",\n        \"adm0_a3_ru\": \"AGO\",\n        \"adm0_a3_es\": \"AGO\",\n        \"adm0_a3_cn\": \"AGO\",\n        \"adm0_a3_tw\": \"AGO\",\n        \"adm0_a3_in\": \"AGO\",\n        \"adm0_a3_np\": \"AGO\",\n        \"adm0_a3_pk\": \"AGO\",\n        \"adm0_a3_de\": \"AGO\",\n        \"adm0_a3_gb\": \"AGO\",\n        \"adm0_a3_br\": \"AGO\",\n        \"adm0_a3_il\": \"AGO\",\n        \"adm0_a3_ps\": \"AGO\",\n        \"adm0_a3_sa\": \"AGO\",\n        \"adm0_a3_eg\": \"AGO\",\n        \"adm0_a3_ma\": \"AGO\",\n        \"adm0_a3_pt\": \"AGO\",\n        \"adm0_a3_ar\": \"AGO\",\n        \"adm0_a3_jp\": \"AGO\",\n        \"adm0_a3_ko\": \"AGO\",\n        \"adm0_a3_vn\": \"AGO\",\n        \"adm0_a3_tr\": \"AGO\",\n        \"adm0_a3_id\": \"AGO\",\n        \"adm0_a3_pl\": \"AGO\",\n        \"adm0_a3_gr\": \"AGO\",\n        \"adm0_a3_it\": \"AGO\",\n        \"adm0_a3_nl\": \"AGO\",\n        \"adm0_a3_se\": \"AGO\",\n        \"adm0_a3_bd\": \"AGO\",\n        \"adm0_a3_ua\": \"AGO\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Middle Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 7,\n        \"label_x\": 17.984249,\n        \"label_y\": -12.182762,\n        \"ne_id\": 1159320323,\n        \"wikidataid\": \"Q916\",\n        \"name_ar\": \"أنغولا\",\n        \"name_bn\": \"অ্যাঙ্গোলা\",\n        \"name_de\": \"Angola\",\n        \"name_en\": \"Angola\",\n        \"name_es\": \"Angola\",\n        \"name_fa\": \"آنگولا\",\n        \"name_fr\": \"Angola\",\n        \"name_el\": \"Ανγκόλα\",\n        \"name_he\": \"אנגולה\",\n        \"name_hi\": \"अंगोला\",\n        \"name_hu\": \"Angola\",\n        \"name_id\": \"Angola\",\n        \"name_it\": \"Angola\",\n        \"name_ja\": \"アンゴラ\",\n        \"name_ko\": \"앙골라\",\n        \"name_nl\": \"Angola\",\n        \"name_pl\": \"Angola\",\n        \"name_pt\": \"Angola\",\n        \"name_ru\": \"Ангола\",\n        \"name_sv\": \"Angola\",\n        \"name_tr\": \"Angola\",\n        \"name_uk\": \"Ангола\",\n        \"name_ur\": \"انگولا\",\n        \"name_vi\": \"Angola\",\n        \"name_zh\": \"安哥拉\",\n        \"name_zht\": \"安哥拉\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"AGO.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [12.995517205465177, -4.781103203961884],\n              [12.63161176926579, -4.991271254092936],\n              [12.468004184629736, -5.248361504745005],\n              [12.436688266660868, -5.684303887559246],\n              [12.182336866920252, -5.789930515163839],\n              [11.91496300624209, -5.037986748884791],\n              [12.318607618873926, -4.606230157086188],\n              [12.620759718484493, -4.438023369976136],\n              [12.995517205465177, -4.781103203961884]\n            ]\n          ],\n          [\n            [\n              [12.32243167486351, -6.10009246177966],\n              [12.735171339578699, -5.965682061388499],\n              [13.024869419006961, -5.984388929878158],\n              [13.375597364971895, -5.864241224799549],\n              [16.326528354567046, -5.877470391466268],\n              [16.573179965896145, -6.622644545115087],\n              [16.8601908708452, -7.222297865429987],\n              [17.08999596524717, -7.545688978712526],\n              [17.472970004962235, -8.0685511206417],\n              [18.13422163256905, -7.987677504104923],\n              [18.464175652752687, -7.847014255406443],\n              [19.01675174324967, -7.988245944860132],\n              [19.16661339689611, -7.738183688999754],\n              [19.41750247567316, -7.155428562044299],\n              [20.037723016040218, -7.116361179231646],\n              [20.091621534920648, -6.943090101756994],\n              [20.6018229509383, -6.939317722199682],\n              [20.5147481625265, -7.299605808138629],\n              [21.7281107927397, -7.290872491081302],\n              [21.74645592620331, -7.920084730667149],\n              [21.949130893652043, -8.305900974158277],\n              [21.8018013851879, -8.90870655684298],\n              [21.875181919042348, -9.523707777548566],\n              [22.208753289486395, -9.894796237836509],\n              [22.155268182064308, -11.084801120653772],\n              [22.402798292742375, -10.993075453335692],\n              [22.83734541188474, -11.01762175867433],\n              [23.45679080576744, -10.867863457892483],\n              [23.912215203555718, -10.926826267137514],\n              [24.01789350759259, -11.23729827234709],\n              [23.904153680118185, -11.722281589406322],\n              [24.079905226342845, -12.191296888887365],\n              [23.930922072045377, -12.565847670138856],\n              [24.016136508894675, -12.911046237848574],\n              [21.933886346125917, -12.898437188369359],\n              [21.887842644953874, -16.08031015387688],\n              [22.56247846852426, -16.898451429921813],\n              [23.215048455506064, -17.523116143465984],\n              [21.377176141045567, -17.930636488519696],\n              [18.956186964603603, -17.789094740472258],\n              [18.263309360434164, -17.309950860262006],\n              [14.209706658595024, -17.35310068122572],\n              [14.05850141770901, -17.423380629142663],\n              [13.462362094789967, -16.971211846588773],\n              [12.814081251688407, -16.94134286872407],\n              [12.215461460019355, -17.111668389558083],\n              [11.734198846085121, -17.301889336824473],\n              [11.64009606288161, -16.67314218512925],\n              [11.778537224991537, -15.793816013250735],\n              [12.12358076340439, -14.878316338767904],\n              [12.175618930722294, -14.449143568583892],\n              [12.50009524908299, -13.54769988368445],\n              [12.738478631245385, -13.137905775609902],\n              [13.312913852601866, -12.483630466362492],\n              [13.6337211442698, -12.03864470789717],\n              [13.738727654686897, -11.297863050993165],\n              [13.686379428775238, -10.73107594161589],\n              [13.387327915102162, -10.373578383020714],\n              [13.120987583069846, -9.766897067914122],\n              [12.875369500386569, -9.166933689005468],\n              [12.92906131353783, -8.959091078327553],\n              [13.236432732809874, -8.562629489784307],\n              [12.93304039882429, -7.596538588087733],\n              [12.728298374083892, -6.927122084178805],\n              [12.227347039446471, -6.294447523629394],\n              [12.32243167486351, -6.10009246177966]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Botswana\",\n        \"sov_a3\": \"BWA\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Botswana\",\n        \"adm0_a3\": \"BWA\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Botswana\",\n        \"gu_a3\": \"BWA\",\n        \"su_dif\": 0,\n        \"subunit\": \"Botswana\",\n        \"su_a3\": \"BWA\",\n        \"brk_diff\": 0,\n        \"name\": \"Botswana\",\n        \"name_long\": \"Botswana\",\n        \"brk_a3\": \"BWA\",\n        \"brk_name\": \"Botswana\",\n        \"brk_group\": null,\n        \"abbrev\": \"Bwa.\",\n        \"postal\": \"BW\",\n        \"formal_en\": \"Republic of Botswana\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Botswana\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Botswana\",\n        \"name_alt\": null,\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 7,\n        \"mapcolor13\": 3,\n        \"pop_est\": 2303697,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 18340,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"BC\",\n        \"iso_a2\": \"BW\",\n        \"iso_a2_eh\": \"BW\",\n        \"iso_a3\": \"BWA\",\n        \"iso_a3_eh\": \"BWA\",\n        \"iso_n3\": \"072\",\n        \"iso_n3_eh\": \"072\",\n        \"un_a3\": \"072\",\n        \"wb_a2\": \"BW\",\n        \"wb_a3\": \"BWA\",\n        \"woe_id\": 23424755,\n        \"woe_id_eh\": 23424755,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"BWA\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"BWA\",\n        \"adm0_a3_us\": \"BWA\",\n        \"adm0_a3_fr\": \"BWA\",\n        \"adm0_a3_ru\": \"BWA\",\n        \"adm0_a3_es\": \"BWA\",\n        \"adm0_a3_cn\": \"BWA\",\n        \"adm0_a3_tw\": \"BWA\",\n        \"adm0_a3_in\": \"BWA\",\n        \"adm0_a3_np\": \"BWA\",\n        \"adm0_a3_pk\": \"BWA\",\n        \"adm0_a3_de\": \"BWA\",\n        \"adm0_a3_gb\": \"BWA\",\n        \"adm0_a3_br\": \"BWA\",\n        \"adm0_a3_il\": \"BWA\",\n        \"adm0_a3_ps\": \"BWA\",\n        \"adm0_a3_sa\": \"BWA\",\n        \"adm0_a3_eg\": \"BWA\",\n        \"adm0_a3_ma\": \"BWA\",\n        \"adm0_a3_pt\": \"BWA\",\n        \"adm0_a3_ar\": \"BWA\",\n        \"adm0_a3_jp\": \"BWA\",\n        \"adm0_a3_ko\": \"BWA\",\n        \"adm0_a3_vn\": \"BWA\",\n        \"adm0_a3_tr\": \"BWA\",\n        \"adm0_a3_id\": \"BWA\",\n        \"adm0_a3_pl\": \"BWA\",\n        \"adm0_a3_gr\": \"BWA\",\n        \"adm0_a3_it\": \"BWA\",\n        \"adm0_a3_nl\": \"BWA\",\n        \"adm0_a3_se\": \"BWA\",\n        \"adm0_a3_bd\": \"BWA\",\n        \"adm0_a3_ua\": \"BWA\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Southern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 24.179216,\n        \"label_y\": -22.102634,\n        \"ne_id\": 1159320461,\n        \"wikidataid\": \"Q963\",\n        \"name_ar\": \"بوتسوانا\",\n        \"name_bn\": \"বতসোয়ানা\",\n        \"name_de\": \"Botswana\",\n        \"name_en\": \"Botswana\",\n        \"name_es\": \"Botsuana\",\n        \"name_fa\": \"بوتسوانا\",\n        \"name_fr\": \"Botswana\",\n        \"name_el\": \"Μποτσουάνα\",\n        \"name_he\": \"בוטסואנה\",\n        \"name_hi\": \"बोत्सवाना\",\n        \"name_hu\": \"Botswana\",\n        \"name_id\": \"Botswana\",\n        \"name_it\": \"Botswana\",\n        \"name_ja\": \"ボツワナ\",\n        \"name_ko\": \"보츠와나\",\n        \"name_nl\": \"Botswana\",\n        \"name_pl\": \"Botswana\",\n        \"name_pt\": \"Botsuana\",\n        \"name_ru\": \"Ботсвана\",\n        \"name_sv\": \"Botswana\",\n        \"name_tr\": \"Botsvana\",\n        \"name_uk\": \"Ботсвана\",\n        \"name_ur\": \"بوٹسوانا\",\n        \"name_vi\": \"Botswana\",\n        \"name_zh\": \"博茨瓦纳\",\n        \"name_zht\": \"波札那\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"BWA.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [29.43218834810904, -22.091312758067588],\n            [28.01723595552525, -22.82775359465908],\n            [27.119409620886245, -23.574323011979775],\n            [26.786406691197413, -24.240690606383485],\n            [26.4857532081233, -24.616326592713104],\n            [25.94165205252216, -24.69637338633322],\n            [25.76584882986521, -25.17484547292368],\n            [25.66466637543772, -25.486816094669713],\n            [25.025170525825786, -25.7196700985769],\n            [24.211266717228796, -25.670215752873574],\n            [23.73356977712271, -25.390129489851617],\n            [23.312096795350186, -25.26868987396572],\n            [22.8242712745149, -25.50045867279477],\n            [22.57953169118059, -25.979447523708146],\n            [22.105968865657868, -26.280256036079138],\n            [21.605896030369394, -26.726533705351756],\n            [20.88960900237174, -26.828542982695915],\n            [20.66647016773544, -26.477453301704923],\n            [20.75860924651184, -25.86813648855145],\n            [20.16572553882719, -24.91796192800077],\n            [19.895767856534434, -24.76779021576059],\n            [19.89545779794068, -21.84915699634787],\n            [20.88113406747587, -21.814327080983148],\n            [20.910641310314535, -18.252218926672022],\n            [21.655040317478978, -18.219146010005225],\n            [23.1968583513393, -17.869038181227786],\n            [23.579005568137717, -18.28126108162006],\n            [24.217364536239213, -17.88934701911849],\n            [24.520705193792537, -17.887124932529936],\n            [25.08444339366457, -17.661815687737374],\n            [25.264225701608012, -17.736539808831417],\n            [25.649163445750162, -18.53602589281899],\n            [25.85039147309473, -18.714412937090536],\n            [26.164790887158485, -19.29308562589494],\n            [27.296504754350508, -20.391519870691],\n            [27.724747348753255, -20.49905852629039],\n            [27.72722781750326, -20.851801853114715],\n            [28.021370070108617, -21.485975030200585],\n            [28.794656202924216, -21.63945403410745],\n            [29.43218834810904, -22.091312758067588]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Zimbabwe\",\n        \"sov_a3\": \"ZWE\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Zimbabwe\",\n        \"adm0_a3\": \"ZWE\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Zimbabwe\",\n        \"gu_a3\": \"ZWE\",\n        \"su_dif\": 0,\n        \"subunit\": \"Zimbabwe\",\n        \"su_a3\": \"ZWE\",\n        \"brk_diff\": 0,\n        \"name\": \"Zimbabwe\",\n        \"name_long\": \"Zimbabwe\",\n        \"brk_a3\": \"ZWE\",\n        \"brk_name\": \"Zimbabwe\",\n        \"brk_group\": null,\n        \"abbrev\": \"Zimb.\",\n        \"postal\": \"ZW\",\n        \"formal_en\": \"Republic of Zimbabwe\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Zimbabwe\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Zimbabwe\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 9,\n        \"pop_est\": 14645468,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 21440,\n        \"gdp_year\": 2019,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"ZI\",\n        \"iso_a2\": \"ZW\",\n        \"iso_a2_eh\": \"ZW\",\n        \"iso_a3\": \"ZWE\",\n        \"iso_a3_eh\": \"ZWE\",\n        \"iso_n3\": \"716\",\n        \"iso_n3_eh\": \"716\",\n        \"un_a3\": \"716\",\n        \"wb_a2\": \"ZW\",\n        \"wb_a3\": \"ZWE\",\n        \"woe_id\": 23425004,\n        \"woe_id_eh\": 23425004,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"ZWE\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"ZWE\",\n        \"adm0_a3_us\": \"ZWE\",\n        \"adm0_a3_fr\": \"ZWE\",\n        \"adm0_a3_ru\": \"ZWE\",\n        \"adm0_a3_es\": \"ZWE\",\n        \"adm0_a3_cn\": \"ZWE\",\n        \"adm0_a3_tw\": \"ZWE\",\n        \"adm0_a3_in\": \"ZWE\",\n        \"adm0_a3_np\": \"ZWE\",\n        \"adm0_a3_pk\": \"ZWE\",\n        \"adm0_a3_de\": \"ZWE\",\n        \"adm0_a3_gb\": \"ZWE\",\n        \"adm0_a3_br\": \"ZWE\",\n        \"adm0_a3_il\": \"ZWE\",\n        \"adm0_a3_ps\": \"ZWE\",\n        \"adm0_a3_sa\": \"ZWE\",\n        \"adm0_a3_eg\": \"ZWE\",\n        \"adm0_a3_ma\": \"ZWE\",\n        \"adm0_a3_pt\": \"ZWE\",\n        \"adm0_a3_ar\": \"ZWE\",\n        \"adm0_a3_jp\": \"ZWE\",\n        \"adm0_a3_ko\": \"ZWE\",\n        \"adm0_a3_vn\": \"ZWE\",\n        \"adm0_a3_tr\": \"ZWE\",\n        \"adm0_a3_id\": \"ZWE\",\n        \"adm0_a3_pl\": \"ZWE\",\n        \"adm0_a3_gr\": \"ZWE\",\n        \"adm0_a3_it\": \"ZWE\",\n        \"adm0_a3_nl\": \"ZWE\",\n        \"adm0_a3_se\": \"ZWE\",\n        \"adm0_a3_bd\": \"ZWE\",\n        \"adm0_a3_ua\": \"ZWE\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Eastern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.5,\n        \"max_label\": 8,\n        \"label_x\": 29.925444,\n        \"label_y\": -18.91164,\n        \"ne_id\": 1159321441,\n        \"wikidataid\": \"Q954\",\n        \"name_ar\": \"زيمبابوي\",\n        \"name_bn\": \"জিম্বাবুয়ে\",\n        \"name_de\": \"Simbabwe\",\n        \"name_en\": \"Zimbabwe\",\n        \"name_es\": \"Zimbabue\",\n        \"name_fa\": \"زیمبابوه\",\n        \"name_fr\": \"Zimbabwe\",\n        \"name_el\": \"Ζιμπάμπουε\",\n        \"name_he\": \"זימבבואה\",\n        \"name_hi\": \"ज़िम्बाब्वे\",\n        \"name_hu\": \"Zimbabwe\",\n        \"name_id\": \"Zimbabwe\",\n        \"name_it\": \"Zimbabwe\",\n        \"name_ja\": \"ジンバブエ\",\n        \"name_ko\": \"짐바브웨\",\n        \"name_nl\": \"Zimbabwe\",\n        \"name_pl\": \"Zimbabwe\",\n        \"name_pt\": \"Zimbábue\",\n        \"name_ru\": \"Зимбабве\",\n        \"name_sv\": \"Zimbabwe\",\n        \"name_tr\": \"Zimbabve\",\n        \"name_uk\": \"Зімбабве\",\n        \"name_ur\": \"زمبابوے\",\n        \"name_vi\": \"Zimbabwe\",\n        \"name_zh\": \"津巴布韦\",\n        \"name_zht\": \"辛巴威\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"ZWE.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [31.19140913262129, -22.2515096981724],\n            [30.65986535006709, -22.151567478119915],\n            [30.322883335091774, -22.271611830333935],\n            [29.839036899542972, -22.102216485281176],\n            [29.43218834810904, -22.091312758067588],\n            [28.794656202924216, -21.63945403410745],\n            [28.021370070108617, -21.485975030200585],\n            [27.72722781750326, -20.851801853114715],\n            [27.724747348753255, -20.49905852629039],\n            [27.296504754350508, -20.391519870691],\n            [26.164790887158485, -19.29308562589494],\n            [25.85039147309473, -18.714412937090536],\n            [25.649163445750162, -18.53602589281899],\n            [25.264225701608012, -17.736539808831417],\n            [26.381935255648926, -17.8460421688579],\n            [26.70677330903564, -17.961228936436484],\n            [27.044427117630732, -17.938026218337434],\n            [27.59824344250276, -17.290830580314008],\n            [28.467906121542683, -16.468400160388846],\n            [28.8258687680285, -16.389748630440614],\n            [28.947463413211267, -16.04305144619444],\n            [29.516834344203147, -15.644677829656388],\n            [30.27425581230511, -15.507786960515213],\n            [30.338954705534544, -15.880839125230246],\n            [31.17306399915768, -15.860943698797874],\n            [31.636498243951195, -16.071990248277885],\n            [31.8520406430406, -16.319417006091378],\n            [32.32823896661023, -16.392074069893752],\n            [32.847638787575846, -16.713398125884616],\n            [32.84986087416439, -17.97905730557718],\n            [32.65488569512715, -18.672089939043495],\n            [32.61199425632489, -19.419382826416275],\n            [32.772707960752626, -19.715592136313298],\n            [32.65974327976258, -20.304290052982317],\n            [32.50869306817344, -20.395292250248307],\n            [32.244988234188014, -21.116488539313693],\n            [31.19140913262129, -22.2515096981724]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Chad\",\n        \"sov_a3\": \"TCD\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Chad\",\n        \"adm0_a3\": \"TCD\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Chad\",\n        \"gu_a3\": \"TCD\",\n        \"su_dif\": 0,\n        \"subunit\": \"Chad\",\n        \"su_a3\": \"TCD\",\n        \"brk_diff\": 0,\n        \"name\": \"Chad\",\n        \"name_long\": \"Chad\",\n        \"brk_a3\": \"TCD\",\n        \"brk_name\": \"Chad\",\n        \"brk_group\": null,\n        \"abbrev\": \"Chad\",\n        \"postal\": \"TD\",\n        \"formal_en\": \"Republic of Chad\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Chad\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Chad\",\n        \"name_alt\": null,\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 8,\n        \"mapcolor13\": 6,\n        \"pop_est\": 15946876,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 11314,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"CD\",\n        \"iso_a2\": \"TD\",\n        \"iso_a2_eh\": \"TD\",\n        \"iso_a3\": \"TCD\",\n        \"iso_a3_eh\": \"TCD\",\n        \"iso_n3\": \"148\",\n        \"iso_n3_eh\": \"148\",\n        \"un_a3\": \"148\",\n        \"wb_a2\": \"TD\",\n        \"wb_a3\": \"TCD\",\n        \"woe_id\": 23424777,\n        \"woe_id_eh\": 23424777,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"TCD\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"TCD\",\n        \"adm0_a3_us\": \"TCD\",\n        \"adm0_a3_fr\": \"TCD\",\n        \"adm0_a3_ru\": \"TCD\",\n        \"adm0_a3_es\": \"TCD\",\n        \"adm0_a3_cn\": \"TCD\",\n        \"adm0_a3_tw\": \"TCD\",\n        \"adm0_a3_in\": \"TCD\",\n        \"adm0_a3_np\": \"TCD\",\n        \"adm0_a3_pk\": \"TCD\",\n        \"adm0_a3_de\": \"TCD\",\n        \"adm0_a3_gb\": \"TCD\",\n        \"adm0_a3_br\": \"TCD\",\n        \"adm0_a3_il\": \"TCD\",\n        \"adm0_a3_ps\": \"TCD\",\n        \"adm0_a3_sa\": \"TCD\",\n        \"adm0_a3_eg\": \"TCD\",\n        \"adm0_a3_ma\": \"TCD\",\n        \"adm0_a3_pt\": \"TCD\",\n        \"adm0_a3_ar\": \"TCD\",\n        \"adm0_a3_jp\": \"TCD\",\n        \"adm0_a3_ko\": \"TCD\",\n        \"adm0_a3_vn\": \"TCD\",\n        \"adm0_a3_tr\": \"TCD\",\n        \"adm0_a3_id\": \"TCD\",\n        \"adm0_a3_pl\": \"TCD\",\n        \"adm0_a3_gr\": \"TCD\",\n        \"adm0_a3_it\": \"TCD\",\n        \"adm0_a3_nl\": \"TCD\",\n        \"adm0_a3_se\": \"TCD\",\n        \"adm0_a3_bd\": \"TCD\",\n        \"adm0_a3_ua\": \"TCD\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Middle Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 4,\n        \"long_len\": 4,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 18.645041,\n        \"label_y\": 15.142959,\n        \"ne_id\": 1159321301,\n        \"wikidataid\": \"Q657\",\n        \"name_ar\": \"تشاد\",\n        \"name_bn\": \"চাদ\",\n        \"name_de\": \"Tschad\",\n        \"name_en\": \"Chad\",\n        \"name_es\": \"Chad\",\n        \"name_fa\": \"چاد\",\n        \"name_fr\": \"Tchad\",\n        \"name_el\": \"Τσαντ\",\n        \"name_he\": \"צ'אד\",\n        \"name_hi\": \"चाड\",\n        \"name_hu\": \"Csád\",\n        \"name_id\": \"Chad\",\n        \"name_it\": \"Ciad\",\n        \"name_ja\": \"チャド\",\n        \"name_ko\": \"차드\",\n        \"name_nl\": \"Tsjaad\",\n        \"name_pl\": \"Czad\",\n        \"name_pt\": \"Chade\",\n        \"name_ru\": \"Чад\",\n        \"name_sv\": \"Tchad\",\n        \"name_tr\": \"Çad\",\n        \"name_uk\": \"Чад\",\n        \"name_ur\": \"چاڈ\",\n        \"name_vi\": \"Tchad\",\n        \"name_zh\": \"乍得\",\n        \"name_zht\": \"查德\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"TCD.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [23.83766000000014, 19.580470000000105],\n            [23.886890000000108, 15.61084],\n            [23.024590000000103, 15.68072],\n            [22.56795000000011, 14.944290000000137],\n            [22.30351, 14.32682],\n            [22.51202, 14.09318],\n            [22.18329, 13.78648],\n            [22.29658, 13.37232],\n            [22.03759, 12.95546],\n            [21.93681, 12.588180000000136],\n            [22.28801, 12.64605],\n            [22.49762, 12.26024],\n            [22.50869, 11.67936],\n            [22.87622, 11.384610000000123],\n            [22.864165480244225, 11.142395127807546],\n            [22.23112918466876, 10.97188873946061],\n            [21.723821648859456, 10.567055568885976],\n            [21.000868361096167, 9.475985215691509],\n            [20.05968549976427, 9.012706000194854],\n            [19.09400800952602, 9.07484691002584],\n            [18.812009718509273, 8.982914536978598],\n            [18.911021762780507, 8.630894680206353],\n            [18.38955488452322, 8.281303615751824],\n            [17.964929640380888, 7.890914008002994],\n            [16.705988396886255, 7.508327541529979],\n            [16.456184523187346, 7.734773667832968],\n            [16.290561557691888, 7.754307359239419],\n            [16.106231723706742, 7.497087917506462],\n            [15.279460483469109, 7.421924546737969],\n            [15.436091749745742, 7.692812404811889],\n            [15.120865512765306, 8.382150173369439],\n            [14.97999555833769, 8.796104234243472],\n            [14.54446658698177, 8.965861314322268],\n            [13.954218377344006, 9.549494940626687],\n            [14.171466098699028, 10.021378282099931],\n            [14.62720055508106, 9.920919297724538],\n            [14.909353875394716, 9.992129421422732],\n            [15.467872755605242, 9.982336737503545],\n            [14.92356489427496, 10.891325181517473],\n            [14.9601518083376, 11.555574042197224],\n            [14.89336, 12.21905],\n            [14.495787387762846, 12.85939626713733],\n            [14.595781284247607, 13.33042694747786],\n            [13.95447675950561, 13.353448798063766],\n            [13.956698846094127, 13.996691189016929],\n            [13.540393507550789, 14.367133693901224],\n            [13.97217, 15.68437],\n            [15.247731154041844, 16.627305813050782],\n            [15.30044111497972, 17.927949937405003],\n            [15.685740594147774, 19.957180080642388],\n            [15.903246697664315, 20.387618923417506],\n            [15.487148064850146, 20.730414537025638],\n            [15.47106, 21.04845],\n            [15.096887648181848, 21.30851878507491],\n            [14.8513, 22.862950000000126],\n            [15.86085, 23.40972],\n            [19.84926, 21.49509],\n            [23.83766000000014, 19.580470000000105]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Algeria\",\n        \"sov_a3\": \"DZA\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Algeria\",\n        \"adm0_a3\": \"DZA\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Algeria\",\n        \"gu_a3\": \"DZA\",\n        \"su_dif\": 0,\n        \"subunit\": \"Algeria\",\n        \"su_a3\": \"DZA\",\n        \"brk_diff\": 0,\n        \"name\": \"Algeria\",\n        \"name_long\": \"Algeria\",\n        \"brk_a3\": \"DZA\",\n        \"brk_name\": \"Algeria\",\n        \"brk_group\": null,\n        \"abbrev\": \"Alg.\",\n        \"postal\": \"DZ\",\n        \"formal_en\": \"People's Democratic Republic of Algeria\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Algeria\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Algeria\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 6,\n        \"mapcolor13\": 3,\n        \"pop_est\": 43053054,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 171091,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"AG\",\n        \"iso_a2\": \"DZ\",\n        \"iso_a2_eh\": \"DZ\",\n        \"iso_a3\": \"DZA\",\n        \"iso_a3_eh\": \"DZA\",\n        \"iso_n3\": \"012\",\n        \"iso_n3_eh\": \"012\",\n        \"un_a3\": \"012\",\n        \"wb_a2\": \"DZ\",\n        \"wb_a3\": \"DZA\",\n        \"woe_id\": 23424740,\n        \"woe_id_eh\": 23424740,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"DZA\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"DZA\",\n        \"adm0_a3_us\": \"DZA\",\n        \"adm0_a3_fr\": \"DZA\",\n        \"adm0_a3_ru\": \"DZA\",\n        \"adm0_a3_es\": \"DZA\",\n        \"adm0_a3_cn\": \"DZA\",\n        \"adm0_a3_tw\": \"DZA\",\n        \"adm0_a3_in\": \"DZA\",\n        \"adm0_a3_np\": \"DZA\",\n        \"adm0_a3_pk\": \"DZA\",\n        \"adm0_a3_de\": \"DZA\",\n        \"adm0_a3_gb\": \"DZA\",\n        \"adm0_a3_br\": \"DZA\",\n        \"adm0_a3_il\": \"DZA\",\n        \"adm0_a3_ps\": \"DZA\",\n        \"adm0_a3_sa\": \"DZA\",\n        \"adm0_a3_eg\": \"DZA\",\n        \"adm0_a3_ma\": \"DZA\",\n        \"adm0_a3_pt\": \"DZA\",\n        \"adm0_a3_ar\": \"DZA\",\n        \"adm0_a3_jp\": \"DZA\",\n        \"adm0_a3_ko\": \"DZA\",\n        \"adm0_a3_vn\": \"DZA\",\n        \"adm0_a3_tr\": \"DZA\",\n        \"adm0_a3_id\": \"DZA\",\n        \"adm0_a3_pl\": \"DZA\",\n        \"adm0_a3_gr\": \"DZA\",\n        \"adm0_a3_it\": \"DZA\",\n        \"adm0_a3_nl\": \"DZA\",\n        \"adm0_a3_se\": \"DZA\",\n        \"adm0_a3_bd\": \"DZA\",\n        \"adm0_a3_ua\": \"DZA\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Northern Africa\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.5,\n        \"max_label\": 7,\n        \"label_x\": 2.808241,\n        \"label_y\": 27.397406,\n        \"ne_id\": 1159320565,\n        \"wikidataid\": \"Q262\",\n        \"name_ar\": \"الجزائر\",\n        \"name_bn\": \"আলজেরিয়া\",\n        \"name_de\": \"Algerien\",\n        \"name_en\": \"Algeria\",\n        \"name_es\": \"Argelia\",\n        \"name_fa\": \"الجزایر\",\n        \"name_fr\": \"Algérie\",\n        \"name_el\": \"Αλγερία\",\n        \"name_he\": \"אלג'יריה\",\n        \"name_hi\": \"अल्जीरिया\",\n        \"name_hu\": \"Algéria\",\n        \"name_id\": \"Aljazair\",\n        \"name_it\": \"Algeria\",\n        \"name_ja\": \"アルジェリア\",\n        \"name_ko\": \"알제리\",\n        \"name_nl\": \"Algerije\",\n        \"name_pl\": \"Algieria\",\n        \"name_pt\": \"Argélia\",\n        \"name_ru\": \"Алжир\",\n        \"name_sv\": \"Algeriet\",\n        \"name_tr\": \"Cezayir\",\n        \"name_uk\": \"Алжир\",\n        \"name_ur\": \"الجزائر\",\n        \"name_vi\": \"Algérie\",\n        \"name_zh\": \"阿尔及利亚\",\n        \"name_zht\": \"阿爾及利亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"DZA.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-8.684399786809053, 27.395744126896005],\n            [-8.665124477564191, 27.589479071558227],\n            [-8.665589565454809, 27.656425889592356],\n            [-8.674116176782974, 28.84128896739658],\n            [-7.059227667661958, 29.5792284205246],\n            [-6.060632290053774, 29.731699734001694],\n            [-5.242129278982787, 30.00044302013559],\n            [-4.859646165374471, 30.501187649043846],\n            [-3.690441046554724, 30.896951605751156],\n            [-3.647497931320146, 31.637294012980675],\n            [-3.068980271812648, 31.724497992473218],\n            [-2.616604783529567, 32.09434621838619],\n            [-1.30789913573787, 32.2628889023061],\n            [-1.124551153966308, 32.65152151135713],\n            [-1.388049282222596, 32.86401500094138],\n            [-1.733454555661467, 33.91971283623212],\n            [-1.792985805661715, 34.527918606091305],\n            [-2.169913702798624, 35.16839630791668],\n            [-1.208602871089056, 35.7148487411871],\n            [-0.127454392894606, 35.888662421200806],\n            [0.503876580415209, 36.30127289483528],\n            [1.466918572606545, 36.605647081034405],\n            [3.161698846050825, 36.78390493422522],\n            [4.81575809084913, 36.86503693292346],\n            [5.320120070017794, 36.71651886651662],\n            [6.261819695672613, 37.11065501560674],\n            [7.330384962603971, 37.11838064223437],\n            [7.737078484741005, 36.885707505840216],\n            [8.420964389691676, 36.94642731378316],\n            [8.217824334352315, 36.433176988260286],\n            [8.376367628623768, 35.479876003555944],\n            [8.140981479534304, 34.65514598239379],\n            [7.524481642292244, 34.09737641045146],\n            [7.612641635782182, 33.34411489514896],\n            [8.430472853233368, 32.74833730725595],\n            [8.439102817426118, 32.50628489840082],\n            [9.05560265466815, 32.10269196220129],\n            [9.482139926805274, 30.307556057246188],\n            [9.805634392952356, 29.424638373323376],\n            [9.859997999723447, 28.959989732371014],\n            [9.683884718472768, 28.1441738957792],\n            [9.756128370816782, 27.688258571884205],\n            [9.629056023811074, 27.14095347748092],\n            [9.716285841519664, 26.512206325785655],\n            [9.319410841518163, 26.094324856057455],\n            [9.910692579801776, 25.365454616796796],\n            [9.94826134607797, 24.936953640232517],\n            [10.303846876678362, 24.379313259370917],\n            [10.771363559622927, 24.56253205006175],\n            [11.560669386449005, 24.097909247325518],\n            [11.999505649471613, 23.47166840259645],\n            [8.572893100629784, 21.565660712159143],\n            [5.677565952180686, 19.601206976799716],\n            [4.267419467800039, 19.155265204337],\n            [3.158133172222705, 19.057364203360038],\n            [3.1466610042539, 19.693578599521445],\n            [2.683588494486429, 19.856230170160117],\n            [2.06099083823392, 20.142233384679486],\n            [1.823227573259032, 20.610809434486043],\n            [-1.550054897457613, 22.792665920497384],\n            [-4.923337368174231, 24.974574082941],\n            [-8.684399786809053, 27.395744126896005]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Mozambique\",\n        \"sov_a3\": \"MOZ\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Mozambique\",\n        \"adm0_a3\": \"MOZ\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Mozambique\",\n        \"gu_a3\": \"MOZ\",\n        \"su_dif\": 0,\n        \"subunit\": \"Mozambique\",\n        \"su_a3\": \"MOZ\",\n        \"brk_diff\": 0,\n        \"name\": \"Mozambique\",\n        \"name_long\": \"Mozambique\",\n        \"brk_a3\": \"MOZ\",\n        \"brk_name\": \"Mozambique\",\n        \"brk_group\": null,\n        \"abbrev\": \"Moz.\",\n        \"postal\": \"MZ\",\n        \"formal_en\": \"Republic of Mozambique\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Mozambique\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Mozambique\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 4,\n        \"pop_est\": 30366036,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 15291,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"MZ\",\n        \"iso_a2\": \"MZ\",\n        \"iso_a2_eh\": \"MZ\",\n        \"iso_a3\": \"MOZ\",\n        \"iso_a3_eh\": \"MOZ\",\n        \"iso_n3\": \"508\",\n        \"iso_n3_eh\": \"508\",\n        \"un_a3\": \"508\",\n        \"wb_a2\": \"MZ\",\n        \"wb_a3\": \"MOZ\",\n        \"woe_id\": 23424902,\n        \"woe_id_eh\": 23424902,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"MOZ\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"MOZ\",\n        \"adm0_a3_us\": \"MOZ\",\n        \"adm0_a3_fr\": \"MOZ\",\n        \"adm0_a3_ru\": \"MOZ\",\n        \"adm0_a3_es\": \"MOZ\",\n        \"adm0_a3_cn\": \"MOZ\",\n        \"adm0_a3_tw\": \"MOZ\",\n        \"adm0_a3_in\": \"MOZ\",\n        \"adm0_a3_np\": \"MOZ\",\n        \"adm0_a3_pk\": \"MOZ\",\n        \"adm0_a3_de\": \"MOZ\",\n        \"adm0_a3_gb\": \"MOZ\",\n        \"adm0_a3_br\": \"MOZ\",\n        \"adm0_a3_il\": \"MOZ\",\n        \"adm0_a3_ps\": \"MOZ\",\n        \"adm0_a3_sa\": \"MOZ\",\n        \"adm0_a3_eg\": \"MOZ\",\n        \"adm0_a3_ma\": \"MOZ\",\n        \"adm0_a3_pt\": \"MOZ\",\n        \"adm0_a3_ar\": \"MOZ\",\n        \"adm0_a3_jp\": \"MOZ\",\n        \"adm0_a3_ko\": \"MOZ\",\n        \"adm0_a3_vn\": \"MOZ\",\n        \"adm0_a3_tr\": \"MOZ\",\n        \"adm0_a3_id\": \"MOZ\",\n        \"adm0_a3_pl\": \"MOZ\",\n        \"adm0_a3_gr\": \"MOZ\",\n        \"adm0_a3_it\": \"MOZ\",\n        \"adm0_a3_nl\": \"MOZ\",\n        \"adm0_a3_se\": \"MOZ\",\n        \"adm0_a3_bd\": \"MOZ\",\n        \"adm0_a3_ua\": \"MOZ\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Eastern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 10,\n        \"long_len\": 10,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 37.83789,\n        \"label_y\": -13.94323,\n        \"ne_id\": 1159321073,\n        \"wikidataid\": \"Q1029\",\n        \"name_ar\": \"موزمبيق\",\n        \"name_bn\": \"মোজাম্বিক\",\n        \"name_de\": \"Mosambik\",\n        \"name_en\": \"Mozambique\",\n        \"name_es\": \"Mozambique\",\n        \"name_fa\": \"موزامبیک\",\n        \"name_fr\": \"Mozambique\",\n        \"name_el\": \"Μοζαμβίκη\",\n        \"name_he\": \"מוזמביק\",\n        \"name_hi\": \"मोज़ाम्बीक\",\n        \"name_hu\": \"Mozambik\",\n        \"name_id\": \"Mozambik\",\n        \"name_it\": \"Mozambico\",\n        \"name_ja\": \"モザンビーク\",\n        \"name_ko\": \"모잠비크\",\n        \"name_nl\": \"Mozambique\",\n        \"name_pl\": \"Mozambik\",\n        \"name_pt\": \"Moçambique\",\n        \"name_ru\": \"Мозамбик\",\n        \"name_sv\": \"Moçambique\",\n        \"name_tr\": \"Mozambik\",\n        \"name_uk\": \"Мозамбік\",\n        \"name_ur\": \"موزمبیق\",\n        \"name_vi\": \"Mozambique\",\n        \"name_zh\": \"莫桑比克\",\n        \"name_zht\": \"莫三比克\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"MOZ.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [34.55998904799935, -11.520020033415925],\n            [35.31239790216904, -11.439146416879147],\n            [36.51408165868426, -11.720938002166735],\n            [36.775150994622805, -11.594537448780805],\n            [37.47129, -11.56876],\n            [37.82764, -11.26879],\n            [38.42755659358775, -11.285202325081656],\n            [39.521, -10.89688],\n            [40.31659, -10.317099999999868],\n            [40.316586229110854, -10.317097752817492],\n            [40.31658857601719, -10.317096042525698],\n            [40.47838748552303, -10.765440769089993],\n            [40.437253045418686, -11.761710707245015],\n            [40.56081139502857, -12.639176527561027],\n            [40.59962039567975, -14.201975192931862],\n            [40.775475294768995, -14.691764418194241],\n            [40.4772506040126, -15.406294447493972],\n            [40.08926395036522, -16.10077402106446],\n            [39.45255862809705, -16.72089120856694],\n            [38.53835086442152, -17.101023044505958],\n            [37.41113284683888, -17.586368096591237],\n            [36.28127933120936, -18.65968759529345],\n            [35.89649661636406, -18.842260430580637],\n            [35.198399692533144, -19.552811374593894],\n            [34.78638349787005, -19.784011732667736],\n            [34.70189253107284, -20.49704314543101],\n            [35.176127150215365, -21.25436126066841],\n            [35.37342776870574, -21.840837090748877],\n            [35.385848253705404, -22.14],\n            [35.562545536369086, -22.09],\n            [35.533934767404304, -23.070787855727758],\n            [35.37177412287238, -23.5353589820317],\n            [35.60747033055563, -23.706563002214683],\n            [35.45874555841962, -24.12260995859655],\n            [35.04073489761066, -24.478350518493805],\n            [34.21582400893547, -24.81631438568266],\n            [33.01321007663901, -25.357573337507738],\n            [32.574632195777866, -25.727318210556092],\n            [32.66036339695009, -26.148584486599447],\n            [32.91595503106569, -26.215867201443466],\n            [32.830120477028885, -26.742191664336197],\n            [32.07166548028107, -26.73382008230491],\n            [31.98577924981197, -26.291779880480227],\n            [31.83777794772806, -25.84333180105135],\n            [31.75240848158188, -25.484283949487413],\n            [31.930588820124253, -24.36941659922254],\n            [31.670397983534656, -23.658969008073864],\n            [31.19140913262129, -22.2515096981724],\n            [32.244988234188014, -21.116488539313693],\n            [32.50869306817344, -20.395292250248307],\n            [32.65974327976258, -20.304290052982317],\n            [32.772707960752626, -19.715592136313298],\n            [32.61199425632489, -19.419382826416275],\n            [32.65488569512715, -18.672089939043495],\n            [32.84986087416439, -17.97905730557718],\n            [32.847638787575846, -16.713398125884616],\n            [32.32823896661023, -16.392074069893752],\n            [31.8520406430406, -16.319417006091378],\n            [31.636498243951195, -16.071990248277885],\n            [31.17306399915768, -15.860943698797874],\n            [30.338954705534544, -15.880839125230246],\n            [30.27425581230511, -15.507786960515213],\n            [30.17948123548183, -14.796099134991529],\n            [33.214024692525214, -13.971860039936153],\n            [33.789700148256685, -14.45183074306307],\n            [34.064825473778626, -14.35995004644812],\n            [34.45963341648854, -14.613009535381423],\n            [34.51766604995231, -15.013708591372612],\n            [34.307291294092096, -15.478641452702597],\n            [34.38129194513405, -16.183559665596043],\n            [35.033810255683534, -16.801299737213093],\n            [35.339062941231646, -16.10744028083011],\n            [35.77190473810836, -15.896858819240727],\n            [35.68684533055594, -14.611045830954332],\n            [35.26795617039801, -13.887834161029566],\n            [34.907151320136165, -13.565424899960568],\n            [34.55998904799935, -13.579997653866876],\n            [34.28000613784198, -12.280025323132506],\n            [34.55998904799935, -11.520020033415925]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"eSwatini\",\n        \"sov_a3\": \"SWZ\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"eSwatini\",\n        \"adm0_a3\": \"SWZ\",\n        \"geou_dif\": 0,\n        \"geounit\": \"eSwatini\",\n        \"gu_a3\": \"SWZ\",\n        \"su_dif\": 0,\n        \"subunit\": \"eSwatini\",\n        \"su_a3\": \"SWZ\",\n        \"brk_diff\": 0,\n        \"name\": \"eSwatini\",\n        \"name_long\": \"Kingdom of eSwatini\",\n        \"brk_a3\": \"SWZ\",\n        \"brk_name\": \"eSwatini\",\n        \"brk_group\": null,\n        \"abbrev\": \"eSw.\",\n        \"postal\": \"ES\",\n        \"formal_en\": \"Kingdom of eSwatini\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"eSwatini\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"eSwatini\",\n        \"name_alt\": \"Swaziland\",\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 5,\n        \"pop_est\": 1148130,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 4471,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"WZ\",\n        \"iso_a2\": \"SZ\",\n        \"iso_a2_eh\": \"SZ\",\n        \"iso_a3\": \"SWZ\",\n        \"iso_a3_eh\": \"SWZ\",\n        \"iso_n3\": \"748\",\n        \"iso_n3_eh\": \"748\",\n        \"un_a3\": \"748\",\n        \"wb_a2\": \"SZ\",\n        \"wb_a3\": \"SWZ\",\n        \"woe_id\": 23424993,\n        \"woe_id_eh\": 23424993,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"SWZ\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"SWZ\",\n        \"adm0_a3_us\": \"SWZ\",\n        \"adm0_a3_fr\": \"SWZ\",\n        \"adm0_a3_ru\": \"SWZ\",\n        \"adm0_a3_es\": \"SWZ\",\n        \"adm0_a3_cn\": \"SWZ\",\n        \"adm0_a3_tw\": \"SWZ\",\n        \"adm0_a3_in\": \"SWZ\",\n        \"adm0_a3_np\": \"SWZ\",\n        \"adm0_a3_pk\": \"SWZ\",\n        \"adm0_a3_de\": \"SWZ\",\n        \"adm0_a3_gb\": \"SWZ\",\n        \"adm0_a3_br\": \"SWZ\",\n        \"adm0_a3_il\": \"SWZ\",\n        \"adm0_a3_ps\": \"SWZ\",\n        \"adm0_a3_sa\": \"SWZ\",\n        \"adm0_a3_eg\": \"SWZ\",\n        \"adm0_a3_ma\": \"SWZ\",\n        \"adm0_a3_pt\": \"SWZ\",\n        \"adm0_a3_ar\": \"SWZ\",\n        \"adm0_a3_jp\": \"SWZ\",\n        \"adm0_a3_ko\": \"SWZ\",\n        \"adm0_a3_vn\": \"SWZ\",\n        \"adm0_a3_tr\": \"SWZ\",\n        \"adm0_a3_id\": \"SWZ\",\n        \"adm0_a3_pl\": \"SWZ\",\n        \"adm0_a3_gr\": \"SWZ\",\n        \"adm0_a3_it\": \"SWZ\",\n        \"adm0_a3_nl\": \"SWZ\",\n        \"adm0_a3_se\": \"SWZ\",\n        \"adm0_a3_bd\": \"SWZ\",\n        \"adm0_a3_ua\": \"SWZ\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Southern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 8,\n        \"long_len\": 19,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 31.467264,\n        \"label_y\": -26.533676,\n        \"ne_id\": 1159321289,\n        \"wikidataid\": \"Q1050\",\n        \"name_ar\": \"إسواتيني\",\n        \"name_bn\": \"ইসোয়াতিনি\",\n        \"name_de\": \"Eswatini\",\n        \"name_en\": \"Eswatini\",\n        \"name_es\": \"Suazilandia\",\n        \"name_fa\": \"اسواتینی\",\n        \"name_fr\": \"Eswatini\",\n        \"name_el\": \"Εσουατίνι\",\n        \"name_he\": \"אסוואטיני\",\n        \"name_hi\": \"एस्वातीनी\",\n        \"name_hu\": \"Szváziföld\",\n        \"name_id\": \"Eswatini\",\n        \"name_it\": \"eSwatini\",\n        \"name_ja\": \"エスワティニ\",\n        \"name_ko\": \"에스와티니\",\n        \"name_nl\": \"Swaziland\",\n        \"name_pl\": \"Eswatini\",\n        \"name_pt\": \"Essuatíni\",\n        \"name_ru\": \"Эсватини\",\n        \"name_sv\": \"Swaziland\",\n        \"name_tr\": \"Esvatini\",\n        \"name_uk\": \"Есватіні\",\n        \"name_ur\": \"اسواتینی\",\n        \"name_vi\": \"Eswatini\",\n        \"name_zh\": \"斯威士兰\",\n        \"name_zht\": \"史瓦帝尼\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"SWZ.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [32.07166548028107, -26.73382008230491],\n            [31.86806033705108, -27.177927341421277],\n            [31.28277306491333, -27.285879408478998],\n            [30.68596194837448, -26.743845310169533],\n            [30.67660851412964, -26.398078301704608],\n            [30.949666782359913, -26.02264902110415],\n            [31.04407962415715, -25.731452325139443],\n            [31.333157586397903, -25.66019052500895],\n            [31.83777794772806, -25.84333180105135],\n            [31.98577924981197, -26.291779880480227],\n            [32.07166548028107, -26.73382008230491]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Burundi\",\n        \"sov_a3\": \"BDI\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Burundi\",\n        \"adm0_a3\": \"BDI\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Burundi\",\n        \"gu_a3\": \"BDI\",\n        \"su_dif\": 0,\n        \"subunit\": \"Burundi\",\n        \"su_a3\": \"BDI\",\n        \"brk_diff\": 0,\n        \"name\": \"Burundi\",\n        \"name_long\": \"Burundi\",\n        \"brk_a3\": \"BDI\",\n        \"brk_name\": \"Burundi\",\n        \"brk_group\": null,\n        \"abbrev\": \"Bur.\",\n        \"postal\": \"BI\",\n        \"formal_en\": \"Republic of Burundi\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Burundi\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Burundi\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 8,\n        \"pop_est\": 11530580,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 3012,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"BY\",\n        \"iso_a2\": \"BI\",\n        \"iso_a2_eh\": \"BI\",\n        \"iso_a3\": \"BDI\",\n        \"iso_a3_eh\": \"BDI\",\n        \"iso_n3\": \"108\",\n        \"iso_n3_eh\": \"108\",\n        \"un_a3\": \"108\",\n        \"wb_a2\": \"BI\",\n        \"wb_a3\": \"BDI\",\n        \"woe_id\": 23424774,\n        \"woe_id_eh\": 23424774,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"BDI\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"BDI\",\n        \"adm0_a3_us\": \"BDI\",\n        \"adm0_a3_fr\": \"BDI\",\n        \"adm0_a3_ru\": \"BDI\",\n        \"adm0_a3_es\": \"BDI\",\n        \"adm0_a3_cn\": \"BDI\",\n        \"adm0_a3_tw\": \"BDI\",\n        \"adm0_a3_in\": \"BDI\",\n        \"adm0_a3_np\": \"BDI\",\n        \"adm0_a3_pk\": \"BDI\",\n        \"adm0_a3_de\": \"BDI\",\n        \"adm0_a3_gb\": \"BDI\",\n        \"adm0_a3_br\": \"BDI\",\n        \"adm0_a3_il\": \"BDI\",\n        \"adm0_a3_ps\": \"BDI\",\n        \"adm0_a3_sa\": \"BDI\",\n        \"adm0_a3_eg\": \"BDI\",\n        \"adm0_a3_ma\": \"BDI\",\n        \"adm0_a3_pt\": \"BDI\",\n        \"adm0_a3_ar\": \"BDI\",\n        \"adm0_a3_jp\": \"BDI\",\n        \"adm0_a3_ko\": \"BDI\",\n        \"adm0_a3_vn\": \"BDI\",\n        \"adm0_a3_tr\": \"BDI\",\n        \"adm0_a3_id\": \"BDI\",\n        \"adm0_a3_pl\": \"BDI\",\n        \"adm0_a3_gr\": \"BDI\",\n        \"adm0_a3_it\": \"BDI\",\n        \"adm0_a3_nl\": \"BDI\",\n        \"adm0_a3_se\": \"BDI\",\n        \"adm0_a3_bd\": \"BDI\",\n        \"adm0_a3_ua\": \"BDI\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Eastern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 29.917086,\n        \"label_y\": -3.332836,\n        \"ne_id\": 1159320387,\n        \"wikidataid\": \"Q967\",\n        \"name_ar\": \"بوروندي\",\n        \"name_bn\": \"বুরুন্ডি\",\n        \"name_de\": \"Burundi\",\n        \"name_en\": \"Burundi\",\n        \"name_es\": \"Burundi\",\n        \"name_fa\": \"بوروندی\",\n        \"name_fr\": \"Burundi\",\n        \"name_el\": \"Μπουρούντι\",\n        \"name_he\": \"בורונדי\",\n        \"name_hi\": \"बुरुण्डी\",\n        \"name_hu\": \"Burundi\",\n        \"name_id\": \"Burundi\",\n        \"name_it\": \"Burundi\",\n        \"name_ja\": \"ブルンジ\",\n        \"name_ko\": \"부룬디\",\n        \"name_nl\": \"Burundi\",\n        \"name_pl\": \"Burundi\",\n        \"name_pt\": \"Burundi\",\n        \"name_ru\": \"Бурунди\",\n        \"name_sv\": \"Burundi\",\n        \"name_tr\": \"Burundi\",\n        \"name_uk\": \"Бурунді\",\n        \"name_ur\": \"برونڈی\",\n        \"name_vi\": \"Burundi\",\n        \"name_zh\": \"布隆迪\",\n        \"name_zht\": \"蒲隆地\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"BDI.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30.469673645761223, -2.41385475710134],\n            [30.52766, -2.80762],\n            [30.74301, -3.03431],\n            [30.75224, -3.35931],\n            [30.50554, -3.56858],\n            [30.11632, -4.09012],\n            [29.753512404099865, -4.452389418153302],\n            [29.339997592900346, -4.499983412294092],\n            [29.276383904749053, -3.293907159034063],\n            [29.024926385216787, -2.839257907730158],\n            [29.632176141078588, -2.917857761246097],\n            [29.93835900240794, -2.348486830254238],\n            [30.469673645761223, -2.41385475710134]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Rwanda\",\n        \"sov_a3\": \"RWA\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Rwanda\",\n        \"adm0_a3\": \"RWA\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Rwanda\",\n        \"gu_a3\": \"RWA\",\n        \"su_dif\": 0,\n        \"subunit\": \"Rwanda\",\n        \"su_a3\": \"RWA\",\n        \"brk_diff\": 0,\n        \"name\": \"Rwanda\",\n        \"name_long\": \"Rwanda\",\n        \"brk_a3\": \"RWA\",\n        \"brk_name\": \"Rwanda\",\n        \"brk_group\": null,\n        \"abbrev\": \"Rwa.\",\n        \"postal\": \"RW\",\n        \"formal_en\": \"Republic of Rwanda\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Rwanda\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Rwanda\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 10,\n        \"pop_est\": 12626950,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 10354,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"RW\",\n        \"iso_a2\": \"RW\",\n        \"iso_a2_eh\": \"RW\",\n        \"iso_a3\": \"RWA\",\n        \"iso_a3_eh\": \"RWA\",\n        \"iso_n3\": \"646\",\n        \"iso_n3_eh\": \"646\",\n        \"un_a3\": \"646\",\n        \"wb_a2\": \"RW\",\n        \"wb_a3\": \"RWA\",\n        \"woe_id\": 23424937,\n        \"woe_id_eh\": 23424937,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"RWA\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"RWA\",\n        \"adm0_a3_us\": \"RWA\",\n        \"adm0_a3_fr\": \"RWA\",\n        \"adm0_a3_ru\": \"RWA\",\n        \"adm0_a3_es\": \"RWA\",\n        \"adm0_a3_cn\": \"RWA\",\n        \"adm0_a3_tw\": \"RWA\",\n        \"adm0_a3_in\": \"RWA\",\n        \"adm0_a3_np\": \"RWA\",\n        \"adm0_a3_pk\": \"RWA\",\n        \"adm0_a3_de\": \"RWA\",\n        \"adm0_a3_gb\": \"RWA\",\n        \"adm0_a3_br\": \"RWA\",\n        \"adm0_a3_il\": \"RWA\",\n        \"adm0_a3_ps\": \"RWA\",\n        \"adm0_a3_sa\": \"RWA\",\n        \"adm0_a3_eg\": \"RWA\",\n        \"adm0_a3_ma\": \"RWA\",\n        \"adm0_a3_pt\": \"RWA\",\n        \"adm0_a3_ar\": \"RWA\",\n        \"adm0_a3_jp\": \"RWA\",\n        \"adm0_a3_ko\": \"RWA\",\n        \"adm0_a3_vn\": \"RWA\",\n        \"adm0_a3_tr\": \"RWA\",\n        \"adm0_a3_id\": \"RWA\",\n        \"adm0_a3_pl\": \"RWA\",\n        \"adm0_a3_gr\": \"RWA\",\n        \"adm0_a3_it\": \"RWA\",\n        \"adm0_a3_nl\": \"RWA\",\n        \"adm0_a3_se\": \"RWA\",\n        \"adm0_a3_bd\": \"RWA\",\n        \"adm0_a3_ua\": \"RWA\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Eastern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 30.103894,\n        \"label_y\": -1.897196,\n        \"ne_id\": 1159321219,\n        \"wikidataid\": \"Q1037\",\n        \"name_ar\": \"رواندا\",\n        \"name_bn\": \"রুয়ান্ডা\",\n        \"name_de\": \"Ruanda\",\n        \"name_en\": \"Rwanda\",\n        \"name_es\": \"Ruanda\",\n        \"name_fa\": \"رواندا\",\n        \"name_fr\": \"Rwanda\",\n        \"name_el\": \"Ρουάντα\",\n        \"name_he\": \"רואנדה\",\n        \"name_hi\": \"रवाण्डा\",\n        \"name_hu\": \"Ruanda\",\n        \"name_id\": \"Rwanda\",\n        \"name_it\": \"Ruanda\",\n        \"name_ja\": \"ルワンダ\",\n        \"name_ko\": \"르완다\",\n        \"name_nl\": \"Rwanda\",\n        \"name_pl\": \"Rwanda\",\n        \"name_pt\": \"Ruanda\",\n        \"name_ru\": \"Руанда\",\n        \"name_sv\": \"Rwanda\",\n        \"name_tr\": \"Ruanda\",\n        \"name_uk\": \"Руанда\",\n        \"name_ur\": \"روانڈا\",\n        \"name_vi\": \"Rwanda\",\n        \"name_zh\": \"卢旺达\",\n        \"name_zht\": \"盧旺達\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"RWA.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [30.419104852019245, -1.134659112150416],\n            [30.816134881317712, -1.698914076345389],\n            [30.75830895358311, -2.287250257988369],\n            [30.46967, -2.41383],\n            [30.469673645761223, -2.41385475710134],\n            [29.93835900240794, -2.348486830254238],\n            [29.632176141078588, -2.917857761246097],\n            [29.024926385216787, -2.839257907730158],\n            [29.117478875451553, -2.292211195488385],\n            [29.254834832483343, -2.215109958508911],\n            [29.291886834436614, -1.620055840667987],\n            [29.579466180140884, -1.341313164885626],\n            [29.821518588996014, -1.443322442229785],\n            [30.419104852019245, -1.134659112150416]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Uganda\",\n        \"sov_a3\": \"UGA\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Uganda\",\n        \"adm0_a3\": \"UGA\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Uganda\",\n        \"gu_a3\": \"UGA\",\n        \"su_dif\": 0,\n        \"subunit\": \"Uganda\",\n        \"su_a3\": \"UGA\",\n        \"brk_diff\": 0,\n        \"name\": \"Uganda\",\n        \"name_long\": \"Uganda\",\n        \"brk_a3\": \"UGA\",\n        \"brk_name\": \"Uganda\",\n        \"brk_group\": null,\n        \"abbrev\": \"Uga.\",\n        \"postal\": \"UG\",\n        \"formal_en\": \"Republic of Uganda\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Uganda\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Uganda\",\n        \"name_alt\": null,\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 6,\n        \"mapcolor13\": 4,\n        \"pop_est\": 44269594,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 35165,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"UG\",\n        \"iso_a2\": \"UG\",\n        \"iso_a2_eh\": \"UG\",\n        \"iso_a3\": \"UGA\",\n        \"iso_a3_eh\": \"UGA\",\n        \"iso_n3\": \"800\",\n        \"iso_n3_eh\": \"800\",\n        \"un_a3\": \"800\",\n        \"wb_a2\": \"UG\",\n        \"wb_a3\": \"UGA\",\n        \"woe_id\": 23424974,\n        \"woe_id_eh\": 23424974,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"UGA\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"UGA\",\n        \"adm0_a3_us\": \"UGA\",\n        \"adm0_a3_fr\": \"UGA\",\n        \"adm0_a3_ru\": \"UGA\",\n        \"adm0_a3_es\": \"UGA\",\n        \"adm0_a3_cn\": \"UGA\",\n        \"adm0_a3_tw\": \"UGA\",\n        \"adm0_a3_in\": \"UGA\",\n        \"adm0_a3_np\": \"UGA\",\n        \"adm0_a3_pk\": \"UGA\",\n        \"adm0_a3_de\": \"UGA\",\n        \"adm0_a3_gb\": \"UGA\",\n        \"adm0_a3_br\": \"UGA\",\n        \"adm0_a3_il\": \"UGA\",\n        \"adm0_a3_ps\": \"UGA\",\n        \"adm0_a3_sa\": \"UGA\",\n        \"adm0_a3_eg\": \"UGA\",\n        \"adm0_a3_ma\": \"UGA\",\n        \"adm0_a3_pt\": \"UGA\",\n        \"adm0_a3_ar\": \"UGA\",\n        \"adm0_a3_jp\": \"UGA\",\n        \"adm0_a3_ko\": \"UGA\",\n        \"adm0_a3_vn\": \"UGA\",\n        \"adm0_a3_tr\": \"UGA\",\n        \"adm0_a3_id\": \"UGA\",\n        \"adm0_a3_pl\": \"UGA\",\n        \"adm0_a3_gr\": \"UGA\",\n        \"adm0_a3_it\": \"UGA\",\n        \"adm0_a3_nl\": \"UGA\",\n        \"adm0_a3_se\": \"UGA\",\n        \"adm0_a3_bd\": \"UGA\",\n        \"adm0_a3_ua\": \"UGA\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Eastern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 32.948555,\n        \"label_y\": 1.972589,\n        \"ne_id\": 1159321343,\n        \"wikidataid\": \"Q1036\",\n        \"name_ar\": \"أوغندا\",\n        \"name_bn\": \"উগান্ডা\",\n        \"name_de\": \"Uganda\",\n        \"name_en\": \"Uganda\",\n        \"name_es\": \"Uganda\",\n        \"name_fa\": \"اوگاندا\",\n        \"name_fr\": \"Ouganda\",\n        \"name_el\": \"Ουγκάντα\",\n        \"name_he\": \"אוגנדה\",\n        \"name_hi\": \"युगाण्डा\",\n        \"name_hu\": \"Uganda\",\n        \"name_id\": \"Uganda\",\n        \"name_it\": \"Uganda\",\n        \"name_ja\": \"ウガンダ\",\n        \"name_ko\": \"우간다\",\n        \"name_nl\": \"Oeganda\",\n        \"name_pl\": \"Uganda\",\n        \"name_pt\": \"Uganda\",\n        \"name_ru\": \"Уганда\",\n        \"name_sv\": \"Uganda\",\n        \"name_tr\": \"Uganda\",\n        \"name_uk\": \"Уганда\",\n        \"name_ur\": \"یوگنڈا\",\n        \"name_vi\": \"Uganda\",\n        \"name_zh\": \"乌干达\",\n        \"name_zht\": \"烏干達\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"UGA.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [33.90371119710453, -0.95],\n            [31.86617, -1.02736],\n            [30.769860000000108, -1.01455],\n            [30.419104852019245, -1.134659112150416],\n            [29.821518588996014, -1.443322442229785],\n            [29.579466180140884, -1.341313164885626],\n            [29.58783776217217, -0.587405694179381],\n            [29.819503208136638, -0.205310153813372],\n            [29.875778842902434, 0.597379868976361],\n            [30.086153598762706, 1.062312730306289],\n            [30.46850752129029, 1.583805446779706],\n            [30.85267011894806, 1.849396470543809],\n            [31.174149204235817, 2.204465236821264],\n            [30.77334679538004, 2.339883327642127],\n            [30.83385989759381, 3.509165961110341],\n            [30.833852421715427, 3.509171604222463],\n            [31.24556, 3.7819],\n            [31.88145, 3.55827],\n            [32.68642, 3.79232],\n            [33.3900000000001, 3.79],\n            [34.005, 4.249884947362048],\n            [34.47913, 3.5556],\n            [34.59607, 3.053740000000118],\n            [35.03599, 1.90584],\n            [34.6721, 1.17694],\n            [34.18, 0.515],\n            [33.893568969666944, 0.109813537861896],\n            [33.90371119710453, -0.95]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Lesotho\",\n        \"sov_a3\": \"LSO\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Lesotho\",\n        \"adm0_a3\": \"LSO\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Lesotho\",\n        \"gu_a3\": \"LSO\",\n        \"su_dif\": 0,\n        \"subunit\": \"Lesotho\",\n        \"su_a3\": \"LSO\",\n        \"brk_diff\": 0,\n        \"name\": \"Lesotho\",\n        \"name_long\": \"Lesotho\",\n        \"brk_a3\": \"LSO\",\n        \"brk_name\": \"Lesotho\",\n        \"brk_group\": null,\n        \"abbrev\": \"Les.\",\n        \"postal\": \"LS\",\n        \"formal_en\": \"Kingdom of Lesotho\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Lesotho\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Lesotho\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 8,\n        \"pop_est\": 2125268,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 2376,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"LT\",\n        \"iso_a2\": \"LS\",\n        \"iso_a2_eh\": \"LS\",\n        \"iso_a3\": \"LSO\",\n        \"iso_a3_eh\": \"LSO\",\n        \"iso_n3\": \"426\",\n        \"iso_n3_eh\": \"426\",\n        \"un_a3\": \"426\",\n        \"wb_a2\": \"LS\",\n        \"wb_a3\": \"LSO\",\n        \"woe_id\": 23424880,\n        \"woe_id_eh\": 23424880,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"LSO\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"LSO\",\n        \"adm0_a3_us\": \"LSO\",\n        \"adm0_a3_fr\": \"LSO\",\n        \"adm0_a3_ru\": \"LSO\",\n        \"adm0_a3_es\": \"LSO\",\n        \"adm0_a3_cn\": \"LSO\",\n        \"adm0_a3_tw\": \"LSO\",\n        \"adm0_a3_in\": \"LSO\",\n        \"adm0_a3_np\": \"LSO\",\n        \"adm0_a3_pk\": \"LSO\",\n        \"adm0_a3_de\": \"LSO\",\n        \"adm0_a3_gb\": \"LSO\",\n        \"adm0_a3_br\": \"LSO\",\n        \"adm0_a3_il\": \"LSO\",\n        \"adm0_a3_ps\": \"LSO\",\n        \"adm0_a3_sa\": \"LSO\",\n        \"adm0_a3_eg\": \"LSO\",\n        \"adm0_a3_ma\": \"LSO\",\n        \"adm0_a3_pt\": \"LSO\",\n        \"adm0_a3_ar\": \"LSO\",\n        \"adm0_a3_jp\": \"LSO\",\n        \"adm0_a3_ko\": \"LSO\",\n        \"adm0_a3_vn\": \"LSO\",\n        \"adm0_a3_tr\": \"LSO\",\n        \"adm0_a3_id\": \"LSO\",\n        \"adm0_a3_pl\": \"LSO\",\n        \"adm0_a3_gr\": \"LSO\",\n        \"adm0_a3_it\": \"LSO\",\n        \"adm0_a3_nl\": \"LSO\",\n        \"adm0_a3_se\": \"LSO\",\n        \"adm0_a3_bd\": \"LSO\",\n        \"adm0_a3_ua\": \"LSO\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Southern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 28.246639,\n        \"label_y\": -29.480158,\n        \"ne_id\": 1159321027,\n        \"wikidataid\": \"Q1013\",\n        \"name_ar\": \"ليسوتو\",\n        \"name_bn\": \"লেসোথো\",\n        \"name_de\": \"Lesotho\",\n        \"name_en\": \"Lesotho\",\n        \"name_es\": \"Lesoto\",\n        \"name_fa\": \"لسوتو\",\n        \"name_fr\": \"Lesotho\",\n        \"name_el\": \"Λεσότο\",\n        \"name_he\": \"לסוטו\",\n        \"name_hi\": \"लेसोथो\",\n        \"name_hu\": \"Lesotho\",\n        \"name_id\": \"Lesotho\",\n        \"name_it\": \"Lesotho\",\n        \"name_ja\": \"レソト\",\n        \"name_ko\": \"레소토\",\n        \"name_nl\": \"Lesotho\",\n        \"name_pl\": \"Lesotho\",\n        \"name_pt\": \"Lesoto\",\n        \"name_ru\": \"Лесото\",\n        \"name_sv\": \"Lesotho\",\n        \"name_tr\": \"Lesotho\",\n        \"name_uk\": \"Лесото\",\n        \"name_ur\": \"لیسوتھو\",\n        \"name_vi\": \"Lesotho\",\n        \"name_zh\": \"莱索托\",\n        \"name_zht\": \"賴索托\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"LSO.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [28.978262566857243, -28.95559661226171],\n            [29.32516645683259, -29.257386976846256],\n            [29.018415154748027, -29.74376555757737],\n            [28.84839969250774, -30.070050551068256],\n            [28.29106937023991, -30.2262167294543],\n            [28.107204624145425, -30.54573211031495],\n            [27.749397006956485, -30.645105889612225],\n            [26.999261915807637, -29.875953871379984],\n            [27.532511020627478, -29.24271087007536],\n            [28.074338413207784, -28.851468601193588],\n            [28.541700066855498, -28.64750172293757],\n            [28.978262566857243, -28.95559661226171]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Cameroon\",\n        \"sov_a3\": \"CMR\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Cameroon\",\n        \"adm0_a3\": \"CMR\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Cameroon\",\n        \"gu_a3\": \"CMR\",\n        \"su_dif\": 0,\n        \"subunit\": \"Cameroon\",\n        \"su_a3\": \"CMR\",\n        \"brk_diff\": 0,\n        \"name\": \"Cameroon\",\n        \"name_long\": \"Cameroon\",\n        \"brk_a3\": \"CMR\",\n        \"brk_name\": \"Cameroon\",\n        \"brk_group\": null,\n        \"abbrev\": \"Cam.\",\n        \"postal\": \"CM\",\n        \"formal_en\": \"Republic of Cameroon\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Cameroon\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Cameroon\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 3,\n        \"pop_est\": 25876380,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 39007,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"CM\",\n        \"iso_a2\": \"CM\",\n        \"iso_a2_eh\": \"CM\",\n        \"iso_a3\": \"CMR\",\n        \"iso_a3_eh\": \"CMR\",\n        \"iso_n3\": \"120\",\n        \"iso_n3_eh\": \"120\",\n        \"un_a3\": \"120\",\n        \"wb_a2\": \"CM\",\n        \"wb_a3\": \"CMR\",\n        \"woe_id\": 23424785,\n        \"woe_id_eh\": 23424785,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"CMR\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"CMR\",\n        \"adm0_a3_us\": \"CMR\",\n        \"adm0_a3_fr\": \"CMR\",\n        \"adm0_a3_ru\": \"CMR\",\n        \"adm0_a3_es\": \"CMR\",\n        \"adm0_a3_cn\": \"CMR\",\n        \"adm0_a3_tw\": \"CMR\",\n        \"adm0_a3_in\": \"CMR\",\n        \"adm0_a3_np\": \"CMR\",\n        \"adm0_a3_pk\": \"CMR\",\n        \"adm0_a3_de\": \"CMR\",\n        \"adm0_a3_gb\": \"CMR\",\n        \"adm0_a3_br\": \"CMR\",\n        \"adm0_a3_il\": \"CMR\",\n        \"adm0_a3_ps\": \"CMR\",\n        \"adm0_a3_sa\": \"CMR\",\n        \"adm0_a3_eg\": \"CMR\",\n        \"adm0_a3_ma\": \"CMR\",\n        \"adm0_a3_pt\": \"CMR\",\n        \"adm0_a3_ar\": \"CMR\",\n        \"adm0_a3_jp\": \"CMR\",\n        \"adm0_a3_ko\": \"CMR\",\n        \"adm0_a3_vn\": \"CMR\",\n        \"adm0_a3_tr\": \"CMR\",\n        \"adm0_a3_id\": \"CMR\",\n        \"adm0_a3_pl\": \"CMR\",\n        \"adm0_a3_gr\": \"CMR\",\n        \"adm0_a3_it\": \"CMR\",\n        \"adm0_a3_nl\": \"CMR\",\n        \"adm0_a3_se\": \"CMR\",\n        \"adm0_a3_bd\": \"CMR\",\n        \"adm0_a3_ua\": \"CMR\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Middle Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 12.473488,\n        \"label_y\": 4.585041,\n        \"ne_id\": 1159320509,\n        \"wikidataid\": \"Q1009\",\n        \"name_ar\": \"الكاميرون\",\n        \"name_bn\": \"ক্যামেরুন\",\n        \"name_de\": \"Kamerun\",\n        \"name_en\": \"Cameroon\",\n        \"name_es\": \"Camerún\",\n        \"name_fa\": \"کامرون\",\n        \"name_fr\": \"Cameroun\",\n        \"name_el\": \"Καμερούν\",\n        \"name_he\": \"קמרון\",\n        \"name_hi\": \"कैमरुन\",\n        \"name_hu\": \"Kamerun\",\n        \"name_id\": \"Kamerun\",\n        \"name_it\": \"Camerun\",\n        \"name_ja\": \"カメルーン\",\n        \"name_ko\": \"카메룬\",\n        \"name_nl\": \"Kameroen\",\n        \"name_pl\": \"Kamerun\",\n        \"name_pt\": \"Camarões\",\n        \"name_ru\": \"Камерун\",\n        \"name_sv\": \"Kamerun\",\n        \"name_tr\": \"Kamerun\",\n        \"name_uk\": \"Камерун\",\n        \"name_ur\": \"کیمرون\",\n        \"name_vi\": \"Cameroon\",\n        \"name_zh\": \"喀麦隆\",\n        \"name_zht\": \"喀麥隆\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"CMR.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [14.495787387762846, 12.85939626713733],\n            [14.89336, 12.21905],\n            [14.9601518083376, 11.555574042197224],\n            [14.92356489427496, 10.891325181517473],\n            [15.467872755605242, 9.982336737503545],\n            [14.909353875394716, 9.992129421422732],\n            [14.62720055508106, 9.920919297724538],\n            [14.171466098699028, 10.021378282099931],\n            [13.954218377344006, 9.549494940626687],\n            [14.54446658698177, 8.965861314322268],\n            [14.97999555833769, 8.796104234243472],\n            [15.120865512765306, 8.382150173369439],\n            [15.436091749745742, 7.692812404811889],\n            [15.279460483469109, 7.421924546737969],\n            [14.776545444404576, 6.408498033062045],\n            [14.536560092841114, 6.22695872642069],\n            [14.459407179429348, 5.4517605656103],\n            [14.558935988023507, 5.03059764243153],\n            [14.47837243008047, 4.732605495620447],\n            [14.950953403389661, 4.210389309094921],\n            [15.036219516671252, 3.851367295747124],\n            [15.405395948964383, 3.33530060466434],\n            [15.862732374747482, 3.013537298998983],\n            [15.907380812247652, 2.557389431158612],\n            [16.012852410555354, 2.267639675298085],\n            [15.940918816805066, 1.727672634280296],\n            [15.146341993885244, 1.964014797367184],\n            [14.33781253424658, 2.227874660649491],\n            [13.075822381246752, 2.267097072759015],\n            [12.951333855855609, 2.32161570882694],\n            [12.359380323952221, 2.19281220133945],\n            [11.75166548019979, 2.326757513839993],\n            [11.276449008843713, 2.261050930180872],\n            [9.649158155972628, 2.283866075037736],\n            [9.795195753629457, 3.073404445809117],\n            [9.404366896206, 3.734526882335203],\n            [8.948115675501072, 3.904128933117136],\n            [8.744923943729418, 4.35221527751996],\n            [8.48881554529089, 4.495617377129918],\n            [8.500287713259695, 4.771982937026849],\n            [8.757532993208628, 5.479665839047911],\n            [9.233162876023044, 6.444490668153335],\n            [9.522705926154401, 6.453482367372117],\n            [10.118276808318257, 7.03876963950988],\n            [10.497375115611419, 7.055357774275564],\n            [11.058787876030351, 6.644426784690594],\n            [11.74577436691851, 6.981382961449754],\n            [11.839308709366803, 7.397042344589437],\n            [12.063946160539558, 7.799808457872302],\n            [12.218872104550599, 8.305824082874324],\n            [12.753671502339216, 8.717762762888995],\n            [12.955467970438974, 9.417771714714704],\n            [13.167599724997103, 9.640626328973411],\n            [13.308676385153918, 10.160362046748928],\n            [13.572949659894562, 10.798565985553566],\n            [14.415378859116684, 11.572368882692075],\n            [14.468192172918975, 11.904751695193411],\n            [14.577177768622533, 12.085360826053503],\n            [14.181336297266794, 12.483656927943116],\n            [14.213530714584635, 12.802035427293347],\n            [14.495787387762846, 12.85939626713733]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Gabon\",\n        \"sov_a3\": \"GAB\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Gabon\",\n        \"adm0_a3\": \"GAB\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Gabon\",\n        \"gu_a3\": \"GAB\",\n        \"su_dif\": 0,\n        \"subunit\": \"Gabon\",\n        \"su_a3\": \"GAB\",\n        \"brk_diff\": 0,\n        \"name\": \"Gabon\",\n        \"name_long\": \"Gabon\",\n        \"brk_a3\": \"GAB\",\n        \"brk_name\": \"Gabon\",\n        \"brk_group\": null,\n        \"abbrev\": \"Gabon\",\n        \"postal\": \"GA\",\n        \"formal_en\": \"Gabonese Republic\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Gabon\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Gabon\",\n        \"name_alt\": null,\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 5,\n        \"pop_est\": 2172579,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 16874,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"GB\",\n        \"iso_a2\": \"GA\",\n        \"iso_a2_eh\": \"GA\",\n        \"iso_a3\": \"GAB\",\n        \"iso_a3_eh\": \"GAB\",\n        \"iso_n3\": \"266\",\n        \"iso_n3_eh\": \"266\",\n        \"un_a3\": \"266\",\n        \"wb_a2\": \"GA\",\n        \"wb_a3\": \"GAB\",\n        \"woe_id\": 23424822,\n        \"woe_id_eh\": 23424822,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"GAB\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"GAB\",\n        \"adm0_a3_us\": \"GAB\",\n        \"adm0_a3_fr\": \"GAB\",\n        \"adm0_a3_ru\": \"GAB\",\n        \"adm0_a3_es\": \"GAB\",\n        \"adm0_a3_cn\": \"GAB\",\n        \"adm0_a3_tw\": \"GAB\",\n        \"adm0_a3_in\": \"GAB\",\n        \"adm0_a3_np\": \"GAB\",\n        \"adm0_a3_pk\": \"GAB\",\n        \"adm0_a3_de\": \"GAB\",\n        \"adm0_a3_gb\": \"GAB\",\n        \"adm0_a3_br\": \"GAB\",\n        \"adm0_a3_il\": \"GAB\",\n        \"adm0_a3_ps\": \"GAB\",\n        \"adm0_a3_sa\": \"GAB\",\n        \"adm0_a3_eg\": \"GAB\",\n        \"adm0_a3_ma\": \"GAB\",\n        \"adm0_a3_pt\": \"GAB\",\n        \"adm0_a3_ar\": \"GAB\",\n        \"adm0_a3_jp\": \"GAB\",\n        \"adm0_a3_ko\": \"GAB\",\n        \"adm0_a3_vn\": \"GAB\",\n        \"adm0_a3_tr\": \"GAB\",\n        \"adm0_a3_id\": \"GAB\",\n        \"adm0_a3_pl\": \"GAB\",\n        \"adm0_a3_gr\": \"GAB\",\n        \"adm0_a3_it\": \"GAB\",\n        \"adm0_a3_nl\": \"GAB\",\n        \"adm0_a3_se\": \"GAB\",\n        \"adm0_a3_bd\": \"GAB\",\n        \"adm0_a3_ua\": \"GAB\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Middle Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 5,\n        \"tiny\": 3,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 11.835939,\n        \"label_y\": -0.437739,\n        \"ne_id\": 1159320693,\n        \"wikidataid\": \"Q1000\",\n        \"name_ar\": \"الغابون\",\n        \"name_bn\": \"গ্যাবন\",\n        \"name_de\": \"Gabun\",\n        \"name_en\": \"Gabon\",\n        \"name_es\": \"Gabón\",\n        \"name_fa\": \"گابن\",\n        \"name_fr\": \"Gabon\",\n        \"name_el\": \"Γκαμπόν\",\n        \"name_he\": \"גבון\",\n        \"name_hi\": \"गबॉन\",\n        \"name_hu\": \"Gabon\",\n        \"name_id\": \"Gabon\",\n        \"name_it\": \"Gabon\",\n        \"name_ja\": \"ガボン\",\n        \"name_ko\": \"가봉\",\n        \"name_nl\": \"Gabon\",\n        \"name_pl\": \"Gabon\",\n        \"name_pt\": \"Gabão\",\n        \"name_ru\": \"Габон\",\n        \"name_sv\": \"Gabon\",\n        \"name_tr\": \"Gabon\",\n        \"name_uk\": \"Габон\",\n        \"name_ur\": \"گیبون\",\n        \"name_vi\": \"Gabon\",\n        \"name_zh\": \"加蓬\",\n        \"name_zht\": \"加彭\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"GAB.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [11.276449008843713, 2.261050930180872],\n            [11.75166548019979, 2.326757513839993],\n            [12.359380323952221, 2.19281220133945],\n            [12.951333855855609, 2.32161570882694],\n            [13.075822381246752, 2.267097072759015],\n            [13.003113641012078, 1.83089630778332],\n            [13.282631463278818, 1.31418366129688],\n            [14.026668735417218, 1.395677395021153],\n            [14.276265903386957, 1.196929836426619],\n            [13.843320753645656, 0.038757635901149],\n            [14.316418491277744, -0.552627455247048],\n            [14.425455763413595, -1.333406670744971],\n            [14.299210239324566, -1.998275648612214],\n            [13.99240726080771, -2.4708049454891],\n            [13.109618767965628, -2.428740329603514],\n            [12.575284458067642, -1.948511244315135],\n            [12.495702752338161, -2.391688327650243],\n            [11.820963575903193, -2.514161472181982],\n            [11.478038771214303, -2.765618991714241],\n            [11.855121697648116, -3.426870619321051],\n            [11.093772820691925, -3.978826592630547],\n            [10.06613528813574, -2.969482517105682],\n            [9.40524539555497, -2.144313246269043],\n            [8.79799563969317, -1.111301364754496],\n            [8.830086704146424, -0.779073581550037],\n            [9.048419630579588, -0.459351494960217],\n            [9.29135053878369, 0.268666083167687],\n            [9.492888624721985, 1.010119533691494],\n            [9.830284051155644, 1.067893784993799],\n            [11.285078973036462, 1.057661851400013],\n            [11.276449008843713, 2.261050930180872]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Niger\",\n        \"sov_a3\": \"NER\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Niger\",\n        \"adm0_a3\": \"NER\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Niger\",\n        \"gu_a3\": \"NER\",\n        \"su_dif\": 0,\n        \"subunit\": \"Niger\",\n        \"su_a3\": \"NER\",\n        \"brk_diff\": 0,\n        \"name\": \"Niger\",\n        \"name_long\": \"Niger\",\n        \"brk_a3\": \"NER\",\n        \"brk_name\": \"Niger\",\n        \"brk_group\": null,\n        \"abbrev\": \"Niger\",\n        \"postal\": \"NE\",\n        \"formal_en\": \"Republic of Niger\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Niger\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Niger\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 13,\n        \"pop_est\": 23310715,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 12911,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"NG\",\n        \"iso_a2\": \"NE\",\n        \"iso_a2_eh\": \"NE\",\n        \"iso_a3\": \"NER\",\n        \"iso_a3_eh\": \"NER\",\n        \"iso_n3\": \"562\",\n        \"iso_n3_eh\": \"562\",\n        \"un_a3\": \"562\",\n        \"wb_a2\": \"NE\",\n        \"wb_a3\": \"NER\",\n        \"woe_id\": 23424906,\n        \"woe_id_eh\": 23424906,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"NER\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"NER\",\n        \"adm0_a3_us\": \"NER\",\n        \"adm0_a3_fr\": \"NER\",\n        \"adm0_a3_ru\": \"NER\",\n        \"adm0_a3_es\": \"NER\",\n        \"adm0_a3_cn\": \"NER\",\n        \"adm0_a3_tw\": \"NER\",\n        \"adm0_a3_in\": \"NER\",\n        \"adm0_a3_np\": \"NER\",\n        \"adm0_a3_pk\": \"NER\",\n        \"adm0_a3_de\": \"NER\",\n        \"adm0_a3_gb\": \"NER\",\n        \"adm0_a3_br\": \"NER\",\n        \"adm0_a3_il\": \"NER\",\n        \"adm0_a3_ps\": \"NER\",\n        \"adm0_a3_sa\": \"NER\",\n        \"adm0_a3_eg\": \"NER\",\n        \"adm0_a3_ma\": \"NER\",\n        \"adm0_a3_pt\": \"NER\",\n        \"adm0_a3_ar\": \"NER\",\n        \"adm0_a3_jp\": \"NER\",\n        \"adm0_a3_ko\": \"NER\",\n        \"adm0_a3_vn\": \"NER\",\n        \"adm0_a3_tr\": \"NER\",\n        \"adm0_a3_id\": \"NER\",\n        \"adm0_a3_pl\": \"NER\",\n        \"adm0_a3_gr\": \"NER\",\n        \"adm0_a3_it\": \"NER\",\n        \"adm0_a3_nl\": \"NER\",\n        \"adm0_a3_se\": \"NER\",\n        \"adm0_a3_bd\": \"NER\",\n        \"adm0_a3_ua\": \"NER\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Western Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 9.504356,\n        \"label_y\": 17.446195,\n        \"ne_id\": 1159321087,\n        \"wikidataid\": \"Q1032\",\n        \"name_ar\": \"النيجر\",\n        \"name_bn\": \"নাইজার\",\n        \"name_de\": \"Niger\",\n        \"name_en\": \"Niger\",\n        \"name_es\": \"Níger\",\n        \"name_fa\": \"نیجر\",\n        \"name_fr\": \"Niger\",\n        \"name_el\": \"Νίγηρας\",\n        \"name_he\": \"ניז'ר\",\n        \"name_hi\": \"नाइजर\",\n        \"name_hu\": \"Niger\",\n        \"name_id\": \"Niger\",\n        \"name_it\": \"Niger\",\n        \"name_ja\": \"ニジェール\",\n        \"name_ko\": \"니제르\",\n        \"name_nl\": \"Niger\",\n        \"name_pl\": \"Niger\",\n        \"name_pt\": \"Níger\",\n        \"name_ru\": \"Нигер\",\n        \"name_sv\": \"Niger\",\n        \"name_tr\": \"Nijer\",\n        \"name_uk\": \"Нігер\",\n        \"name_ur\": \"نائجر\",\n        \"name_vi\": \"Niger\",\n        \"name_zh\": \"尼日尔\",\n        \"name_zht\": \"尼日\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"NER.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [14.8513, 22.862950000000126],\n            [15.096887648181848, 21.30851878507491],\n            [15.47106, 21.04845],\n            [15.487148064850146, 20.730414537025638],\n            [15.903246697664315, 20.387618923417506],\n            [15.685740594147774, 19.957180080642388],\n            [15.30044111497972, 17.927949937405003],\n            [15.247731154041844, 16.627305813050782],\n            [13.97217, 15.68437],\n            [13.540393507550789, 14.367133693901224],\n            [13.956698846094127, 13.996691189016929],\n            [13.95447675950561, 13.353448798063766],\n            [14.595781284247607, 13.33042694747786],\n            [14.495787387762846, 12.85939626713733],\n            [14.213530714584635, 12.802035427293347],\n            [14.181336297266794, 12.483656927943116],\n            [13.995352817448293, 12.461565253138303],\n            [13.318701613018561, 13.556356309457826],\n            [13.083987257548813, 13.596147162322495],\n            [12.302071160540523, 13.037189032437524],\n            [11.527803175511394, 13.328980007373588],\n            [10.989593133191534, 13.387322699431195],\n            [10.701031935273706, 13.246917832894084],\n            [10.114814487354693, 13.27725189864941],\n            [9.524928012742947, 12.851102199754479],\n            [9.014933302454438, 12.826659247280418],\n            [7.804671258178786, 13.343526923063747],\n            [7.330746697630019, 13.0980380314612],\n            [6.820441928747754, 13.115091254117518],\n            [6.445426059605637, 13.492768459522678],\n            [5.443058302440136, 13.865923977102227],\n            [4.368343540066007, 13.747481594289411],\n            [4.107945997747322, 13.531215725147831],\n            [3.967282749048849, 12.956108710171575],\n            [3.680633579125811, 12.552903347214226],\n            [3.611180454125559, 11.660167141155968],\n            [2.848643019226586, 12.23563589115821],\n            [2.49016360841793, 12.233052069543675],\n            [2.154473504249921, 11.940150051313339],\n            [2.177107781593776, 12.625017808477535],\n            [1.024103224297477, 12.851825669806574],\n            [0.993045688490071, 13.335749620003824],\n            [0.429927605805517, 13.988733018443924],\n            [0.295646396495101, 14.444234930880654],\n            [0.374892205414682, 14.92890818934613],\n            [1.015783318698482, 14.96818227788799],\n            [1.385528191746858, 15.323561102759172],\n            [2.749992709981484, 15.409524847876696],\n            [3.638258904646477, 15.568119818580456],\n            [3.723421665063483, 16.184283759012615],\n            [4.270209995143802, 16.852227484601215],\n            [4.267419467800039, 19.155265204337],\n            [5.677565952180686, 19.601206976799716],\n            [8.572893100629784, 21.565660712159143],\n            [11.999505649471613, 23.47166840259645],\n            [13.581424594790462, 23.04050608976928],\n            [14.143870883855243, 22.491288967371133],\n            [14.8513, 22.862950000000126]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Burkina Faso\",\n        \"sov_a3\": \"BFA\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Burkina Faso\",\n        \"adm0_a3\": \"BFA\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Burkina Faso\",\n        \"gu_a3\": \"BFA\",\n        \"su_dif\": 0,\n        \"subunit\": \"Burkina Faso\",\n        \"su_a3\": \"BFA\",\n        \"brk_diff\": 0,\n        \"name\": \"Burkina Faso\",\n        \"name_long\": \"Burkina Faso\",\n        \"brk_a3\": \"BFA\",\n        \"brk_name\": \"Burkina Faso\",\n        \"brk_group\": null,\n        \"abbrev\": \"B.F.\",\n        \"postal\": \"BF\",\n        \"formal_en\": \"Burkina Faso\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Burkina Faso\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Burkina Faso\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 11,\n        \"pop_est\": 20321378,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 15990,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"UV\",\n        \"iso_a2\": \"BF\",\n        \"iso_a2_eh\": \"BF\",\n        \"iso_a3\": \"BFA\",\n        \"iso_a3_eh\": \"BFA\",\n        \"iso_n3\": \"854\",\n        \"iso_n3_eh\": \"854\",\n        \"un_a3\": \"854\",\n        \"wb_a2\": \"BF\",\n        \"wb_a3\": \"BFA\",\n        \"woe_id\": 23424978,\n        \"woe_id_eh\": 23424978,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"BFA\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"BFA\",\n        \"adm0_a3_us\": \"BFA\",\n        \"adm0_a3_fr\": \"BFA\",\n        \"adm0_a3_ru\": \"BFA\",\n        \"adm0_a3_es\": \"BFA\",\n        \"adm0_a3_cn\": \"BFA\",\n        \"adm0_a3_tw\": \"BFA\",\n        \"adm0_a3_in\": \"BFA\",\n        \"adm0_a3_np\": \"BFA\",\n        \"adm0_a3_pk\": \"BFA\",\n        \"adm0_a3_de\": \"BFA\",\n        \"adm0_a3_gb\": \"BFA\",\n        \"adm0_a3_br\": \"BFA\",\n        \"adm0_a3_il\": \"BFA\",\n        \"adm0_a3_ps\": \"BFA\",\n        \"adm0_a3_sa\": \"BFA\",\n        \"adm0_a3_eg\": \"BFA\",\n        \"adm0_a3_ma\": \"BFA\",\n        \"adm0_a3_pt\": \"BFA\",\n        \"adm0_a3_ar\": \"BFA\",\n        \"adm0_a3_jp\": \"BFA\",\n        \"adm0_a3_ko\": \"BFA\",\n        \"adm0_a3_vn\": \"BFA\",\n        \"adm0_a3_tr\": \"BFA\",\n        \"adm0_a3_id\": \"BFA\",\n        \"adm0_a3_pl\": \"BFA\",\n        \"adm0_a3_gr\": \"BFA\",\n        \"adm0_a3_it\": \"BFA\",\n        \"adm0_a3_nl\": \"BFA\",\n        \"adm0_a3_se\": \"BFA\",\n        \"adm0_a3_bd\": \"BFA\",\n        \"adm0_a3_ua\": \"BFA\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Western Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 12,\n        \"long_len\": 12,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": -1.36388,\n        \"label_y\": 12.673048,\n        \"ne_id\": 1159320405,\n        \"wikidataid\": \"Q965\",\n        \"name_ar\": \"بوركينا فاسو\",\n        \"name_bn\": \"বুর্কিনা ফাসো\",\n        \"name_de\": \"Burkina Faso\",\n        \"name_en\": \"Burkina Faso\",\n        \"name_es\": \"Burkina Faso\",\n        \"name_fa\": \"بورکینافاسو\",\n        \"name_fr\": \"Burkina Faso\",\n        \"name_el\": \"Μπουρκίνα Φάσο\",\n        \"name_he\": \"בורקינה פאסו\",\n        \"name_hi\": \"बुर्किना फासो\",\n        \"name_hu\": \"Burkina Faso\",\n        \"name_id\": \"Burkina Faso\",\n        \"name_it\": \"Burkina Faso\",\n        \"name_ja\": \"ブルキナファソ\",\n        \"name_ko\": \"부르키나파소\",\n        \"name_nl\": \"Burkina Faso\",\n        \"name_pl\": \"Burkina Faso\",\n        \"name_pt\": \"Burkina Faso\",\n        \"name_ru\": \"Буркина-Фасо\",\n        \"name_sv\": \"Burkina Faso\",\n        \"name_tr\": \"Burkina Faso\",\n        \"name_uk\": \"Буркіна-Фасо\",\n        \"name_ur\": \"برکینا فاسو\",\n        \"name_vi\": \"Burkina Faso\",\n        \"name_zh\": \"布基纳法索\",\n        \"name_zht\": \"布基納法索\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"BFA.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-5.404341599946974, 10.370736802609146],\n            [-5.470564947929006, 10.951269842976048],\n            [-5.197842576508648, 11.37514577885014],\n            [-5.220941941743121, 11.713858954307227],\n            [-4.427166103523803, 12.542645575404295],\n            [-4.28040503581488, 13.228443508349741],\n            [-4.006390753587226, 13.472485459848116],\n            [-3.522802700199861, 13.337661647998615],\n            [-3.10370683431276, 13.541266791228594],\n            [-2.967694464520577, 13.79815033615151],\n            [-2.191824510090385, 14.246417548067356],\n            [-2.001035122068771, 14.559008287000893],\n            [-1.066363491205664, 14.973815009007765],\n            [-0.515854458000348, 15.116157741755728],\n            [-0.26625729003058, 14.924308986872148],\n            [0.374892205414682, 14.92890818934613],\n            [0.295646396495101, 14.444234930880654],\n            [0.429927605805517, 13.988733018443924],\n            [0.993045688490071, 13.335749620003824],\n            [1.024103224297477, 12.851825669806574],\n            [2.177107781593776, 12.625017808477535],\n            [2.154473504249921, 11.940150051313339],\n            [1.935985548519881, 11.641150214072553],\n            [1.447178175471066, 11.547719224488858],\n            [1.243469679376489, 11.110510769083461],\n            [0.899563022474069, 10.99733938236426],\n            [0.023802524423701, 11.018681748900804],\n            [-0.438701544588582, 11.098340969278722],\n            [-0.761575893548183, 10.936929633015055],\n            [-1.203357713211432, 11.009819240762738],\n            [-2.940409308270461, 10.962690334512558],\n            [-2.963896246747112, 10.395334784380083],\n            [-2.827496303712707, 9.642460842319778],\n            [-3.511898972986273, 9.90032623945622],\n            [-3.980449184576685, 9.8623440617217],\n            [-4.330246954760383, 9.610834865757141],\n            [-4.779883592131966, 9.821984768101743],\n            [-4.954653286143099, 10.152713934769736],\n            [-5.404341599946974, 10.370736802609146]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Togo\",\n        \"sov_a3\": \"TGO\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Togo\",\n        \"adm0_a3\": \"TGO\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Togo\",\n        \"gu_a3\": \"TGO\",\n        \"su_dif\": 0,\n        \"subunit\": \"Togo\",\n        \"su_a3\": \"TGO\",\n        \"brk_diff\": 0,\n        \"name\": \"Togo\",\n        \"name_long\": \"Togo\",\n        \"brk_a3\": \"TGO\",\n        \"brk_name\": \"Togo\",\n        \"brk_group\": null,\n        \"abbrev\": \"Togo\",\n        \"postal\": \"TG\",\n        \"formal_en\": \"Togolese Republic\",\n        \"formal_fr\": \"République Togolaise\",\n        \"name_ciawf\": \"Togo\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Togo\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 5,\n        \"pop_est\": 8082366,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 5490,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"TO\",\n        \"iso_a2\": \"TG\",\n        \"iso_a2_eh\": \"TG\",\n        \"iso_a3\": \"TGO\",\n        \"iso_a3_eh\": \"TGO\",\n        \"iso_n3\": \"768\",\n        \"iso_n3_eh\": \"768\",\n        \"un_a3\": \"768\",\n        \"wb_a2\": \"TG\",\n        \"wb_a3\": \"TGO\",\n        \"woe_id\": 23424965,\n        \"woe_id_eh\": 23424965,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"TGO\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"TGO\",\n        \"adm0_a3_us\": \"TGO\",\n        \"adm0_a3_fr\": \"TGO\",\n        \"adm0_a3_ru\": \"TGO\",\n        \"adm0_a3_es\": \"TGO\",\n        \"adm0_a3_cn\": \"TGO\",\n        \"adm0_a3_tw\": \"TGO\",\n        \"adm0_a3_in\": \"TGO\",\n        \"adm0_a3_np\": \"TGO\",\n        \"adm0_a3_pk\": \"TGO\",\n        \"adm0_a3_de\": \"TGO\",\n        \"adm0_a3_gb\": \"TGO\",\n        \"adm0_a3_br\": \"TGO\",\n        \"adm0_a3_il\": \"TGO\",\n        \"adm0_a3_ps\": \"TGO\",\n        \"adm0_a3_sa\": \"TGO\",\n        \"adm0_a3_eg\": \"TGO\",\n        \"adm0_a3_ma\": \"TGO\",\n        \"adm0_a3_pt\": \"TGO\",\n        \"adm0_a3_ar\": \"TGO\",\n        \"adm0_a3_jp\": \"TGO\",\n        \"adm0_a3_ko\": \"TGO\",\n        \"adm0_a3_vn\": \"TGO\",\n        \"adm0_a3_tr\": \"TGO\",\n        \"adm0_a3_id\": \"TGO\",\n        \"adm0_a3_pl\": \"TGO\",\n        \"adm0_a3_gr\": \"TGO\",\n        \"adm0_a3_it\": \"TGO\",\n        \"adm0_a3_nl\": \"TGO\",\n        \"adm0_a3_se\": \"TGO\",\n        \"adm0_a3_bd\": \"TGO\",\n        \"adm0_a3_ua\": \"TGO\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Western Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 4,\n        \"long_len\": 4,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 5,\n        \"max_label\": 10,\n        \"label_x\": 1.058113,\n        \"label_y\": 8.80722,\n        \"ne_id\": 1159321303,\n        \"wikidataid\": \"Q945\",\n        \"name_ar\": \"توغو\",\n        \"name_bn\": \"টোগো\",\n        \"name_de\": \"Togo\",\n        \"name_en\": \"Togo\",\n        \"name_es\": \"Togo\",\n        \"name_fa\": \"توگو\",\n        \"name_fr\": \"Togo\",\n        \"name_el\": \"Τόγκο\",\n        \"name_he\": \"טוגו\",\n        \"name_hi\": \"टोगो\",\n        \"name_hu\": \"Togo\",\n        \"name_id\": \"Togo\",\n        \"name_it\": \"Togo\",\n        \"name_ja\": \"トーゴ\",\n        \"name_ko\": \"토고\",\n        \"name_nl\": \"Togo\",\n        \"name_pl\": \"Togo\",\n        \"name_pt\": \"Togo\",\n        \"name_ru\": \"Того\",\n        \"name_sv\": \"Togo\",\n        \"name_tr\": \"Togo\",\n        \"name_uk\": \"Того\",\n        \"name_ur\": \"ٹوگو\",\n        \"name_vi\": \"Togo\",\n        \"name_zh\": \"多哥\",\n        \"name_zht\": \"多哥\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"TGO.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.899563022474069, 10.99733938236426],\n            [0.772335646171484, 10.470808213742359],\n            [1.077795037448738, 10.175606594275024],\n            [1.425060662450136, 9.825395412633],\n            [1.46304284018467, 9.334624335157088],\n            [1.664477573258381, 9.12859039960938],\n            [1.618950636409238, 6.832038072126238],\n            [1.865240512712319, 6.142157701029731],\n            [1.060121697604927, 5.928837388528876],\n            [0.836931186536333, 6.279978745952149],\n            [0.570384148774849, 6.914358628767189],\n            [0.490957472342245, 7.411744289576475],\n            [0.712029249686879, 8.31246450442383],\n            [0.461191847342121, 8.677222601756014],\n            [0.365900506195885, 9.465003973829482],\n            [0.367579990245389, 10.19121287682718],\n            [-0.049784715159944, 10.706917832883931],\n            [0.023802524423701, 11.018681748900804],\n            [0.899563022474069, 10.99733938236426]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Ghana\",\n        \"sov_a3\": \"GHA\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Ghana\",\n        \"adm0_a3\": \"GHA\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Ghana\",\n        \"gu_a3\": \"GHA\",\n        \"su_dif\": 0,\n        \"subunit\": \"Ghana\",\n        \"su_a3\": \"GHA\",\n        \"brk_diff\": 0,\n        \"name\": \"Ghana\",\n        \"name_long\": \"Ghana\",\n        \"brk_a3\": \"GHA\",\n        \"brk_name\": \"Ghana\",\n        \"brk_group\": null,\n        \"abbrev\": \"Ghana\",\n        \"postal\": \"GH\",\n        \"formal_en\": \"Republic of Ghana\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Ghana\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Ghana\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 4,\n        \"pop_est\": 30417856,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 66983,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"GH\",\n        \"iso_a2\": \"GH\",\n        \"iso_a2_eh\": \"GH\",\n        \"iso_a3\": \"GHA\",\n        \"iso_a3_eh\": \"GHA\",\n        \"iso_n3\": \"288\",\n        \"iso_n3_eh\": \"288\",\n        \"un_a3\": \"288\",\n        \"wb_a2\": \"GH\",\n        \"wb_a3\": \"GHA\",\n        \"woe_id\": 23424824,\n        \"woe_id_eh\": 23424824,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"GHA\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"GHA\",\n        \"adm0_a3_us\": \"GHA\",\n        \"adm0_a3_fr\": \"GHA\",\n        \"adm0_a3_ru\": \"GHA\",\n        \"adm0_a3_es\": \"GHA\",\n        \"adm0_a3_cn\": \"GHA\",\n        \"adm0_a3_tw\": \"GHA\",\n        \"adm0_a3_in\": \"GHA\",\n        \"adm0_a3_np\": \"GHA\",\n        \"adm0_a3_pk\": \"GHA\",\n        \"adm0_a3_de\": \"GHA\",\n        \"adm0_a3_gb\": \"GHA\",\n        \"adm0_a3_br\": \"GHA\",\n        \"adm0_a3_il\": \"GHA\",\n        \"adm0_a3_ps\": \"GHA\",\n        \"adm0_a3_sa\": \"GHA\",\n        \"adm0_a3_eg\": \"GHA\",\n        \"adm0_a3_ma\": \"GHA\",\n        \"adm0_a3_pt\": \"GHA\",\n        \"adm0_a3_ar\": \"GHA\",\n        \"adm0_a3_jp\": \"GHA\",\n        \"adm0_a3_ko\": \"GHA\",\n        \"adm0_a3_vn\": \"GHA\",\n        \"adm0_a3_tr\": \"GHA\",\n        \"adm0_a3_id\": \"GHA\",\n        \"adm0_a3_pl\": \"GHA\",\n        \"adm0_a3_gr\": \"GHA\",\n        \"adm0_a3_it\": \"GHA\",\n        \"adm0_a3_nl\": \"GHA\",\n        \"adm0_a3_se\": \"GHA\",\n        \"adm0_a3_bd\": \"GHA\",\n        \"adm0_a3_ua\": \"GHA\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Western Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.7,\n        \"max_label\": 8,\n        \"label_x\": -1.036941,\n        \"label_y\": 7.717639,\n        \"ne_id\": 1159320793,\n        \"wikidataid\": \"Q117\",\n        \"name_ar\": \"غانا\",\n        \"name_bn\": \"ঘানা\",\n        \"name_de\": \"Ghana\",\n        \"name_en\": \"Ghana\",\n        \"name_es\": \"Ghana\",\n        \"name_fa\": \"غنا\",\n        \"name_fr\": \"Ghana\",\n        \"name_el\": \"Γκάνα\",\n        \"name_he\": \"גאנה\",\n        \"name_hi\": \"घाना\",\n        \"name_hu\": \"Ghána\",\n        \"name_id\": \"Ghana\",\n        \"name_it\": \"Ghana\",\n        \"name_ja\": \"ガーナ\",\n        \"name_ko\": \"가나\",\n        \"name_nl\": \"Ghana\",\n        \"name_pl\": \"Ghana\",\n        \"name_pt\": \"Gana\",\n        \"name_ru\": \"Гана\",\n        \"name_sv\": \"Ghana\",\n        \"name_tr\": \"Gana\",\n        \"name_uk\": \"Гана\",\n        \"name_ur\": \"گھانا\",\n        \"name_vi\": \"Ghana\",\n        \"name_zh\": \"加纳\",\n        \"name_zht\": \"迦納\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"GHA.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [0.023802524423701, 11.018681748900804],\n            [-0.049784715159944, 10.706917832883931],\n            [0.367579990245389, 10.19121287682718],\n            [0.365900506195885, 9.465003973829482],\n            [0.461191847342121, 8.677222601756014],\n            [0.712029249686879, 8.31246450442383],\n            [0.490957472342245, 7.411744289576475],\n            [0.570384148774849, 6.914358628767189],\n            [0.836931186536333, 6.279978745952149],\n            [1.060121697604927, 5.928837388528876],\n            [-0.507637905265938, 5.343472601742675],\n            [-1.063624640294194, 5.000547797053812],\n            [-1.964706590167594, 4.710462144383371],\n            [-2.856125047202397, 4.994475816259509],\n            [-2.81070146321784, 5.38905121502411],\n            [-3.244370083011262, 6.250471503113502],\n            [-2.983584967450327, 7.379704901555513],\n            [-2.562189500326241, 8.219627793811483],\n            [-2.827496303712707, 9.642460842319778],\n            [-2.963896246747112, 10.395334784380083],\n            [-2.940409308270461, 10.962690334512558],\n            [-1.203357713211432, 11.009819240762738],\n            [-0.761575893548183, 10.936929633015055],\n            [-0.438701544588582, 11.098340969278722],\n            [0.023802524423701, 11.018681748900804]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Guinea-Bissau\",\n        \"sov_a3\": \"GNB\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Guinea-Bissau\",\n        \"adm0_a3\": \"GNB\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Guinea-Bissau\",\n        \"gu_a3\": \"GNB\",\n        \"su_dif\": 0,\n        \"subunit\": \"Guinea-Bissau\",\n        \"su_a3\": \"GNB\",\n        \"brk_diff\": 0,\n        \"name\": \"Guinea-Bissau\",\n        \"name_long\": \"Guinea-Bissau\",\n        \"brk_a3\": \"GNB\",\n        \"brk_name\": \"Guinea-Bissau\",\n        \"brk_group\": null,\n        \"abbrev\": \"GnB.\",\n        \"postal\": \"GW\",\n        \"formal_en\": \"Republic of Guinea-Bissau\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Guinea-Bissau\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Guinea-Bissau\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 4,\n        \"pop_est\": 1920922,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 1339,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"PU\",\n        \"iso_a2\": \"GW\",\n        \"iso_a2_eh\": \"GW\",\n        \"iso_a3\": \"GNB\",\n        \"iso_a3_eh\": \"GNB\",\n        \"iso_n3\": \"624\",\n        \"iso_n3_eh\": \"624\",\n        \"un_a3\": \"624\",\n        \"wb_a2\": \"GW\",\n        \"wb_a3\": \"GNB\",\n        \"woe_id\": 23424929,\n        \"woe_id_eh\": 23424929,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"GNB\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"GNB\",\n        \"adm0_a3_us\": \"GNB\",\n        \"adm0_a3_fr\": \"GNB\",\n        \"adm0_a3_ru\": \"GNB\",\n        \"adm0_a3_es\": \"GNB\",\n        \"adm0_a3_cn\": \"GNB\",\n        \"adm0_a3_tw\": \"GNB\",\n        \"adm0_a3_in\": \"GNB\",\n        \"adm0_a3_np\": \"GNB\",\n        \"adm0_a3_pk\": \"GNB\",\n        \"adm0_a3_de\": \"GNB\",\n        \"adm0_a3_gb\": \"GNB\",\n        \"adm0_a3_br\": \"GNB\",\n        \"adm0_a3_il\": \"GNB\",\n        \"adm0_a3_ps\": \"GNB\",\n        \"adm0_a3_sa\": \"GNB\",\n        \"adm0_a3_eg\": \"GNB\",\n        \"adm0_a3_ma\": \"GNB\",\n        \"adm0_a3_pt\": \"GNB\",\n        \"adm0_a3_ar\": \"GNB\",\n        \"adm0_a3_jp\": \"GNB\",\n        \"adm0_a3_ko\": \"GNB\",\n        \"adm0_a3_vn\": \"GNB\",\n        \"adm0_a3_tr\": \"GNB\",\n        \"adm0_a3_id\": \"GNB\",\n        \"adm0_a3_pl\": \"GNB\",\n        \"adm0_a3_gr\": \"GNB\",\n        \"adm0_a3_it\": \"GNB\",\n        \"adm0_a3_nl\": \"GNB\",\n        \"adm0_a3_se\": \"GNB\",\n        \"adm0_a3_bd\": \"GNB\",\n        \"adm0_a3_ua\": \"GNB\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Western Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 13,\n        \"long_len\": 13,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 5,\n        \"max_label\": 10,\n        \"label_x\": -14.52413,\n        \"label_y\": 12.163712,\n        \"ne_id\": 1159320799,\n        \"wikidataid\": \"Q1007\",\n        \"name_ar\": \"غينيا بيساو\",\n        \"name_bn\": \"গিনি-বিসাউ\",\n        \"name_de\": \"Guinea-Bissau\",\n        \"name_en\": \"Guinea-Bissau\",\n        \"name_es\": \"Guinea-Bisáu\",\n        \"name_fa\": \"گینه بیسائو\",\n        \"name_fr\": \"Guinée-Bissau\",\n        \"name_el\": \"Γουινέα-Μπισσάου\",\n        \"name_he\": \"גינאה ביסאו\",\n        \"name_hi\": \"गिनी-बिसाऊ\",\n        \"name_hu\": \"Bissau-Guinea\",\n        \"name_id\": \"Guinea-Bissau\",\n        \"name_it\": \"Guinea-Bissau\",\n        \"name_ja\": \"ギニアビサウ\",\n        \"name_ko\": \"기니비사우\",\n        \"name_nl\": \"Guinee-Bissau\",\n        \"name_pl\": \"Gwinea Bissau\",\n        \"name_pt\": \"Guiné-Bissau\",\n        \"name_ru\": \"Гвинея-Бисау\",\n        \"name_sv\": \"Guinea-Bissau\",\n        \"name_tr\": \"Gine-Bissau\",\n        \"name_uk\": \"Гвінея-Бісау\",\n        \"name_ur\": \"گنی بساؤ\",\n        \"name_vi\": \"Guiné-Bissau\",\n        \"name_zh\": \"几内亚比绍\",\n        \"name_zht\": \"幾內亞比索\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"GNB.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-16.677451951554573, 12.384851589401052],\n            [-16.147716844130585, 12.547761542201187],\n            [-15.816574266004254, 12.515567124883347],\n            [-15.54847693527401, 12.628170070847347],\n            [-13.700476040084325, 12.586182969610194],\n            [-13.718743658899513, 12.24718557377551],\n            [-13.828271857142125, 12.142644151249044],\n            [-13.743160773157413, 11.811269029177412],\n            [-13.900799729863776, 11.678718980348748],\n            [-14.121406419317779, 11.677117010947697],\n            [-14.382191534878729, 11.509271958863692],\n            [-14.685687221728898, 11.527823798056488],\n            [-15.130311245168173, 11.040411688679526],\n            [-15.664180467175527, 11.458474025920795],\n            [-16.085214199273565, 11.52459402103824],\n            [-16.314786749730203, 11.80651479740655],\n            [-16.30894731288123, 11.95870189050612],\n            [-16.61383826340328, 12.170911159712702],\n            [-16.677451951554573, 12.384851589401052]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Egypt\",\n        \"sov_a3\": \"EGY\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Egypt\",\n        \"adm0_a3\": \"EGY\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Egypt\",\n        \"gu_a3\": \"EGY\",\n        \"su_dif\": 0,\n        \"subunit\": \"Egypt\",\n        \"su_a3\": \"EGY\",\n        \"brk_diff\": 0,\n        \"name\": \"Egypt\",\n        \"name_long\": \"Egypt\",\n        \"brk_a3\": \"EGY\",\n        \"brk_name\": \"Egypt\",\n        \"brk_group\": null,\n        \"abbrev\": \"Egypt\",\n        \"postal\": \"EG\",\n        \"formal_en\": \"Arab Republic of Egypt\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Egypt\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Egypt, Arab Rep.\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 7,\n        \"mapcolor13\": 2,\n        \"pop_est\": 100388073,\n        \"pop_rank\": 17,\n        \"pop_year\": 2019,\n        \"gdp_md\": 303092,\n        \"gdp_year\": 2019,\n        \"economy\": \"5. Emerging region: G20\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"EG\",\n        \"iso_a2\": \"EG\",\n        \"iso_a2_eh\": \"EG\",\n        \"iso_a3\": \"EGY\",\n        \"iso_a3_eh\": \"EGY\",\n        \"iso_n3\": \"818\",\n        \"iso_n3_eh\": \"818\",\n        \"un_a3\": \"818\",\n        \"wb_a2\": \"EG\",\n        \"wb_a3\": \"EGY\",\n        \"woe_id\": 23424802,\n        \"woe_id_eh\": 23424802,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"EGY\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"EGY\",\n        \"adm0_a3_us\": \"EGY\",\n        \"adm0_a3_fr\": \"EGY\",\n        \"adm0_a3_ru\": \"EGY\",\n        \"adm0_a3_es\": \"EGY\",\n        \"adm0_a3_cn\": \"EGY\",\n        \"adm0_a3_tw\": \"EGY\",\n        \"adm0_a3_in\": \"EGY\",\n        \"adm0_a3_np\": \"EGY\",\n        \"adm0_a3_pk\": \"EGY\",\n        \"adm0_a3_de\": \"EGY\",\n        \"adm0_a3_gb\": \"EGY\",\n        \"adm0_a3_br\": \"EGY\",\n        \"adm0_a3_il\": \"EGY\",\n        \"adm0_a3_ps\": \"EGY\",\n        \"adm0_a3_sa\": \"EGY\",\n        \"adm0_a3_eg\": \"EGY\",\n        \"adm0_a3_ma\": \"EGY\",\n        \"adm0_a3_pt\": \"EGY\",\n        \"adm0_a3_ar\": \"EGY\",\n        \"adm0_a3_jp\": \"EGY\",\n        \"adm0_a3_ko\": \"EGY\",\n        \"adm0_a3_vn\": \"EGY\",\n        \"adm0_a3_tr\": \"EGY\",\n        \"adm0_a3_id\": \"EGY\",\n        \"adm0_a3_pl\": \"EGY\",\n        \"adm0_a3_gr\": \"EGY\",\n        \"adm0_a3_it\": \"EGY\",\n        \"adm0_a3_nl\": \"EGY\",\n        \"adm0_a3_se\": \"EGY\",\n        \"adm0_a3_bd\": \"EGY\",\n        \"adm0_a3_ua\": \"EGY\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Northern Africa\",\n        \"region_wb\": \"Middle East & North Africa\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 6.7,\n        \"label_x\": 29.445837,\n        \"label_y\": 26.186173,\n        \"ne_id\": 1159320575,\n        \"wikidataid\": \"Q79\",\n        \"name_ar\": \"مصر\",\n        \"name_bn\": \"মিশর\",\n        \"name_de\": \"Ägypten\",\n        \"name_en\": \"Egypt\",\n        \"name_es\": \"Egipto\",\n        \"name_fa\": \"مصر\",\n        \"name_fr\": \"Égypte\",\n        \"name_el\": \"Αίγυπτος\",\n        \"name_he\": \"מצרים\",\n        \"name_hi\": \"मिस्र\",\n        \"name_hu\": \"Egyiptom\",\n        \"name_id\": \"Mesir\",\n        \"name_it\": \"Egitto\",\n        \"name_ja\": \"エジプト\",\n        \"name_ko\": \"이집트\",\n        \"name_nl\": \"Egypte\",\n        \"name_pl\": \"Egipt\",\n        \"name_pt\": \"Egito\",\n        \"name_ru\": \"Египет\",\n        \"name_sv\": \"Egypten\",\n        \"name_tr\": \"Mısır\",\n        \"name_uk\": \"Єгипет\",\n        \"name_ur\": \"مصر\",\n        \"name_vi\": \"Ai Cập\",\n        \"name_zh\": \"埃及\",\n        \"name_zht\": \"埃及\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"EGY.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [36.86623, 22],\n            [32.9, 22],\n            [29.02, 22],\n            [25, 22],\n            [25, 25.682499996361],\n            [25, 29.23865452953346],\n            [24.70007, 30.04419],\n            [24.95762, 30.6616],\n            [24.80287, 31.08929],\n            [25.16482, 31.56915],\n            [26.49533, 31.58568],\n            [27.45762, 31.32126],\n            [28.45048, 31.02577],\n            [28.91353, 30.87005],\n            [29.68342, 31.18686],\n            [30.09503, 31.4734],\n            [30.97693, 31.55586],\n            [31.68796, 31.4296],\n            [31.96041, 30.9336],\n            [32.19247, 31.26034],\n            [32.99392, 31.02407],\n            [33.7734, 30.96746],\n            [34.26543474464621, 31.21935730952032],\n            [34.26544, 31.21936],\n            [34.823243288783814, 29.76108076171822],\n            [34.9226, 29.50133],\n            [34.64174, 29.09942],\n            [34.42655, 28.34399],\n            [34.15451, 27.8233],\n            [33.92136, 27.6487],\n            [33.58811, 27.97136],\n            [33.13676, 28.41765],\n            [32.42323, 29.85108],\n            [32.32046, 29.76043],\n            [32.73482, 28.70523],\n            [33.34876, 27.69989],\n            [34.10455, 26.14227],\n            [34.47387, 25.59856],\n            [34.79507, 25.03375],\n            [35.69241, 23.92671],\n            [35.49372, 23.75237],\n            [35.52598, 23.10244],\n            [36.69069, 22.20485],\n            [36.86623, 22]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Mauritania\",\n        \"sov_a3\": \"MRT\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Mauritania\",\n        \"adm0_a3\": \"MRT\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Mauritania\",\n        \"gu_a3\": \"MRT\",\n        \"su_dif\": 0,\n        \"subunit\": \"Mauritania\",\n        \"su_a3\": \"MRT\",\n        \"brk_diff\": 0,\n        \"name\": \"Mauritania\",\n        \"name_long\": \"Mauritania\",\n        \"brk_a3\": \"MRT\",\n        \"brk_name\": \"Mauritania\",\n        \"brk_group\": null,\n        \"abbrev\": \"Mrt.\",\n        \"postal\": \"MR\",\n        \"formal_en\": \"Islamic Republic of Mauritania\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Mauritania\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Mauritania\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 1,\n        \"pop_est\": 4525696,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 7600,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"MR\",\n        \"iso_a2\": \"MR\",\n        \"iso_a2_eh\": \"MR\",\n        \"iso_a3\": \"MRT\",\n        \"iso_a3_eh\": \"MRT\",\n        \"iso_n3\": \"478\",\n        \"iso_n3_eh\": \"478\",\n        \"un_a3\": \"478\",\n        \"wb_a2\": \"MR\",\n        \"wb_a3\": \"MRT\",\n        \"woe_id\": 23424896,\n        \"woe_id_eh\": 23424896,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"MRT\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"MRT\",\n        \"adm0_a3_us\": \"MRT\",\n        \"adm0_a3_fr\": \"MRT\",\n        \"adm0_a3_ru\": \"MRT\",\n        \"adm0_a3_es\": \"MRT\",\n        \"adm0_a3_cn\": \"MRT\",\n        \"adm0_a3_tw\": \"MRT\",\n        \"adm0_a3_in\": \"MRT\",\n        \"adm0_a3_np\": \"MRT\",\n        \"adm0_a3_pk\": \"MRT\",\n        \"adm0_a3_de\": \"MRT\",\n        \"adm0_a3_gb\": \"MRT\",\n        \"adm0_a3_br\": \"MRT\",\n        \"adm0_a3_il\": \"MRT\",\n        \"adm0_a3_ps\": \"MRT\",\n        \"adm0_a3_sa\": \"MRT\",\n        \"adm0_a3_eg\": \"MRT\",\n        \"adm0_a3_ma\": \"MRT\",\n        \"adm0_a3_pt\": \"MRT\",\n        \"adm0_a3_ar\": \"MRT\",\n        \"adm0_a3_jp\": \"MRT\",\n        \"adm0_a3_ko\": \"MRT\",\n        \"adm0_a3_vn\": \"MRT\",\n        \"adm0_a3_tr\": \"MRT\",\n        \"adm0_a3_id\": \"MRT\",\n        \"adm0_a3_pl\": \"MRT\",\n        \"adm0_a3_gr\": \"MRT\",\n        \"adm0_a3_it\": \"MRT\",\n        \"adm0_a3_nl\": \"MRT\",\n        \"adm0_a3_se\": \"MRT\",\n        \"adm0_a3_bd\": \"MRT\",\n        \"adm0_a3_ua\": \"MRT\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Western Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 10,\n        \"long_len\": 10,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": -9.740299,\n        \"label_y\": 19.587062,\n        \"ne_id\": 1159321075,\n        \"wikidataid\": \"Q1025\",\n        \"name_ar\": \"موريتانيا\",\n        \"name_bn\": \"মৌরিতানিয়া\",\n        \"name_de\": \"Mauretanien\",\n        \"name_en\": \"Mauritania\",\n        \"name_es\": \"Mauritania\",\n        \"name_fa\": \"موریتانی\",\n        \"name_fr\": \"Mauritanie\",\n        \"name_el\": \"Μαυριτανία\",\n        \"name_he\": \"מאוריטניה\",\n        \"name_hi\": \"मॉरीतानिया\",\n        \"name_hu\": \"Mauritánia\",\n        \"name_id\": \"Mauritania\",\n        \"name_it\": \"Mauritania\",\n        \"name_ja\": \"モーリタニア\",\n        \"name_ko\": \"모리타니\",\n        \"name_nl\": \"Mauritanië\",\n        \"name_pl\": \"Mauretania\",\n        \"name_pt\": \"Mauritânia\",\n        \"name_ru\": \"Мавритания\",\n        \"name_sv\": \"Mauretanien\",\n        \"name_tr\": \"Moritanya\",\n        \"name_uk\": \"Мавританія\",\n        \"name_ur\": \"موریتانیہ\",\n        \"name_vi\": \"Mauritanie\",\n        \"name_zh\": \"毛里塔尼亚\",\n        \"name_zht\": \"茅利塔尼亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"MRT.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-17.06342322434257, 20.999752102130827],\n            [-16.845193650773993, 21.33332347257488],\n            [-12.929101935263532, 21.327070624267563],\n            [-13.118754441774712, 22.771220201096256],\n            [-12.874221564169575, 23.284832261645178],\n            [-11.937224493853321, 23.374594224536168],\n            [-11.96941891117116, 25.933352769468268],\n            [-8.6872936670174, 25.881056219988906],\n            [-8.684399786809053, 27.395744126896005],\n            [-4.923337368174231, 24.974574082941],\n            [-6.453786586930335, 24.956590684503425],\n            [-5.971128709324248, 20.64083344164763],\n            [-5.488522508150439, 16.325102037007966],\n            [-5.315277268891933, 16.20185374599184],\n            [-5.537744309908447, 15.501689764869257],\n            [-9.55023840985939, 15.486496893775438],\n            [-9.700255092802706, 15.264107367407362],\n            [-10.086846482778213, 15.330485744686271],\n            [-10.650791388379417, 15.132745876521426],\n            [-11.349095017939504, 15.411256008358478],\n            [-11.666078253617854, 15.388208319556298],\n            [-11.834207526079467, 14.79909699142894],\n            [-12.170750291380301, 14.616834214735505],\n            [-12.830658331747516, 15.303691514542948],\n            [-13.435737677453062, 16.03938304286619],\n            [-14.099521450242179, 16.304302273010492],\n            [-14.577347581428981, 16.59826365810281],\n            [-15.135737270558819, 16.587282416240782],\n            [-15.623666144258692, 16.369337063049812],\n            [-16.12069007004193, 16.455662543193384],\n            [-16.463098110407884, 16.13503611903846],\n            [-16.549707810929064, 16.673892116761962],\n            [-16.270551723688357, 17.166962795474873],\n            [-16.14634741867485, 18.108481553616656],\n            [-16.256883307347167, 19.096715806550307],\n            [-16.37765112961327, 19.593817246981985],\n            [-16.277838100641517, 20.0925206568147],\n            [-16.536323614965468, 20.567866319251493],\n            [-17.06342322434257, 20.999752102130827]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Equatorial Guinea\",\n        \"sov_a3\": \"GNQ\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Equatorial Guinea\",\n        \"adm0_a3\": \"GNQ\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Equatorial Guinea\",\n        \"gu_a3\": \"GNQ\",\n        \"su_dif\": 0,\n        \"subunit\": \"Equatorial Guinea\",\n        \"su_a3\": \"GNQ\",\n        \"brk_diff\": 0,\n        \"name\": \"Eq. Guinea\",\n        \"name_long\": \"Equatorial Guinea\",\n        \"brk_a3\": \"GNQ\",\n        \"brk_name\": \"Eq. Guinea\",\n        \"brk_group\": null,\n        \"abbrev\": \"Eq. G.\",\n        \"postal\": \"GQ\",\n        \"formal_en\": \"Republic of Equatorial Guinea\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Equatorial Guinea\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Equatorial Guinea\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 8,\n        \"pop_est\": 1355986,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 11026,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"2. High income: nonOECD\",\n        \"fips_10\": \"EK\",\n        \"iso_a2\": \"GQ\",\n        \"iso_a2_eh\": \"GQ\",\n        \"iso_a3\": \"GNQ\",\n        \"iso_a3_eh\": \"GNQ\",\n        \"iso_n3\": \"226\",\n        \"iso_n3_eh\": \"226\",\n        \"un_a3\": \"226\",\n        \"wb_a2\": \"GQ\",\n        \"wb_a3\": \"GNQ\",\n        \"woe_id\": 23424804,\n        \"woe_id_eh\": 23424804,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"GNQ\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"GNQ\",\n        \"adm0_a3_us\": \"GNQ\",\n        \"adm0_a3_fr\": \"GNQ\",\n        \"adm0_a3_ru\": \"GNQ\",\n        \"adm0_a3_es\": \"GNQ\",\n        \"adm0_a3_cn\": \"GNQ\",\n        \"adm0_a3_tw\": \"GNQ\",\n        \"adm0_a3_in\": \"GNQ\",\n        \"adm0_a3_np\": \"GNQ\",\n        \"adm0_a3_pk\": \"GNQ\",\n        \"adm0_a3_de\": \"GNQ\",\n        \"adm0_a3_gb\": \"GNQ\",\n        \"adm0_a3_br\": \"GNQ\",\n        \"adm0_a3_il\": \"GNQ\",\n        \"adm0_a3_ps\": \"GNQ\",\n        \"adm0_a3_sa\": \"GNQ\",\n        \"adm0_a3_eg\": \"GNQ\",\n        \"adm0_a3_ma\": \"GNQ\",\n        \"adm0_a3_pt\": \"GNQ\",\n        \"adm0_a3_ar\": \"GNQ\",\n        \"adm0_a3_jp\": \"GNQ\",\n        \"adm0_a3_ko\": \"GNQ\",\n        \"adm0_a3_vn\": \"GNQ\",\n        \"adm0_a3_tr\": \"GNQ\",\n        \"adm0_a3_id\": \"GNQ\",\n        \"adm0_a3_pl\": \"GNQ\",\n        \"adm0_a3_gr\": \"GNQ\",\n        \"adm0_a3_it\": \"GNQ\",\n        \"adm0_a3_nl\": \"GNQ\",\n        \"adm0_a3_se\": \"GNQ\",\n        \"adm0_a3_bd\": \"GNQ\",\n        \"adm0_a3_ua\": \"GNQ\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Middle Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 10,\n        \"long_len\": 17,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 8.9902,\n        \"label_y\": 2.333,\n        \"ne_id\": 1159320801,\n        \"wikidataid\": \"Q983\",\n        \"name_ar\": \"غينيا الاستوائية\",\n        \"name_bn\": \"বিষুবীয় গিনি\",\n        \"name_de\": \"Äquatorialguinea\",\n        \"name_en\": \"Equatorial Guinea\",\n        \"name_es\": \"Guinea Ecuatorial\",\n        \"name_fa\": \"گینه استوایی\",\n        \"name_fr\": \"Guinée équatoriale\",\n        \"name_el\": \"Ισημερινή Γουινέα\",\n        \"name_he\": \"גינאה המשוונית\",\n        \"name_hi\": \"भूमध्यरेखीय गिनी\",\n        \"name_hu\": \"Egyenlítői-Guinea\",\n        \"name_id\": \"Guinea Khatulistiwa\",\n        \"name_it\": \"Guinea Equatoriale\",\n        \"name_ja\": \"赤道ギニア\",\n        \"name_ko\": \"적도 기니\",\n        \"name_nl\": \"Equatoriaal-Guinea\",\n        \"name_pl\": \"Gwinea Równikowa\",\n        \"name_pt\": \"Guiné Equatorial\",\n        \"name_ru\": \"Экваториальная Гвинея\",\n        \"name_sv\": \"Ekvatorialguinea\",\n        \"name_tr\": \"Ekvator Ginesi\",\n        \"name_uk\": \"Екваторіальна Гвінея\",\n        \"name_ur\": \"استوائی گنی\",\n        \"name_vi\": \"Guinea Xích Đạo\",\n        \"name_zh\": \"赤道几内亚\",\n        \"name_zht\": \"赤道幾內亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"GNQ.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.649158155972628, 2.283866075037736],\n            [11.276449008843713, 2.261050930180872],\n            [11.285078973036462, 1.057661851400013],\n            [9.830284051155644, 1.067893784993799],\n            [9.492888624721985, 1.010119533691494],\n            [9.305613234096256, 1.160911363119183],\n            [9.649158155972628, 2.283866075037736]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Gambia\",\n        \"sov_a3\": \"GMB\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Gambia\",\n        \"adm0_a3\": \"GMB\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Gambia\",\n        \"gu_a3\": \"GMB\",\n        \"su_dif\": 0,\n        \"subunit\": \"Gambia\",\n        \"su_a3\": \"GMB\",\n        \"brk_diff\": 0,\n        \"name\": \"Gambia\",\n        \"name_long\": \"The Gambia\",\n        \"brk_a3\": \"GMB\",\n        \"brk_name\": \"Gambia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Gambia\",\n        \"postal\": \"GM\",\n        \"formal_en\": \"Republic of the Gambia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Gambia, The\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Gambia, The\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 8,\n        \"pop_est\": 2347706,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 1826,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"GA\",\n        \"iso_a2\": \"GM\",\n        \"iso_a2_eh\": \"GM\",\n        \"iso_a3\": \"GMB\",\n        \"iso_a3_eh\": \"GMB\",\n        \"iso_n3\": \"270\",\n        \"iso_n3_eh\": \"270\",\n        \"un_a3\": \"270\",\n        \"wb_a2\": \"GM\",\n        \"wb_a3\": \"GMB\",\n        \"woe_id\": 23424821,\n        \"woe_id_eh\": 23424821,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"GMB\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"GMB\",\n        \"adm0_a3_us\": \"GMB\",\n        \"adm0_a3_fr\": \"GMB\",\n        \"adm0_a3_ru\": \"GMB\",\n        \"adm0_a3_es\": \"GMB\",\n        \"adm0_a3_cn\": \"GMB\",\n        \"adm0_a3_tw\": \"GMB\",\n        \"adm0_a3_in\": \"GMB\",\n        \"adm0_a3_np\": \"GMB\",\n        \"adm0_a3_pk\": \"GMB\",\n        \"adm0_a3_de\": \"GMB\",\n        \"adm0_a3_gb\": \"GMB\",\n        \"adm0_a3_br\": \"GMB\",\n        \"adm0_a3_il\": \"GMB\",\n        \"adm0_a3_ps\": \"GMB\",\n        \"adm0_a3_sa\": \"GMB\",\n        \"adm0_a3_eg\": \"GMB\",\n        \"adm0_a3_ma\": \"GMB\",\n        \"adm0_a3_pt\": \"GMB\",\n        \"adm0_a3_ar\": \"GMB\",\n        \"adm0_a3_jp\": \"GMB\",\n        \"adm0_a3_ko\": \"GMB\",\n        \"adm0_a3_vn\": \"GMB\",\n        \"adm0_a3_tr\": \"GMB\",\n        \"adm0_a3_id\": \"GMB\",\n        \"adm0_a3_pl\": \"GMB\",\n        \"adm0_a3_gr\": \"GMB\",\n        \"adm0_a3_it\": \"GMB\",\n        \"adm0_a3_nl\": \"GMB\",\n        \"adm0_a3_se\": \"GMB\",\n        \"adm0_a3_bd\": \"GMB\",\n        \"adm0_a3_ua\": \"GMB\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Western Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 6,\n        \"long_len\": 10,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 5,\n        \"max_label\": 10,\n        \"label_x\": -14.998318,\n        \"label_y\": 13.641721,\n        \"ne_id\": 1159320797,\n        \"wikidataid\": \"Q1005\",\n        \"name_ar\": \"غامبيا\",\n        \"name_bn\": \"গাম্বিয়া\",\n        \"name_de\": \"Gambia\",\n        \"name_en\": \"The Gambia\",\n        \"name_es\": \"Gambia\",\n        \"name_fa\": \"گامبیا\",\n        \"name_fr\": \"Gambie\",\n        \"name_el\": \"Γκάμπια\",\n        \"name_he\": \"גמביה\",\n        \"name_hi\": \"गाम्बिया\",\n        \"name_hu\": \"Gambia\",\n        \"name_id\": \"Gambia\",\n        \"name_it\": \"Gambia\",\n        \"name_ja\": \"ガンビア\",\n        \"name_ko\": \"감비아\",\n        \"name_nl\": \"Gambia\",\n        \"name_pl\": \"Gambia\",\n        \"name_pt\": \"Gâmbia\",\n        \"name_ru\": \"Гамбия\",\n        \"name_sv\": \"Gambia\",\n        \"name_tr\": \"Gambiya\",\n        \"name_uk\": \"Гамбія\",\n        \"name_ur\": \"گیمبیا\",\n        \"name_vi\": \"Gambia\",\n        \"name_zh\": \"冈比亚\",\n        \"name_zht\": \"甘比亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"GMB.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-16.71372880702347, 13.594958604379855],\n            [-15.624596320039942, 13.62358734786956],\n            [-15.39877031092446, 13.86036876063092],\n            [-15.08173539881382, 13.876491807505985],\n            [-14.687030808968487, 13.630356960499784],\n            [-14.376713833055788, 13.625680243377374],\n            [-14.046992356817482, 13.79406789800045],\n            [-13.844963344772408, 13.505041612192002],\n            [-14.277701788784555, 13.280585028532244],\n            [-14.712197231494628, 13.298206691943777],\n            [-15.141163295949468, 13.509511623585238],\n            [-15.511812506562933, 13.278569647672867],\n            [-15.691000535534995, 13.270353094938457],\n            [-15.931295945692211, 13.130284125211332],\n            [-16.841524624081273, 13.15139394780256],\n            [-16.71372880702347, 13.594958604379855]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Madagascar\",\n        \"sov_a3\": \"MDG\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Madagascar\",\n        \"adm0_a3\": \"MDG\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Madagascar\",\n        \"gu_a3\": \"MDG\",\n        \"su_dif\": 0,\n        \"subunit\": \"Madagascar\",\n        \"su_a3\": \"MDG\",\n        \"brk_diff\": 0,\n        \"name\": \"Madagascar\",\n        \"name_long\": \"Madagascar\",\n        \"brk_a3\": \"MDG\",\n        \"brk_name\": \"Madagascar\",\n        \"brk_group\": null,\n        \"abbrev\": \"Mad.\",\n        \"postal\": \"MG\",\n        \"formal_en\": \"Republic of Madagascar\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Madagascar\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Madagascar\",\n        \"name_alt\": null,\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 3,\n        \"pop_est\": 26969307,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 14114,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"5. Low income\",\n        \"fips_10\": \"MA\",\n        \"iso_a2\": \"MG\",\n        \"iso_a2_eh\": \"MG\",\n        \"iso_a3\": \"MDG\",\n        \"iso_a3_eh\": \"MDG\",\n        \"iso_n3\": \"450\",\n        \"iso_n3_eh\": \"450\",\n        \"un_a3\": \"450\",\n        \"wb_a2\": \"MG\",\n        \"wb_a3\": \"MDG\",\n        \"woe_id\": 23424883,\n        \"woe_id_eh\": 23424883,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"MDG\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"MDG\",\n        \"adm0_a3_us\": \"MDG\",\n        \"adm0_a3_fr\": \"MDG\",\n        \"adm0_a3_ru\": \"MDG\",\n        \"adm0_a3_es\": \"MDG\",\n        \"adm0_a3_cn\": \"MDG\",\n        \"adm0_a3_tw\": \"MDG\",\n        \"adm0_a3_in\": \"MDG\",\n        \"adm0_a3_np\": \"MDG\",\n        \"adm0_a3_pk\": \"MDG\",\n        \"adm0_a3_de\": \"MDG\",\n        \"adm0_a3_gb\": \"MDG\",\n        \"adm0_a3_br\": \"MDG\",\n        \"adm0_a3_il\": \"MDG\",\n        \"adm0_a3_ps\": \"MDG\",\n        \"adm0_a3_sa\": \"MDG\",\n        \"adm0_a3_eg\": \"MDG\",\n        \"adm0_a3_ma\": \"MDG\",\n        \"adm0_a3_pt\": \"MDG\",\n        \"adm0_a3_ar\": \"MDG\",\n        \"adm0_a3_jp\": \"MDG\",\n        \"adm0_a3_ko\": \"MDG\",\n        \"adm0_a3_vn\": \"MDG\",\n        \"adm0_a3_tr\": \"MDG\",\n        \"adm0_a3_id\": \"MDG\",\n        \"adm0_a3_pl\": \"MDG\",\n        \"adm0_a3_gr\": \"MDG\",\n        \"adm0_a3_it\": \"MDG\",\n        \"adm0_a3_nl\": \"MDG\",\n        \"adm0_a3_se\": \"MDG\",\n        \"adm0_a3_bd\": \"MDG\",\n        \"adm0_a3_ua\": \"MDG\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Africa\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Eastern Africa\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 10,\n        \"long_len\": 10,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.7,\n        \"max_label\": 7,\n        \"label_x\": 46.704241,\n        \"label_y\": -18.628288,\n        \"ne_id\": 1159321051,\n        \"wikidataid\": \"Q1019\",\n        \"name_ar\": \"مدغشقر\",\n        \"name_bn\": \"মাদাগাস্কার\",\n        \"name_de\": \"Madagaskar\",\n        \"name_en\": \"Madagascar\",\n        \"name_es\": \"Madagascar\",\n        \"name_fa\": \"ماداگاسکار\",\n        \"name_fr\": \"Madagascar\",\n        \"name_el\": \"Μαδαγασκάρη\",\n        \"name_he\": \"מדגסקר\",\n        \"name_hi\": \"मेडागास्कर\",\n        \"name_hu\": \"Madagaszkár\",\n        \"name_id\": \"Madagaskar\",\n        \"name_it\": \"Madagascar\",\n        \"name_ja\": \"マダガスカル\",\n        \"name_ko\": \"마다가스카르\",\n        \"name_nl\": \"Madagaskar\",\n        \"name_pl\": \"Madagaskar\",\n        \"name_pt\": \"Madagáscar\",\n        \"name_ru\": \"Мадагаскар\",\n        \"name_sv\": \"Madagaskar\",\n        \"name_tr\": \"Madagaskar\",\n        \"name_uk\": \"Мадагаскар\",\n        \"name_ur\": \"مڈغاسکر\",\n        \"name_vi\": \"Madagascar\",\n        \"name_zh\": \"马达加斯加\",\n        \"name_zht\": \"馬達加斯加\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"MDG.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [49.54351891459575, -12.469832858940554],\n            [49.808980747279094, -12.895284925999555],\n            [50.056510857957164, -13.555761407121985],\n            [50.21743126811407, -14.758788750876796],\n            [50.47653689962553, -15.226512139550543],\n            [50.377111443895956, -15.706069431219127],\n            [50.20027469259318, -16.000263360256767],\n            [49.86060550313868, -15.414252618066918],\n            [49.67260664246086, -15.710203545802479],\n            [49.863344354050156, -16.451036879138776],\n            [49.77456424337271, -16.8750420060936],\n            [49.49861209493412, -17.106035658438273],\n            [49.435618523970305, -17.953064060134366],\n            [49.041792433473944, -19.118781019774445],\n            [48.54854088724801, -20.496888116134127],\n            [47.93074913919867, -22.391501153251085],\n            [47.54772342305131, -23.781958916928517],\n            [47.095761346226595, -24.941629733990453],\n            [46.282477654817086, -25.178462823184105],\n            [45.40950768411045, -25.60143442149309],\n            [44.833573846217554, -25.34610116953894],\n            [44.03972049334976, -24.988345228782308],\n            [43.76376834491117, -24.46067717864999],\n            [43.697777540874455, -23.574116306250602],\n            [43.345654331237625, -22.776903985283873],\n            [43.254187046081, -22.057413018484123],\n            [43.43329756040464, -21.33647511158019],\n            [43.893682895692926, -21.16330738697013],\n            [43.896370070172104, -20.830459486578174],\n            [44.37432539243966, -20.07236622485639],\n            [44.46439741392439, -19.435454196859048],\n            [44.23242190936617, -18.961994724200906],\n            [44.042976108584156, -18.33138722094317],\n            [43.96308434426091, -17.409944756746782],\n            [44.31246870298628, -16.850495700754955],\n            [44.4465173683514, -16.216219170804507],\n            [44.94493655780653, -16.1793738745804],\n            [45.50273196796499, -15.97437346767854],\n            [45.87299360533626, -15.793454278224687],\n            [46.31224327981721, -15.780018405828798],\n            [46.882182651564285, -15.210182386946315],\n            [47.70512983581236, -14.594302666891764],\n            [48.005214878131255, -14.091232598530375],\n            [47.869047479042166, -13.663868503476586],\n            [48.29382775248138, -13.784067884987486],\n            [48.84506025573879, -13.089174899958664],\n            [48.86350874206698, -12.48786793381042],\n            [49.194651320193316, -12.04055673589197],\n            [49.54351891459575, -12.469832858940554]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"France\",\n        \"sov_a3\": \"FR1\",\n        \"adm0_dif\": 1,\n        \"level\": 2,\n        \"type\": \"Country\",\n        \"tlc\": \"1\",\n        \"admin\": \"France\",\n        \"adm0_a3\": \"FRA\",\n        \"geou_dif\": 0,\n        \"geounit\": \"France\",\n        \"gu_a3\": \"FRA\",\n        \"su_dif\": 0,\n        \"subunit\": \"France\",\n        \"su_a3\": \"FRA\",\n        \"brk_diff\": 0,\n        \"name\": \"France\",\n        \"name_long\": \"France\",\n        \"brk_a3\": \"FRA\",\n        \"brk_name\": \"France\",\n        \"brk_group\": null,\n        \"abbrev\": \"Fr.\",\n        \"postal\": \"F\",\n        \"formal_en\": \"French Republic\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"France\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"France\",\n        \"name_alt\": null,\n        \"mapcolor7\": 7,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 9,\n        \"mapcolor13\": 11,\n        \"pop_est\": 67059887,\n        \"pop_rank\": 16,\n        \"pop_year\": 2019,\n        \"gdp_md\": 2715518,\n        \"gdp_year\": 2019,\n        \"economy\": \"1. Developed region: G7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"FR\",\n        \"iso_a2\": \"-99\",\n        \"iso_a2_eh\": \"FR\",\n        \"iso_a3\": \"-99\",\n        \"iso_a3_eh\": \"FRA\",\n        \"iso_n3\": \"-99\",\n        \"iso_n3_eh\": \"250\",\n        \"un_a3\": \"250\",\n        \"wb_a2\": \"FR\",\n        \"wb_a3\": \"FRA\",\n        \"woe_id\": -90,\n        \"woe_id_eh\": 23424819,\n        \"woe_note\": \"Includes only Metropolitan France (including Corsica)\",\n        \"adm0_iso\": \"FRA\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"FRA\",\n        \"adm0_a3_us\": \"FRA\",\n        \"adm0_a3_fr\": \"FRA\",\n        \"adm0_a3_ru\": \"FRA\",\n        \"adm0_a3_es\": \"FRA\",\n        \"adm0_a3_cn\": \"FRA\",\n        \"adm0_a3_tw\": \"FRA\",\n        \"adm0_a3_in\": \"FRA\",\n        \"adm0_a3_np\": \"FRA\",\n        \"adm0_a3_pk\": \"FRA\",\n        \"adm0_a3_de\": \"FRA\",\n        \"adm0_a3_gb\": \"FRA\",\n        \"adm0_a3_br\": \"FRA\",\n        \"adm0_a3_il\": \"FRA\",\n        \"adm0_a3_ps\": \"FRA\",\n        \"adm0_a3_sa\": \"FRA\",\n        \"adm0_a3_eg\": \"FRA\",\n        \"adm0_a3_ma\": \"FRA\",\n        \"adm0_a3_pt\": \"FRA\",\n        \"adm0_a3_ar\": \"FRA\",\n        \"adm0_a3_jp\": \"FRA\",\n        \"adm0_a3_ko\": \"FRA\",\n        \"adm0_a3_vn\": \"FRA\",\n        \"adm0_a3_tr\": \"FRA\",\n        \"adm0_a3_id\": \"FRA\",\n        \"adm0_a3_pl\": \"FRA\",\n        \"adm0_a3_gr\": \"FRA\",\n        \"adm0_a3_it\": \"FRA\",\n        \"adm0_a3_nl\": \"FRA\",\n        \"adm0_a3_se\": \"FRA\",\n        \"adm0_a3_bd\": \"FRA\",\n        \"adm0_a3_ua\": \"FRA\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Western Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 3,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 6.7,\n        \"label_x\": 2.552275,\n        \"label_y\": 46.696113,\n        \"ne_id\": 1159320637,\n        \"wikidataid\": \"Q142\",\n        \"name_ar\": \"فرنسا\",\n        \"name_bn\": \"ফ্রান্স\",\n        \"name_de\": \"Frankreich\",\n        \"name_en\": \"France\",\n        \"name_es\": \"Francia\",\n        \"name_fa\": \"فرانسه\",\n        \"name_fr\": \"France\",\n        \"name_el\": \"Γαλλία\",\n        \"name_he\": \"צרפת\",\n        \"name_hi\": \"फ़्रान्स\",\n        \"name_hu\": \"Franciaország\",\n        \"name_id\": \"Prancis\",\n        \"name_it\": \"Francia\",\n        \"name_ja\": \"フランス\",\n        \"name_ko\": \"프랑스\",\n        \"name_nl\": \"Frankrijk\",\n        \"name_pl\": \"Francja\",\n        \"name_pt\": \"França\",\n        \"name_ru\": \"Франция\",\n        \"name_sv\": \"Frankrike\",\n        \"name_tr\": \"Fransa\",\n        \"name_uk\": \"Франція\",\n        \"name_ur\": \"فرانس\",\n        \"name_vi\": \"Pháp\",\n        \"name_zh\": \"法国\",\n        \"name_zht\": \"法國\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"FRA.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-51.65779741067889, 4.156232408053029],\n              [-52.249337531123956, 3.241094468596245],\n              [-52.55642473001842, 2.504705308437053],\n              [-52.939657151894956, 2.124857692875636],\n              [-53.41846513529531, 2.053389187015981],\n              [-53.554839240113544, 2.334896551925951],\n              [-53.77852067728892, 2.376702785650082],\n              [-54.08806250671725, 2.105556545414629],\n              [-54.524754197799716, 2.311848863123785],\n              [-54.2697051662232, 2.732391669115046],\n              [-54.181726040246275, 3.189779771330421],\n              [-54.00693050801901, 3.620037746592558],\n              [-54.399542202356514, 4.212611395683467],\n              [-54.47863298197923, 4.896755682795586],\n              [-53.9580446030709, 5.756548163267765],\n              [-53.618452928264844, 5.646529038918374],\n              [-52.88214128275409, 5.409850979021584],\n              [-51.8233428615259, 4.565768133966131],\n              [-51.65779741067889, 4.156232408053029]\n            ]\n          ],\n          [\n            [\n              [6.186320428094177, 49.463802802114515],\n              [6.658229607783568, 49.20195831969157],\n              [8.099278598674744, 49.01778351500333],\n              [7.593676385131062, 48.33301911070372],\n              [7.466759067422231, 47.62058197691181],\n              [7.192202182655507, 47.44976552997102],\n              [6.736571079138059, 47.541801255882845],\n              [6.768713820023606, 47.2877082383037],\n              [6.037388950229001, 46.725778713561866],\n              [6.022609490593538, 46.27298981382047],\n              [6.500099724970426, 46.42967275652944],\n              [6.843592970414505, 45.99114655210061],\n              [6.802355177445605, 45.70857982032864],\n              [7.096652459347837, 45.33309886329589],\n              [6.749955275101655, 45.02851797136758],\n              [7.007562290076635, 44.25476675066136],\n              [7.549596388386107, 44.12790110938481],\n              [7.435184767291872, 43.69384491634922],\n              [6.52924523278304, 43.128892320318315],\n              [4.556962517931424, 43.399650987311595],\n              [3.100410597352663, 43.075200507167054],\n              [2.985998976258458, 42.47301504166986],\n              [1.826793247087153, 42.34338471126569],\n              [0.701590610363894, 42.795734361332606],\n              [0.338046909190581, 42.57954600683955],\n              [-1.502770961910528, 43.03401439063043],\n              [-1.901351284177764, 43.42280202897834],\n              [-1.384225226232985, 44.022610378590116],\n              [-1.193797573237418, 46.01491771095486],\n              [-2.225724249673846, 47.06436269793822],\n              [-2.963276129559603, 47.57032664650795],\n              [-4.491554938159481, 47.954954332056374],\n              [-4.592349819344776, 48.68416046812699],\n              [-3.295813971357802, 48.90169240985963],\n              [-1.616510789384961, 48.64442129169454],\n              [-1.933494025063311, 49.776341864615745],\n              [-0.98946895995536, 49.34737580016091],\n              [1.338761020522696, 50.12717316344526],\n              [1.6390010921385, 50.9466063502975],\n              [2.513573032246143, 51.14850617126183],\n              [2.658422071960274, 50.796848049515745],\n              [3.123251580425688, 50.78036326761455],\n              [3.588184441755658, 50.37899241800356],\n              [4.286022983425084, 49.907496649772554],\n              [4.799221632515724, 49.98537303323637],\n              [5.674051954784829, 49.529483547557504],\n              [5.897759230176348, 49.44266714130711],\n              [6.186320428094177, 49.463802802114515]\n            ]\n          ],\n          [\n            [\n              [8.746009148807559, 42.62812185319392],\n              [9.390000848028876, 43.00998484961471],\n              [9.560016310269134, 42.15249197037952],\n              [9.229752231491773, 41.380006822264455],\n              [8.775723097375362, 41.58361196549443],\n              [8.544212680707773, 42.25651662858306],\n              [8.746009148807559, 42.62812185319392]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Ukraine\",\n        \"sov_a3\": \"UKR\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Ukraine\",\n        \"adm0_a3\": \"UKR\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Ukraine\",\n        \"gu_a3\": \"UKR\",\n        \"su_dif\": 0,\n        \"subunit\": \"Ukraine\",\n        \"su_a3\": \"UKR\",\n        \"brk_diff\": 0,\n        \"name\": \"Ukraine\",\n        \"name_long\": \"Ukraine\",\n        \"brk_a3\": \"UKR\",\n        \"brk_name\": \"Ukraine\",\n        \"brk_group\": null,\n        \"abbrev\": \"Ukr.\",\n        \"postal\": \"UA\",\n        \"formal_en\": \"Ukraine\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Ukraine\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Ukraine\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 6,\n        \"mapcolor13\": 3,\n        \"pop_est\": 44385155,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 153781,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"UP\",\n        \"iso_a2\": \"UA\",\n        \"iso_a2_eh\": \"UA\",\n        \"iso_a3\": \"UKR\",\n        \"iso_a3_eh\": \"UKR\",\n        \"iso_n3\": \"804\",\n        \"iso_n3_eh\": \"804\",\n        \"un_a3\": \"804\",\n        \"wb_a2\": \"UA\",\n        \"wb_a3\": \"UKR\",\n        \"woe_id\": 23424976,\n        \"woe_id_eh\": 23424976,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"UKR\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"UKR\",\n        \"adm0_a3_us\": \"UKR\",\n        \"adm0_a3_fr\": \"UKR\",\n        \"adm0_a3_ru\": \"UKR\",\n        \"adm0_a3_es\": \"UKR\",\n        \"adm0_a3_cn\": \"UKR\",\n        \"adm0_a3_tw\": \"UKR\",\n        \"adm0_a3_in\": \"UKR\",\n        \"adm0_a3_np\": \"UKR\",\n        \"adm0_a3_pk\": \"UKR\",\n        \"adm0_a3_de\": \"UKR\",\n        \"adm0_a3_gb\": \"UKR\",\n        \"adm0_a3_br\": \"UKR\",\n        \"adm0_a3_il\": \"UKR\",\n        \"adm0_a3_ps\": \"UKR\",\n        \"adm0_a3_sa\": \"UKR\",\n        \"adm0_a3_eg\": \"UKR\",\n        \"adm0_a3_ma\": \"UKR\",\n        \"adm0_a3_pt\": \"UKR\",\n        \"adm0_a3_ar\": \"UKR\",\n        \"adm0_a3_jp\": \"UKR\",\n        \"adm0_a3_ko\": \"UKR\",\n        \"adm0_a3_vn\": \"UKR\",\n        \"adm0_a3_tr\": \"UKR\",\n        \"adm0_a3_id\": \"UKR\",\n        \"adm0_a3_pl\": \"UKR\",\n        \"adm0_a3_gr\": \"UKR\",\n        \"adm0_a3_it\": \"UKR\",\n        \"adm0_a3_nl\": \"UKR\",\n        \"adm0_a3_se\": \"UKR\",\n        \"adm0_a3_bd\": \"UKR\",\n        \"adm0_a3_ua\": \"UKR\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Eastern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.7,\n        \"max_label\": 7,\n        \"label_x\": 32.140865,\n        \"label_y\": 49.724739,\n        \"ne_id\": 1159321345,\n        \"wikidataid\": \"Q212\",\n        \"name_ar\": \"أوكرانيا\",\n        \"name_bn\": \"ইউক্রেন\",\n        \"name_de\": \"Ukraine\",\n        \"name_en\": \"Ukraine\",\n        \"name_es\": \"Ucrania\",\n        \"name_fa\": \"اوکراین\",\n        \"name_fr\": \"Ukraine\",\n        \"name_el\": \"Ουκρανία\",\n        \"name_he\": \"אוקראינה\",\n        \"name_hi\": \"युक्रेन\",\n        \"name_hu\": \"Ukrajna\",\n        \"name_id\": \"Ukraina\",\n        \"name_it\": \"Ucraina\",\n        \"name_ja\": \"ウクライナ\",\n        \"name_ko\": \"우크라이나\",\n        \"name_nl\": \"Oekraïne\",\n        \"name_pl\": \"Ukraina\",\n        \"name_pt\": \"Ucrânia\",\n        \"name_ru\": \"Украина\",\n        \"name_sv\": \"Ukraina\",\n        \"name_tr\": \"Ukrayna\",\n        \"name_uk\": \"Україна\",\n        \"name_ur\": \"یوکرین\",\n        \"name_vi\": \"Ukraina\",\n        \"name_zh\": \"乌克兰\",\n        \"name_zht\": \"烏克蘭\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"UKR.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [33.435988094713366, 45.971917370797485],\n            [33.69946184910907, 46.219572831556434],\n            [34.41040172853718, 46.005162391728845],\n            [34.73201738827845, 45.96566573176062],\n            [34.861792128174045, 45.76818243191957],\n            [35.01265897004737, 45.73772519982549],\n            [35.02078779474607, 45.65121898048466],\n            [35.51000857925311, 45.40999339454612],\n            [36.52999799983019, 45.46998973243717],\n            [36.334712762199274, 45.11321564389402],\n            [35.239999220528205, 44.93999624285175],\n            [33.882511020652885, 44.361478583344194],\n            [33.32642093276013, 44.564877020844904],\n            [33.546924269349404, 45.03477081967486],\n            [32.4541744321055, 45.327466132176085],\n            [32.63080447767919, 45.51918569597899],\n            [33.58816206231842, 45.85156850848023],\n            [33.435988094713366, 45.971917370797485]\n          ],\n          [\n            [31.78599244755525, 52.1016775699397],\n            [32.15944000000013, 52.06125000000014],\n            [32.41205813978769, 52.28869497334978],\n            [32.715760532367085, 52.23846548116211],\n            [33.75269982273579, 52.3350745713318],\n            [34.39173058445709, 51.768881740925906],\n            [34.141978387190534, 51.566413479206346],\n            [34.22481570815427, 51.25599315042888],\n            [35.02218305841791, 51.2075723333715],\n            [35.37791, 50.77394],\n            [35.356116163887975, 50.57719737405904],\n            [36.62616784032542, 50.225590928745135],\n            [37.39345950699516, 50.38395335550365],\n            [38.01063113785693, 49.9156615260747],\n            [38.59498823421342, 49.9264619004237],\n            [40.06904000000014, 49.60105],\n            [40.080789015469406, 49.30742991799934],\n            [39.67465, 48.78382000000016],\n            [39.89562000000018, 48.23241],\n            [39.738277622238854, 47.89893707945197],\n            [38.77057, 47.825620000000185],\n            [38.25511233902978, 47.54640045835691],\n            [38.223538038899335, 47.10218984637595],\n            [37.4251371599899, 47.02222056740419],\n            [36.75985477066445, 46.69870026304102],\n            [35.82368452326489, 46.64596446388714],\n            [34.96234174982385, 46.27319651954974],\n            [35.01265897004737, 45.73772519982549],\n            [34.861792128174045, 45.76818243191957],\n            [34.73201738827845, 45.96566573176062],\n            [34.41040172853718, 46.005162391728845],\n            [33.69946184910907, 46.219572831556434],\n            [33.435988094713366, 45.971917370797485],\n            [33.29856733575474, 46.08059845639781],\n            [31.744140252415207, 46.33334788673733],\n            [31.67530724460255, 46.70624502215554],\n            [30.74874881360921, 46.583100084004116],\n            [30.377608676888883, 46.03241018328572],\n            [29.603289015427436, 45.293308010431126],\n            [29.149724969201653, 45.464925442072456],\n            [28.67977949393938, 45.304030870131704],\n            [28.23355350109904, 45.48828318946829],\n            [28.485269402792767, 45.5969070501459],\n            [28.65998742037158, 45.93998688413164],\n            [28.933717482221596, 46.25883047137256],\n            [28.862972446414062, 46.43788930926383],\n            [29.07210696789929, 46.517677720722496],\n            [29.170653924279804, 46.37926239682872],\n            [29.759971958136394, 46.34998769793536],\n            [30.024658644335375, 46.42393667254504],\n            [29.838210076626297, 46.52532583270169],\n            [29.908851759569302, 46.67436066343146],\n            [29.559674106573112, 46.928582872091326],\n            [29.415135125452736, 47.34664520933258],\n            [29.05086795422727, 47.5102269557525],\n            [29.12269819511303, 47.849095160506465],\n            [28.670891147585166, 48.1181485052341],\n            [28.259546746541844, 48.15556224221342],\n            [27.522537469195157, 48.467119452501116],\n            [26.857823520624805, 48.368210761094495],\n            [26.619336785597795, 48.22072622333347],\n            [26.19745039236693, 48.22088125263035],\n            [25.9459411964024, 47.987148749374214],\n            [25.20774336111299, 47.89105642352747],\n            [24.866317172960578, 47.737525743188314],\n            [24.40205610525038, 47.98187775328043],\n            [23.76095828623741, 47.985598456405455],\n            [23.142236362406805, 48.09634105080695],\n            [22.710531447040495, 47.88219391538941],\n            [22.640819939878725, 48.150239569687415],\n            [22.085608351334855, 48.42226430927179],\n            [22.28084191253356, 48.82539215758067],\n            [22.558137648211755, 49.085738023467144],\n            [22.776418898212626, 49.02739533140962],\n            [22.518450148211603, 49.47677358661974],\n            [23.426508416444392, 50.30850576435745],\n            [23.92275719574326, 50.42488108987874],\n            [24.029985792748903, 50.70540660257518],\n            [23.52707075368437, 51.57845408793031],\n            [24.00507775238418, 51.617443956094405],\n            [24.553106316839518, 51.888461005249184],\n            [25.32778771332701, 51.91065603291855],\n            [26.337958611768556, 51.83228872334797],\n            [27.454066196408405, 51.592303371784396],\n            [28.24161502453657, 51.57222707783907],\n            [28.61761274589225, 51.42771393493484],\n            [28.992835320763533, 51.602044379271476],\n            [29.25493818534784, 51.36823436136689],\n            [30.157363722460897, 51.41613841410147],\n            [30.555117221811457, 51.31950348571566],\n            [30.619454380014815, 51.822806098022454],\n            [30.927549269338982, 52.04235342061439],\n            [31.78599244755525, 52.1016775699397]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Belarus\",\n        \"sov_a3\": \"BLR\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Belarus\",\n        \"adm0_a3\": \"BLR\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Belarus\",\n        \"gu_a3\": \"BLR\",\n        \"su_dif\": 0,\n        \"subunit\": \"Belarus\",\n        \"su_a3\": \"BLR\",\n        \"brk_diff\": 0,\n        \"name\": \"Belarus\",\n        \"name_long\": \"Belarus\",\n        \"brk_a3\": \"BLR\",\n        \"brk_name\": \"Belarus\",\n        \"brk_group\": null,\n        \"abbrev\": \"Bela.\",\n        \"postal\": \"BY\",\n        \"formal_en\": \"Republic of Belarus\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Belarus\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Belarus\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 11,\n        \"pop_est\": 9466856,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 63080,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"BO\",\n        \"iso_a2\": \"BY\",\n        \"iso_a2_eh\": \"BY\",\n        \"iso_a3\": \"BLR\",\n        \"iso_a3_eh\": \"BLR\",\n        \"iso_n3\": \"112\",\n        \"iso_n3_eh\": \"112\",\n        \"un_a3\": \"112\",\n        \"wb_a2\": \"BY\",\n        \"wb_a3\": \"BLR\",\n        \"woe_id\": 23424765,\n        \"woe_id_eh\": 23424765,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"BLR\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"BLR\",\n        \"adm0_a3_us\": \"BLR\",\n        \"adm0_a3_fr\": \"BLR\",\n        \"adm0_a3_ru\": \"BLR\",\n        \"adm0_a3_es\": \"BLR\",\n        \"adm0_a3_cn\": \"BLR\",\n        \"adm0_a3_tw\": \"BLR\",\n        \"adm0_a3_in\": \"BLR\",\n        \"adm0_a3_np\": \"BLR\",\n        \"adm0_a3_pk\": \"BLR\",\n        \"adm0_a3_de\": \"BLR\",\n        \"adm0_a3_gb\": \"BLR\",\n        \"adm0_a3_br\": \"BLR\",\n        \"adm0_a3_il\": \"BLR\",\n        \"adm0_a3_ps\": \"BLR\",\n        \"adm0_a3_sa\": \"BLR\",\n        \"adm0_a3_eg\": \"BLR\",\n        \"adm0_a3_ma\": \"BLR\",\n        \"adm0_a3_pt\": \"BLR\",\n        \"adm0_a3_ar\": \"BLR\",\n        \"adm0_a3_jp\": \"BLR\",\n        \"adm0_a3_ko\": \"BLR\",\n        \"adm0_a3_vn\": \"BLR\",\n        \"adm0_a3_tr\": \"BLR\",\n        \"adm0_a3_id\": \"BLR\",\n        \"adm0_a3_pl\": \"BLR\",\n        \"adm0_a3_gr\": \"BLR\",\n        \"adm0_a3_it\": \"BLR\",\n        \"adm0_a3_nl\": \"BLR\",\n        \"adm0_a3_se\": \"BLR\",\n        \"adm0_a3_bd\": \"BLR\",\n        \"adm0_a3_ua\": \"BLR\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Eastern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 28.417701,\n        \"label_y\": 53.821888,\n        \"ne_id\": 1159320427,\n        \"wikidataid\": \"Q184\",\n        \"name_ar\": \"بيلاروسيا\",\n        \"name_bn\": \"বেলারুশ\",\n        \"name_de\": \"Belarus\",\n        \"name_en\": \"Belarus\",\n        \"name_es\": \"Bielorrusia\",\n        \"name_fa\": \"بلاروس\",\n        \"name_fr\": \"Biélorussie\",\n        \"name_el\": \"Λευκορωσία\",\n        \"name_he\": \"בלארוס\",\n        \"name_hi\": \"बेलारूस\",\n        \"name_hu\": \"Fehéroroszország\",\n        \"name_id\": \"Belarus\",\n        \"name_it\": \"Bielorussia\",\n        \"name_ja\": \"ベラルーシ\",\n        \"name_ko\": \"벨라루스\",\n        \"name_nl\": \"Wit-Rusland\",\n        \"name_pl\": \"Białoruś\",\n        \"name_pt\": \"Bielorrússia\",\n        \"name_ru\": \"Белоруссия\",\n        \"name_sv\": \"Belarus\",\n        \"name_tr\": \"Beyaz Rusya\",\n        \"name_uk\": \"Білорусь\",\n        \"name_ur\": \"بیلاروس\",\n        \"name_vi\": \"Belarus\",\n        \"name_zh\": \"白俄罗斯\",\n        \"name_zht\": \"白俄羅斯\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"BLR.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [28.17670942557794, 56.16912995057879],\n            [29.229513380660308, 55.91834422466636],\n            [29.371571893030673, 55.670090643936184],\n            [29.896294386522356, 55.78946320253041],\n            [30.87390913262001, 55.55097646750341],\n            [30.971835971813135, 55.08154775656404],\n            [30.75753380709872, 54.81177094178432],\n            [31.38447228366374, 54.15705638286238],\n            [31.79142418796224, 53.974638576872124],\n            [31.731272820774507, 53.79402944601202],\n            [32.405598585751164, 53.61804535584204],\n            [32.69364301934604, 53.35142080343218],\n            [32.30451948418823, 53.13272614197291],\n            [31.49764, 53.16743000000014],\n            [31.305200636528014, 53.07399587667321],\n            [31.54001834486226, 52.74205231384636],\n            [31.78597, 52.1016800000001],\n            [31.78599244755525, 52.1016775699397],\n            [30.927549269338982, 52.04235342061439],\n            [30.619454380014815, 51.822806098022454],\n            [30.555117221811457, 51.31950348571566],\n            [30.157363722460897, 51.41613841410147],\n            [29.25493818534784, 51.36823436136689],\n            [28.992835320763533, 51.602044379271476],\n            [28.61761274589225, 51.42771393493484],\n            [28.24161502453657, 51.57222707783907],\n            [27.454066196408405, 51.592303371784396],\n            [26.337958611768556, 51.83228872334797],\n            [25.32778771332701, 51.91065603291855],\n            [24.553106316839518, 51.888461005249184],\n            [24.00507775238418, 51.617443956094405],\n            [23.52707075368437, 51.57845408793031],\n            [23.508002150168693, 52.02364655212473],\n            [23.199493849386187, 52.48697744405367],\n            [23.79919884613338, 52.69109935160657],\n            [23.80493493011778, 53.089731350306074],\n            [23.527535841575002, 53.470121568406555],\n            [23.48412763844985, 53.91249766704114],\n            [24.450683628037037, 53.905702216194754],\n            [25.536353794056993, 54.28242340760253],\n            [25.7684326514798, 54.84696259217509],\n            [26.58827924979039, 55.16717560487167],\n            [26.494331495883756, 55.615106919977634],\n            [27.10245975109453, 55.783313707087686],\n            [28.17670942557794, 56.16912995057879]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Lithuania\",\n        \"sov_a3\": \"LTU\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Lithuania\",\n        \"adm0_a3\": \"LTU\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Lithuania\",\n        \"gu_a3\": \"LTU\",\n        \"su_dif\": 0,\n        \"subunit\": \"Lithuania\",\n        \"su_a3\": \"LTU\",\n        \"brk_diff\": 0,\n        \"name\": \"Lithuania\",\n        \"name_long\": \"Lithuania\",\n        \"brk_a3\": \"LTU\",\n        \"brk_name\": \"Lithuania\",\n        \"brk_group\": null,\n        \"abbrev\": \"Lith.\",\n        \"postal\": \"LT\",\n        \"formal_en\": \"Republic of Lithuania\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Lithuania\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Lithuania\",\n        \"name_alt\": null,\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 9,\n        \"pop_est\": 2786844,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 54627,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"LH\",\n        \"iso_a2\": \"LT\",\n        \"iso_a2_eh\": \"LT\",\n        \"iso_a3\": \"LTU\",\n        \"iso_a3_eh\": \"LTU\",\n        \"iso_n3\": \"440\",\n        \"iso_n3_eh\": \"440\",\n        \"un_a3\": \"440\",\n        \"wb_a2\": \"LT\",\n        \"wb_a3\": \"LTU\",\n        \"woe_id\": 23424875,\n        \"woe_id_eh\": 23424875,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"LTU\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"LTU\",\n        \"adm0_a3_us\": \"LTU\",\n        \"adm0_a3_fr\": \"LTU\",\n        \"adm0_a3_ru\": \"LTU\",\n        \"adm0_a3_es\": \"LTU\",\n        \"adm0_a3_cn\": \"LTU\",\n        \"adm0_a3_tw\": \"LTU\",\n        \"adm0_a3_in\": \"LTU\",\n        \"adm0_a3_np\": \"LTU\",\n        \"adm0_a3_pk\": \"LTU\",\n        \"adm0_a3_de\": \"LTU\",\n        \"adm0_a3_gb\": \"LTU\",\n        \"adm0_a3_br\": \"LTU\",\n        \"adm0_a3_il\": \"LTU\",\n        \"adm0_a3_ps\": \"LTU\",\n        \"adm0_a3_sa\": \"LTU\",\n        \"adm0_a3_eg\": \"LTU\",\n        \"adm0_a3_ma\": \"LTU\",\n        \"adm0_a3_pt\": \"LTU\",\n        \"adm0_a3_ar\": \"LTU\",\n        \"adm0_a3_jp\": \"LTU\",\n        \"adm0_a3_ko\": \"LTU\",\n        \"adm0_a3_vn\": \"LTU\",\n        \"adm0_a3_tr\": \"LTU\",\n        \"adm0_a3_id\": \"LTU\",\n        \"adm0_a3_pl\": \"LTU\",\n        \"adm0_a3_gr\": \"LTU\",\n        \"adm0_a3_it\": \"LTU\",\n        \"adm0_a3_nl\": \"LTU\",\n        \"adm0_a3_se\": \"LTU\",\n        \"adm0_a3_bd\": \"LTU\",\n        \"adm0_a3_ua\": \"LTU\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Northern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 9,\n        \"long_len\": 9,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 24.089932,\n        \"label_y\": 55.103703,\n        \"ne_id\": 1159321029,\n        \"wikidataid\": \"Q37\",\n        \"name_ar\": \"ليتوانيا\",\n        \"name_bn\": \"লিথুয়ানিয়া\",\n        \"name_de\": \"Litauen\",\n        \"name_en\": \"Lithuania\",\n        \"name_es\": \"Lituania\",\n        \"name_fa\": \"لیتوانی\",\n        \"name_fr\": \"Lituanie\",\n        \"name_el\": \"Λιθουανία\",\n        \"name_he\": \"ליטא\",\n        \"name_hi\": \"लिथुआनिया\",\n        \"name_hu\": \"Litvánia\",\n        \"name_id\": \"Lituania\",\n        \"name_it\": \"Lituania\",\n        \"name_ja\": \"リトアニア\",\n        \"name_ko\": \"리투아니아\",\n        \"name_nl\": \"Litouwen\",\n        \"name_pl\": \"Litwa\",\n        \"name_pt\": \"Lituânia\",\n        \"name_ru\": \"Литва\",\n        \"name_sv\": \"Litauen\",\n        \"name_tr\": \"Litvanya\",\n        \"name_uk\": \"Литва\",\n        \"name_ur\": \"لتھووینیا\",\n        \"name_vi\": \"Litva\",\n        \"name_zh\": \"立陶宛\",\n        \"name_zht\": \"立陶宛\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"LTU.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [26.494331495883756, 55.615106919977634],\n            [26.58827924979039, 55.16717560487167],\n            [25.7684326514798, 54.84696259217509],\n            [25.536353794056993, 54.28242340760253],\n            [24.450683628037037, 53.905702216194754],\n            [23.48412763844985, 53.91249766704114],\n            [23.24398725758951, 54.22056671814914],\n            [22.731098667092652, 54.327536932993326],\n            [22.65105187347254, 54.582740993866736],\n            [22.75776370615526, 54.85657440858138],\n            [22.315723504330577, 55.015298570365864],\n            [21.268448927503467, 55.190481675835315],\n            [21.055800408622417, 56.031076361711065],\n            [22.201156853939494, 56.33780182557949],\n            [23.878263787539964, 56.27367137310527],\n            [24.86068444184076, 56.37252838807963],\n            [25.000934279080894, 56.16453074810484],\n            [25.533046502390334, 56.100296942766036],\n            [26.494331495883756, 55.615106919977634]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Russia\",\n        \"sov_a3\": \"RUS\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Russia\",\n        \"adm0_a3\": \"RUS\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Russia\",\n        \"gu_a3\": \"RUS\",\n        \"su_dif\": 0,\n        \"subunit\": \"Russia\",\n        \"su_a3\": \"RUS\",\n        \"brk_diff\": 0,\n        \"name\": \"Russia\",\n        \"name_long\": \"Russian Federation\",\n        \"brk_a3\": \"RUS\",\n        \"brk_name\": \"Russia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Rus.\",\n        \"postal\": \"RUS\",\n        \"formal_en\": \"Russian Federation\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Russia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Russian Federation\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 7,\n        \"mapcolor13\": 7,\n        \"pop_est\": 144373535,\n        \"pop_rank\": 17,\n        \"pop_year\": 2019,\n        \"gdp_md\": 1699876,\n        \"gdp_year\": 2019,\n        \"economy\": \"3. Emerging region: BRIC\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"RS\",\n        \"iso_a2\": \"RU\",\n        \"iso_a2_eh\": \"RU\",\n        \"iso_a3\": \"RUS\",\n        \"iso_a3_eh\": \"RUS\",\n        \"iso_n3\": \"643\",\n        \"iso_n3_eh\": \"643\",\n        \"un_a3\": \"643\",\n        \"wb_a2\": \"RU\",\n        \"wb_a3\": \"RUS\",\n        \"woe_id\": 23424936,\n        \"woe_id_eh\": 23424936,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"RUS\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"RUS\",\n        \"adm0_a3_us\": \"RUS\",\n        \"adm0_a3_fr\": \"RUS\",\n        \"adm0_a3_ru\": \"RUS\",\n        \"adm0_a3_es\": \"RUS\",\n        \"adm0_a3_cn\": \"RUS\",\n        \"adm0_a3_tw\": \"RUS\",\n        \"adm0_a3_in\": \"RUS\",\n        \"adm0_a3_np\": \"RUS\",\n        \"adm0_a3_pk\": \"RUS\",\n        \"adm0_a3_de\": \"RUS\",\n        \"adm0_a3_gb\": \"RUS\",\n        \"adm0_a3_br\": \"RUS\",\n        \"adm0_a3_il\": \"RUS\",\n        \"adm0_a3_ps\": \"RUS\",\n        \"adm0_a3_sa\": \"RUS\",\n        \"adm0_a3_eg\": \"RUS\",\n        \"adm0_a3_ma\": \"RUS\",\n        \"adm0_a3_pt\": \"RUS\",\n        \"adm0_a3_ar\": \"RUS\",\n        \"adm0_a3_jp\": \"RUS\",\n        \"adm0_a3_ko\": \"RUS\",\n        \"adm0_a3_vn\": \"RUS\",\n        \"adm0_a3_tr\": \"RUS\",\n        \"adm0_a3_id\": \"RUS\",\n        \"adm0_a3_pl\": \"RUS\",\n        \"adm0_a3_gr\": \"RUS\",\n        \"adm0_a3_it\": \"RUS\",\n        \"adm0_a3_nl\": \"RUS\",\n        \"adm0_a3_se\": \"RUS\",\n        \"adm0_a3_bd\": \"RUS\",\n        \"adm0_a3_ua\": \"RUS\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Eastern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 6,\n        \"long_len\": 18,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 5.2,\n        \"label_x\": 44.686469,\n        \"label_y\": 58.249357,\n        \"ne_id\": 1159321201,\n        \"wikidataid\": \"Q159\",\n        \"name_ar\": \"روسيا\",\n        \"name_bn\": \"রাশিয়া\",\n        \"name_de\": \"Russland\",\n        \"name_en\": \"Russia\",\n        \"name_es\": \"Rusia\",\n        \"name_fa\": \"روسیه\",\n        \"name_fr\": \"Russie\",\n        \"name_el\": \"Ρωσία\",\n        \"name_he\": \"רוסיה\",\n        \"name_hi\": \"रूस\",\n        \"name_hu\": \"Oroszország\",\n        \"name_id\": \"Rusia\",\n        \"name_it\": \"Russia\",\n        \"name_ja\": \"ロシア\",\n        \"name_ko\": \"러시아\",\n        \"name_nl\": \"Rusland\",\n        \"name_pl\": \"Rosja\",\n        \"name_pt\": \"Rússia\",\n        \"name_ru\": \"Россия\",\n        \"name_sv\": \"Ryssland\",\n        \"name_tr\": \"Rusya\",\n        \"name_uk\": \"Росія\",\n        \"name_ur\": \"روس\",\n        \"name_vi\": \"Nga\",\n        \"name_zh\": \"俄罗斯\",\n        \"name_zht\": \"俄羅斯\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"RUS.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [178.7253, 71.0988],\n              [180, 71.51571433642829],\n              [180, 70.83219920854673],\n              [178.903425, 70.78114],\n              [178.7253, 71.0988]\n            ]\n          ],\n          [\n            [\n              [49.10116000000011, 46.399330000000134],\n              [48.64541, 45.806290000000104],\n              [47.67591, 45.64149000000015],\n              [46.68201, 44.6092000000001],\n              [47.59094, 43.66016],\n              [47.49252, 42.98658000000012],\n              [48.58437000000015, 41.80888],\n              [48.58435339611342, 41.80886879162067],\n              [47.98728315612598, 41.40581920019423],\n              [47.81566572448463, 41.15141612402135],\n              [47.37331546406623, 41.2197323675112],\n              [46.68607059101661, 41.82713715266988],\n              [46.404950799348825, 41.860675157227305],\n              [45.7764, 42.09244000000018],\n              [45.47027916848572, 42.50278066666998],\n              [44.537622918481986, 42.71199270280363],\n              [43.931210000000135, 42.55496000000011],\n              [43.75599000000011, 42.74083],\n              [42.39440000000013, 43.2203],\n              [40.922190000000114, 43.38215000000014],\n              [40.07696495947977, 43.553104153002316],\n              [39.955008579270924, 43.43499766699922],\n              [38.68, 44.28],\n              [37.53912, 44.65721],\n              [36.6754600000001, 45.244690000000105],\n              [37.4031700000001, 45.40451000000013],\n              [38.23295, 46.24087],\n              [37.67372, 46.63657],\n              [39.14767000000012, 47.044750000000136],\n              [39.1212, 47.26336],\n              [38.223538038899335, 47.10218984637595],\n              [38.25511233902978, 47.54640045835691],\n              [38.77057, 47.825620000000185],\n              [39.738277622238854, 47.89893707945197],\n              [39.89562000000018, 48.23241],\n              [39.67465, 48.78382000000016],\n              [40.080789015469406, 49.30742991799934],\n              [40.06904000000014, 49.60105],\n              [38.59498823421342, 49.9264619004237],\n              [38.01063113785693, 49.9156615260747],\n              [37.39345950699516, 50.38395335550365],\n              [36.62616784032542, 50.225590928745135],\n              [35.356116163887975, 50.57719737405904],\n              [35.37791, 50.77394],\n              [35.02218305841791, 51.2075723333715],\n              [34.22481570815427, 51.25599315042888],\n              [34.141978387190534, 51.566413479206346],\n              [34.39173058445709, 51.768881740925906],\n              [33.75269982273579, 52.3350745713318],\n              [32.715760532367085, 52.23846548116211],\n              [32.41205813978769, 52.28869497334978],\n              [32.15944000000013, 52.06125000000014],\n              [31.78599244755525, 52.1016775699397],\n              [31.78597, 52.1016800000001],\n              [31.54001834486226, 52.74205231384636],\n              [31.305200636528014, 53.07399587667321],\n              [31.49764, 53.16743000000014],\n              [32.30451948418823, 53.13272614197291],\n              [32.69364301934604, 53.35142080343218],\n              [32.405598585751164, 53.61804535584204],\n              [31.731272820774507, 53.79402944601202],\n              [31.79142418796224, 53.974638576872124],\n              [31.38447228366374, 54.15705638286238],\n              [30.75753380709872, 54.81177094178432],\n              [30.971835971813135, 55.08154775656404],\n              [30.87390913262001, 55.55097646750341],\n              [29.896294386522356, 55.78946320253041],\n              [29.371571893030673, 55.670090643936184],\n              [29.229513380660308, 55.91834422466636],\n              [28.17670942557794, 56.16912995057879],\n              [27.855282016722526, 56.75932648378429],\n              [27.77001590344093, 57.24425812441123],\n              [27.288184848751513, 57.47452830670383],\n              [27.71668582531572, 57.79189911562436],\n              [27.42015000000015, 58.72457000000014],\n              [28.13169925305175, 59.300825100330925],\n              [27.98112, 59.47537000000011],\n              [27.981126857000987, 59.47537333432527],\n              [29.1177, 60.02805000000012],\n              [28.070001921525666, 60.50351912796823],\n              [28.07, 60.50352],\n              [30.21110721204445, 61.780027777749694],\n              [31.139991082490894, 62.35769277612441],\n              [31.516092156711125, 62.86768748641289],\n              [30.035872430142717, 63.55281362573855],\n              [30.44468468600371, 64.20445343693909],\n              [29.54442955904699, 64.94867157659048],\n              [30.21765, 65.80598],\n              [29.054588657352326, 66.94428620062206],\n              [29.97742638522061, 67.69829702419275],\n              [28.445943637818658, 68.36461294216404],\n              [28.591929559043194, 69.06477692328666],\n              [29.39955, 69.15692000000013],\n              [31.101042202597625, 69.55810108805622],\n              [31.10108, 69.55811000000011],\n              [32.13272000000018, 69.90595000000019],\n              [33.77547, 69.30142000000012],\n              [36.51396, 69.06342],\n              [40.29234000000014, 67.9324],\n              [41.05987, 67.45713000000012],\n              [41.1259500000001, 66.79158],\n              [40.01583, 66.26618000000013],\n              [38.38295, 65.9995300000001],\n              [33.91871000000015, 66.75961],\n              [33.18444, 66.63253],\n              [34.814770000000124, 65.90015000000017],\n              [34.87857425307874, 65.4362128770482],\n              [34.94391, 64.41437000000019],\n              [36.23129, 64.10945],\n              [37.01273, 63.84983000000011],\n              [37.141970000000185, 64.33471],\n              [36.53957903508979, 64.76446],\n              [37.17604, 65.14322000000016],\n              [39.59345, 64.5207900000002],\n              [40.4356, 64.76446],\n              [39.76260000000019, 65.49682],\n              [42.09309000000013, 66.47623],\n              [43.01604, 66.41858000000013],\n              [43.94975000000011, 66.06908],\n              [44.53226, 66.75634000000014],\n              [43.69839, 67.35245],\n              [44.18795000000017, 67.95051000000012],\n              [43.45282, 68.57079],\n              [46.250000000000114, 68.25],\n              [46.82134, 67.68997],\n              [45.55517, 67.56652],\n              [45.56202000000013, 67.01005000000015],\n              [46.34915000000012, 66.6676700000001],\n              [47.89416000000017, 66.8845500000001],\n              [48.13876, 67.52238],\n              [50.22766000000013, 67.99867000000017],\n              [53.71743000000015, 68.85738000000015],\n              [54.47171, 68.80815],\n              [53.48582000000016, 68.20131],\n              [54.72628, 68.09702],\n              [55.44268000000011, 68.43866],\n              [57.31702, 68.46628],\n              [58.802000000000135, 68.88082],\n              [59.94142000000011, 68.27844],\n              [61.07784000000021, 68.94069],\n              [60.03, 69.52],\n              [60.55, 69.85],\n              [63.50400000000013, 69.54739],\n              [64.888115, 69.234835],\n              [68.51216000000016, 68.09233000000012],\n              [69.18068000000011, 68.61563000000012],\n              [68.16444, 69.14436],\n              [68.13522, 69.35649000000012],\n              [66.93008000000015, 69.45461000000012],\n              [67.25976, 69.92873],\n              [66.72492000000017, 70.70889000000017],\n              [66.69466, 71.02897000000019],\n              [68.54006, 71.93450000000018],\n              [69.19636, 72.84336000000019],\n              [69.94, 73.04],\n              [72.58754, 72.77629000000013],\n              [72.79603, 72.22006],\n              [71.84811, 71.40898],\n              [72.47011, 71.09019],\n              [72.79188, 70.39114],\n              [72.56470000000013, 69.02085],\n              [73.66787, 68.4079],\n              [73.2387, 67.7404],\n              [71.28, 66.3200000000001],\n              [72.42301, 66.17267000000021],\n              [72.82077, 66.53267],\n              [73.92099000000013, 66.78946000000013],\n              [74.18651000000011, 67.28429],\n              [75.052, 67.76047000000011],\n              [74.46926000000013, 68.32899],\n              [74.93584, 68.98918],\n              [73.84236, 69.07146],\n              [73.60187000000019, 69.62763],\n              [74.3998, 70.63175],\n              [73.1011, 71.4471700000002],\n              [74.89082000000019, 72.12119000000013],\n              [74.65926, 72.83227],\n              [75.1580100000001, 72.85497000000015],\n              [75.68351000000013, 72.30056000000013],\n              [75.28898, 71.3355600000001],\n              [76.35911, 71.15287000000018],\n              [75.90313000000015, 71.87401],\n              [77.57665, 72.26717],\n              [79.6520200000001, 72.32011],\n              [81.5, 71.75],\n              [80.61071, 72.58285000000012],\n              [80.51109, 73.6482],\n              [82.25, 73.85000000000014],\n              [84.65526, 73.80591000000021],\n              [86.82230000000015, 73.93688],\n              [86.00956, 74.45967000000019],\n              [87.16682000000014, 75.11643],\n              [88.31571, 75.14393],\n              [90.26, 75.64],\n              [92.90058, 75.7733300000001],\n              [93.23421, 76.0472],\n              [95.86000000000018, 76.1400000000001],\n              [96.67821, 75.91548],\n              [98.92254000000014, 76.44689],\n              [100.75967000000014, 76.43028],\n              [101.03532, 76.86189],\n              [101.9908400000001, 77.28754000000015],\n              [104.35160000000013, 77.69792],\n              [106.06664000000018, 77.37389],\n              [104.70500000000015, 77.1274],\n              [106.97013, 76.97419],\n              [107.24000000000012, 76.48],\n              [108.1538000000001, 76.72335],\n              [111.0772600000002, 76.71],\n              [113.33151, 76.22224],\n              [114.13417, 75.84764],\n              [113.88539, 75.32779000000016],\n              [112.77918, 75.03186000000011],\n              [110.15125000000012, 74.47673],\n              [109.4, 74.18],\n              [110.64, 74.04],\n              [112.11919, 73.78774000000016],\n              [113.01954000000023, 73.97693000000015],\n              [113.52958000000024, 73.33505000000014],\n              [113.96881, 73.59488],\n              [115.56782, 73.75285],\n              [118.77633000000014, 73.58772],\n              [119.02, 73.12],\n              [123.20066, 72.97122],\n              [123.25777000000016, 73.73503],\n              [125.38000000000011, 73.56],\n              [126.97644, 73.56549000000012],\n              [128.59126, 73.03871],\n              [129.05157, 72.39872],\n              [128.46, 71.98],\n              [129.71599000000015, 71.19304000000011],\n              [131.28858000000025, 70.78699000000012],\n              [132.25350000000014, 71.83630000000011],\n              [133.85766000000024, 71.3864200000001],\n              [135.56193, 71.65525000000014],\n              [137.49755, 71.34763],\n              [138.23409000000015, 71.62803],\n              [139.86983, 71.48783000000014],\n              [139.14791, 72.41619000000014],\n              [140.46817, 72.84941000000015],\n              [149.5, 72.2],\n              [150.3511800000001, 71.60643],\n              [152.9689000000002, 70.84222],\n              [157.00688, 71.03141],\n              [158.99779, 70.86672],\n              [159.83031000000017, 70.45324],\n              [159.70866, 69.72198],\n              [160.9405300000003, 69.4372800000001],\n              [162.27907, 69.64204],\n              [164.05248, 69.66823],\n              [165.94037000000014, 69.47199],\n              [167.83567, 69.58269000000013],\n              [169.5776300000001, 68.6938],\n              [170.8168800000002, 69.01363],\n              [170.0082000000001, 69.65276],\n              [170.4534500000002, 70.09703],\n              [173.64391000000012, 69.81743],\n              [175.7240300000002, 69.87725000000017],\n              [178.6, 69.4],\n              [180, 68.96363636363651],\n              [180, 64.97970870219848],\n              [179.99281, 64.97433],\n              [178.70720000000028, 64.53493],\n              [177.41128, 64.60821],\n              [178.3130000000001, 64.07593],\n              [178.90825000000018, 63.25197],\n              [179.37034, 62.98262000000011],\n              [179.48636, 62.56894],\n              [179.22825, 62.304100000000176],\n              [177.3643, 62.5219],\n              [174.56929000000025, 61.76915],\n              [173.68013, 61.65261],\n              [172.15, 60.95],\n              [170.6985, 60.33618000000013],\n              [170.33085000000028, 59.88177],\n              [168.90046, 60.57355],\n              [166.29498000000024, 59.78855000000016],\n              [165.84000000000015, 60.16],\n              [164.87674, 59.7316],\n              [163.53929, 59.86871],\n              [163.21711000000016, 59.21101],\n              [162.01733, 58.24328],\n              [162.05297, 57.83912],\n              [163.19191, 57.615030000000104],\n              [163.05794000000014, 56.159240000000125],\n              [162.12958000000015, 56.12219],\n              [161.70146, 55.285680000000184],\n              [162.11749, 54.85514],\n              [160.36877000000027, 54.34433],\n              [160.02173000000016, 53.20257],\n              [158.5309400000001, 52.958680000000186],\n              [158.23118, 51.94269],\n              [156.78979000000027, 51.01105],\n              [156.42, 51.7],\n              [155.99182, 53.15895],\n              [155.43366, 55.38103000000012],\n              [155.9144200000003, 56.767920000000174],\n              [156.75815, 57.3647],\n              [156.81035, 57.83204],\n              [158.3643300000001, 58.05575],\n              [160.15064, 59.31477],\n              [161.87204, 60.343],\n              [163.66969, 61.1409000000001],\n              [164.47355, 62.55061],\n              [163.25842000000011, 62.46627000000012],\n              [162.65791, 61.6425],\n              [160.12148, 60.54423],\n              [159.30232, 61.7739600000001],\n              [156.72068, 61.43442],\n              [154.21806000000026, 59.75818000000015],\n              [155.04375, 59.14495],\n              [152.81185, 58.88385],\n              [151.2657300000002, 58.78089],\n              [151.33815, 59.50396],\n              [149.78371, 59.655730000000176],\n              [148.54481, 59.16448],\n              [145.48722, 59.33637],\n              [142.19782, 59.03998000000013],\n              [138.95848000000024, 57.08805],\n              [135.12619, 54.72959],\n              [136.70171, 54.603550000000155],\n              [137.19342, 53.97732],\n              [138.1647, 53.7550100000002],\n              [138.80463, 54.25455],\n              [139.90151, 54.18968000000012],\n              [141.34531, 53.08957000000015],\n              [141.37923, 52.23877],\n              [140.59742000000017, 51.2396700000001],\n              [140.51308, 50.045530000000156],\n              [140.0619300000002, 48.44671000000011],\n              [138.5547200000002, 46.99965],\n              [138.21971, 46.30795],\n              [136.86232, 45.14350000000013],\n              [135.51535000000013, 43.989],\n              [134.86939000000018, 43.39821],\n              [133.53687000000025, 42.81147],\n              [132.90627, 42.79849000000013],\n              [132.27807000000018, 43.28456000000011],\n              [130.93587000000014, 42.55274],\n              [130.78000485358513, 42.22001036108258],\n              [130.78000366004676, 42.220007813203225],\n              [130.78, 42.22000000000014],\n              [130.77999231657833, 42.22000960427719],\n              [130.6400000000001, 42.395],\n              [130.63999970690955, 42.39502427522179],\n              [130.63386640840974, 42.90301463477053],\n              [131.1446879416149, 42.92998973242689],\n              [131.28855512911548, 44.11151968034828],\n              [131.02519000000018, 44.96796],\n              [131.8834542176595, 45.32116160743652],\n              [133.09712000000013, 45.14409],\n              [133.76964399631288, 46.116926988299014],\n              [134.1123500000001, 47.21248],\n              [134.50081, 47.57845],\n              [135.02631147678665, 48.478229885443874],\n              [133.37359581922794, 48.18344167743487],\n              [132.50669, 47.78896],\n              [130.9872600000001, 47.79013],\n              [130.58229332898242, 48.72968740497614],\n              [129.39781782442043, 49.44060008401544],\n              [127.65740000000028, 49.760270000000105],\n              [127.28745568248485, 50.73979726826548],\n              [126.93915652883766, 51.35389415140592],\n              [126.56439904185697, 51.7842554795327],\n              [125.94634891164617, 52.79279857035698],\n              [125.06821129771038, 53.16104482686886],\n              [123.57147, 53.4588],\n              [122.24574791879283, 53.431725979213695],\n              [121.00308475147017, 53.25140106873119],\n              [120.17708865771681, 52.75388621684124],\n              [120.72578901579197, 52.516226304730935],\n              [120.7382, 51.96411],\n              [120.18208000000016, 51.64355000000012],\n              [119.27939, 50.58292],\n              [119.2884607280258, 50.142882798862004],\n              [117.8792444194264, 49.510983384796965],\n              [116.67880089728612, 49.888531399121405],\n              [115.48569542853136, 49.80517731383475],\n              [114.96210981655018, 50.140247300815126],\n              [114.36245649623527, 50.24830272073741],\n              [112.89773969935436, 49.54356537535699],\n              [111.58123091028662, 49.37796824807769],\n              [110.66201053267878, 49.13012807880585],\n              [109.40244917199664, 49.292960516957635],\n              [108.47516727095129, 49.28254771585074],\n              [107.86817589725095, 49.793705145865815],\n              [106.8888041524553, 50.27429596618032],\n              [105.88659142458675, 50.406019192092224],\n              [104.62158, 50.27532000000019],\n              [103.67654544476022, 50.089966132195116],\n              [102.25589, 50.51056000000011],\n              [102.06521, 51.25991],\n              [100.88948042196262, 51.51685578063832],\n              [99.98173221232354, 51.63400625264399],\n              [98.86149051310034, 52.04736603454669],\n              [97.82573978067431, 51.01099518493318],\n              [98.23176150919156, 50.422400621128745],\n              [97.25976000000014, 49.72605],\n              [95.8140200000002, 49.97746000000012],\n              [94.81594933469873, 50.01343333597085],\n              [94.14756635943559, 50.48053660745717],\n              [93.10421, 50.49529],\n              [92.23471154171968, 50.80217072204172],\n              [90.71366743364068, 50.33181183532109],\n              [88.80556684769552, 49.47052073831242],\n              [87.75126427607671, 49.297197984405486],\n              [87.35997033076265, 49.21498078062912],\n              [86.82935672398963, 49.82667470966817],\n              [85.54126997268247, 49.69285858824816],\n              [85.11555952346203, 50.11730296487764],\n              [84.41637739455308, 50.311399644565824],\n              [83.93511478061885, 50.88924551045358],\n              [83.38300377801238, 51.069182847693924],\n              [81.94598554883993, 50.81219594990637],\n              [80.56844689323549, 51.38833649352847],\n              [80.03555952344169, 50.86475088154725],\n              [77.80091556184425, 53.404414984747575],\n              [76.52517947785475, 54.17700348572714],\n              [76.89110029491343, 54.49052440044193],\n              [74.38482000000016, 53.54685000000012],\n              [73.42567874542044, 53.489810289109755],\n              [73.5085160663844, 54.0356167669766],\n              [72.22415001820218, 54.376655381886735],\n              [71.18013105660941, 54.13328522400826],\n              [70.86526655465514, 55.169733588270105],\n              [69.06816694527288, 55.38525014914353],\n              [68.16910037625883, 54.97039175070432],\n              [65.66687, 54.60125000000011],\n              [65.17853356309593, 54.35422781027211],\n              [61.43660000000017, 54.00625],\n              [60.978066440683165, 53.66499339457914],\n              [61.699986199800605, 52.97999644633427],\n              [60.73999311711458, 52.71998647725775],\n              [60.92726850774028, 52.44754832621504],\n              [59.967533807215545, 51.9604204372157],\n              [61.58800337102417, 51.272658799843214],\n              [61.337424350840934, 50.79907013610426],\n              [59.93280724471549, 50.842194118851864],\n              [59.642282342370606, 50.545442206415714],\n              [58.36332, 51.06364],\n              [56.77798000000013, 51.04355],\n              [55.71694, 50.62171000000018],\n              [54.532878452376224, 51.02623973245932],\n              [52.32872358583097, 51.718652248738124],\n              [50.76664839051216, 51.6927623561599],\n              [48.70238162618102, 50.60512848571284],\n              [48.57784142435753, 49.87475962991567],\n              [47.54948042174931, 50.454698391311126],\n              [46.75159630716274, 49.35600576435377],\n              [47.04367150247651, 49.152038886097614],\n              [46.46644575377627, 48.39415233010493],\n              [47.31524000000013, 47.7158500000001],\n              [48.05725, 47.74377],\n              [48.694733514201744, 47.07562816017793],\n              [48.59325000000018, 46.56104],\n              [49.10116000000011, 46.399330000000134]\n            ]\n          ],\n          [\n            [\n              [93.77766, 81.0246],\n              [95.940895, 81.2504],\n              [97.88385, 80.746975],\n              [100.186655, 79.780135],\n              [99.93976, 78.88094],\n              [97.75794, 78.7562],\n              [94.97259, 79.044745],\n              [93.31288, 79.4265],\n              [92.5454, 80.14379],\n              [91.18107, 80.34146],\n              [93.77766, 81.0246]\n            ]\n          ],\n          [\n            [\n              [102.837815, 79.28129],\n              [105.37243, 78.71334],\n              [105.07547, 78.30689],\n              [99.43814, 77.921],\n              [101.2649, 79.23399],\n              [102.08635, 79.34641],\n              [102.837815, 79.28129]\n            ]\n          ],\n          [\n            [\n              [138.831075, 76.13676],\n              [141.471615, 76.09289],\n              [145.086285, 75.562625],\n              [144.3, 74.82],\n              [140.61381, 74.84768],\n              [138.95544, 74.61148],\n              [136.97439, 75.26167],\n              [137.51176, 75.94917],\n              [138.831075, 76.13676]\n            ]\n          ],\n          [\n            [\n              [148.22223, 75.345845],\n              [150.73167, 75.08406],\n              [149.575925, 74.68892],\n              [147.977465, 74.778355],\n              [146.11919, 75.17298],\n              [146.358485, 75.49682],\n              [148.22223, 75.345845]\n            ]\n          ],\n          [\n            [\n              [139.86312, 73.36983],\n              [140.81171, 73.76506],\n              [142.06207, 73.85758],\n              [143.48283, 73.47525],\n              [143.60385, 73.21244],\n              [142.08763, 73.20544],\n              [140.038155, 73.31692],\n              [139.86312, 73.36983]\n            ]\n          ],\n          [\n            [\n              [44.84695804218114, 80.58980988231714],\n              [46.79913862487123, 80.77191762971368],\n              [48.31847741068461, 80.78400991486998],\n              [48.52280602396667, 80.51456899690017],\n              [49.097189568890855, 80.7539859077084],\n              [50.03976769389462, 80.91888540315178],\n              [51.522932977103665, 80.69972565380193],\n              [51.13618655783128, 80.54728017854093],\n              [49.79368452332071, 80.4154277615482],\n              [48.89441124857755, 80.33956675894375],\n              [48.75493655782177, 80.17546824820089],\n              [47.58611901224418, 80.01018117951533],\n              [46.50282596210963, 80.2472468126543],\n              [47.07245527526294, 80.55942414012951],\n              [44.84695804218114, 80.58980988231714]\n            ]\n          ],\n          [\n            [\n              [22.731098667092652, 54.327536932993326],\n              [20.892244500418627, 54.31252492941253],\n              [19.660640089606403, 54.42608388937393],\n              [19.888481479581287, 54.86616038677151],\n              [21.268448927503467, 55.190481675835315],\n              [22.315723504330577, 55.015298570365864],\n              [22.75776370615526, 54.85657440858138],\n              [22.65105187347254, 54.582740993866736],\n              [22.731098667092652, 54.327536932993326]\n            ]\n          ],\n          [\n            [\n              [53.50828982932515, 73.7498139513002],\n              [55.90245893740766, 74.62748647734536],\n              [55.631932814359686, 75.08141225859718],\n              [57.86864383324885, 75.60939036732326],\n              [61.170044386647476, 76.25188345000812],\n              [64.49836836127017, 76.43905548776927],\n              [66.21097700385513, 76.80978221303117],\n              [68.1570597675348, 76.93969676381293],\n              [68.85221113472508, 76.5448113064546],\n              [68.1805725442276, 76.23364166940907],\n              [64.63732628770302, 75.73775462513625],\n              [61.58350752141476, 75.26088450794684],\n              [58.47708214705335, 74.30905630156285],\n              [56.98678551618803, 73.33304352486623],\n              [55.419335971910925, 72.37126760526603],\n              [55.62283776227633, 71.54059479439032],\n              [57.535692579992315, 70.72046397570212],\n              [56.94497928246388, 70.63274323188666],\n              [53.67737511578417, 70.76265778266846],\n              [53.412016635965394, 71.20666168892022],\n              [51.601894565645665, 71.47475901965045],\n              [51.455753615124216, 72.01488108996513],\n              [52.47827518088354, 72.22944163684097],\n              [52.44416873557088, 72.77473135038481],\n              [54.42761355979758, 73.6275475124976],\n              [53.50828982932515, 73.7498139513002]\n            ]\n          ],\n          [\n            [\n              [142.91461551327654, 53.704577541714784],\n              [143.2608476096321, 52.74076040303906],\n              [143.23526777564763, 51.75666026468876],\n              [143.64800744036285, 50.747600409541505],\n              [144.6541475770856, 48.97639069273754],\n              [143.1739278505172, 49.306551418650315],\n              [142.55866824765013, 47.86157501890495],\n              [143.53349246640403, 46.83672801369252],\n              [143.50527713437265, 46.137907619809525],\n              [142.74770063697383, 46.74076487892651],\n              [142.09203006405454, 45.966755276058834],\n              [141.906925083585, 46.80592886004656],\n              [142.01844282447087, 47.78013296161296],\n              [141.90444461483503, 48.85918854429957],\n              [142.1358000022057, 49.61516307229739],\n              [142.17998335181528, 50.9523424342819],\n              [141.59407596249002, 51.9354348822025],\n              [141.6825460145737, 53.301966457728795],\n              [142.60693403541075, 53.762145087287934],\n              [142.20974897681543, 54.225475979216874],\n              [142.65478641171302, 54.36588084575389],\n              [142.91461551327654, 53.704577541714784]\n            ]\n          ],\n          [\n            [\n              [-174.92825, 67.20589],\n              [-175.01425, 66.58435],\n              [-174.33983, 66.33556],\n              [-174.57182, 67.06219],\n              [-171.85731, 66.91308],\n              [-169.89958, 65.97724],\n              [-170.89107, 65.54139],\n              [-172.53025, 65.43791],\n              [-172.555, 64.46079],\n              [-172.95533, 64.25269],\n              [-173.89184, 64.2826],\n              [-174.65392, 64.63125],\n              [-175.98353, 64.92288],\n              [-176.20716, 65.35667],\n              [-177.22266, 65.52024],\n              [-178.35993, 65.39052],\n              [-178.90332, 65.74044],\n              [-178.68611, 66.11211],\n              [-179.88377, 65.87456],\n              [-179.43268, 65.40411],\n              [-180, 64.9797087021984],\n              [-180, 68.96363636363635],\n              [-177.55, 68.2],\n              [-174.92825, 67.20589]\n            ]\n          ],\n          [\n            [\n              [-178.69378, 70.89302],\n              [-180, 70.83219920854673],\n              [-180, 71.51571433642827],\n              [-179.871875, 71.55762],\n              [-179.02433, 71.55553],\n              [-177.577945, 71.26948],\n              [-177.663575, 71.13277],\n              [-178.69378, 70.89302]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Czechia\",\n        \"sov_a3\": \"CZE\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Czechia\",\n        \"adm0_a3\": \"CZE\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Czechia\",\n        \"gu_a3\": \"CZE\",\n        \"su_dif\": 0,\n        \"subunit\": \"Czechia\",\n        \"su_a3\": \"CZE\",\n        \"brk_diff\": 0,\n        \"name\": \"Czechia\",\n        \"name_long\": \"Czech Republic\",\n        \"brk_a3\": \"CZE\",\n        \"brk_name\": \"Czechia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Cz.\",\n        \"postal\": \"CZ\",\n        \"formal_en\": \"Czech Republic\",\n        \"formal_fr\": \"la République tchèque\",\n        \"name_ciawf\": \"Czechia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Czechia\",\n        \"name_alt\": \"Česko\",\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 6,\n        \"pop_est\": 10669709,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 250680,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"EZ\",\n        \"iso_a2\": \"CZ\",\n        \"iso_a2_eh\": \"CZ\",\n        \"iso_a3\": \"CZE\",\n        \"iso_a3_eh\": \"CZE\",\n        \"iso_n3\": \"203\",\n        \"iso_n3_eh\": \"203\",\n        \"un_a3\": \"203\",\n        \"wb_a2\": \"CZ\",\n        \"wb_a3\": \"CZE\",\n        \"woe_id\": 23424810,\n        \"woe_id_eh\": 23424810,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"CZE\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"CZE\",\n        \"adm0_a3_us\": \"CZE\",\n        \"adm0_a3_fr\": \"CZE\",\n        \"adm0_a3_ru\": \"CZE\",\n        \"adm0_a3_es\": \"CZE\",\n        \"adm0_a3_cn\": \"CZE\",\n        \"adm0_a3_tw\": \"CZE\",\n        \"adm0_a3_in\": \"CZE\",\n        \"adm0_a3_np\": \"CZE\",\n        \"adm0_a3_pk\": \"CZE\",\n        \"adm0_a3_de\": \"CZE\",\n        \"adm0_a3_gb\": \"CZE\",\n        \"adm0_a3_br\": \"CZE\",\n        \"adm0_a3_il\": \"CZE\",\n        \"adm0_a3_ps\": \"CZE\",\n        \"adm0_a3_sa\": \"CZE\",\n        \"adm0_a3_eg\": \"CZE\",\n        \"adm0_a3_ma\": \"CZE\",\n        \"adm0_a3_pt\": \"CZE\",\n        \"adm0_a3_ar\": \"CZE\",\n        \"adm0_a3_jp\": \"CZE\",\n        \"adm0_a3_ko\": \"CZE\",\n        \"adm0_a3_vn\": \"CZE\",\n        \"adm0_a3_tr\": \"CZE\",\n        \"adm0_a3_id\": \"CZE\",\n        \"adm0_a3_pl\": \"CZE\",\n        \"adm0_a3_gr\": \"CZE\",\n        \"adm0_a3_it\": \"CZE\",\n        \"adm0_a3_nl\": \"CZE\",\n        \"adm0_a3_se\": \"CZE\",\n        \"adm0_a3_bd\": \"CZE\",\n        \"adm0_a3_ua\": \"CZE\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Eastern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 7,\n        \"long_len\": 14,\n        \"abbrev_len\": 3,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 15.377555,\n        \"label_y\": 49.882364,\n        \"ne_id\": 1159320535,\n        \"wikidataid\": \"Q213\",\n        \"name_ar\": \"التشيك\",\n        \"name_bn\": \"চেক প্রজাতন্ত্র\",\n        \"name_de\": \"Tschechien\",\n        \"name_en\": \"Czech Republic\",\n        \"name_es\": \"República Checa\",\n        \"name_fa\": \"جمهوری چک\",\n        \"name_fr\": \"Tchéquie\",\n        \"name_el\": \"Τσεχία\",\n        \"name_he\": \"צ'כיה\",\n        \"name_hi\": \"चेक गणराज्य\",\n        \"name_hu\": \"Csehország\",\n        \"name_id\": \"Republik Ceko\",\n        \"name_it\": \"Repubblica Ceca\",\n        \"name_ja\": \"チェコ\",\n        \"name_ko\": \"체코\",\n        \"name_nl\": \"Tsjechië\",\n        \"name_pl\": \"Czechy\",\n        \"name_pt\": \"Chéquia\",\n        \"name_ru\": \"Чехия\",\n        \"name_sv\": \"Tjeckien\",\n        \"name_tr\": \"Çek Cumhuriyeti\",\n        \"name_uk\": \"Чехія\",\n        \"name_ur\": \"چیک جمہوریہ\",\n        \"name_vi\": \"Cộng hòa Séc\",\n        \"name_zh\": \"捷克\",\n        \"name_zht\": \"捷克共和國\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"CZE.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [15.01699588385867, 51.10667409932158],\n            [15.490972120839729, 50.78472992614321],\n            [16.23862674323857, 50.69773265237984],\n            [16.176253289462267, 50.42260732685791],\n            [16.719475945714436, 50.21574656839354],\n            [16.86876915860566, 50.47397370055603],\n            [17.55456709155112, 50.36214590107642],\n            [17.64944502123899, 50.049038397819956],\n            [18.392913852622172, 49.98862864847075],\n            [18.853144158613617, 49.49622976337764],\n            [18.554971144289482, 49.495015367218784],\n            [18.399993523846177, 49.31500051533004],\n            [18.170498488037964, 49.271514797556435],\n            [18.104972771891852, 49.04398346617531],\n            [17.913511590250465, 48.996492824899086],\n            [17.88648481616181, 48.90347524677371],\n            [17.545006951577108, 48.80001902932537],\n            [17.101984897538898, 48.816968899117114],\n            [16.960288120194576, 48.5969823268506],\n            [16.499282667718774, 48.78580801044511],\n            [16.02964725105022, 48.73389903420793],\n            [15.253415561593982, 49.03907420510758],\n            [14.901447381254057, 48.964401760445824],\n            [14.338897739324722, 48.55530528420721],\n            [13.595945672264437, 48.87717194273715],\n            [13.031328973043431, 49.30706818297324],\n            [12.521024204161193, 49.547415269562734],\n            [12.415190870827445, 49.96912079528057],\n            [12.240111118222558, 50.266337795607285],\n            [12.966836785543194, 50.484076443069085],\n            [13.338131951560285, 50.73323436136435],\n            [14.056227654688172, 50.9269176295943],\n            [14.307013380600637, 51.117267767941414],\n            [14.570718214586066, 51.002339382524276],\n            [15.01699588385867, 51.10667409932158]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Germany\",\n        \"sov_a3\": \"DEU\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Germany\",\n        \"adm0_a3\": \"DEU\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Germany\",\n        \"gu_a3\": \"DEU\",\n        \"su_dif\": 0,\n        \"subunit\": \"Germany\",\n        \"su_a3\": \"DEU\",\n        \"brk_diff\": 0,\n        \"name\": \"Germany\",\n        \"name_long\": \"Germany\",\n        \"brk_a3\": \"DEU\",\n        \"brk_name\": \"Germany\",\n        \"brk_group\": null,\n        \"abbrev\": \"Ger.\",\n        \"postal\": \"D\",\n        \"formal_en\": \"Federal Republic of Germany\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Germany\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Germany\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 1,\n        \"pop_est\": 83132799,\n        \"pop_rank\": 16,\n        \"pop_year\": 2019,\n        \"gdp_md\": 3861123,\n        \"gdp_year\": 2019,\n        \"economy\": \"1. Developed region: G7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"GM\",\n        \"iso_a2\": \"DE\",\n        \"iso_a2_eh\": \"DE\",\n        \"iso_a3\": \"DEU\",\n        \"iso_a3_eh\": \"DEU\",\n        \"iso_n3\": \"276\",\n        \"iso_n3_eh\": \"276\",\n        \"un_a3\": \"276\",\n        \"wb_a2\": \"DE\",\n        \"wb_a3\": \"DEU\",\n        \"woe_id\": 23424829,\n        \"woe_id_eh\": 23424829,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"DEU\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"DEU\",\n        \"adm0_a3_us\": \"DEU\",\n        \"adm0_a3_fr\": \"DEU\",\n        \"adm0_a3_ru\": \"DEU\",\n        \"adm0_a3_es\": \"DEU\",\n        \"adm0_a3_cn\": \"DEU\",\n        \"adm0_a3_tw\": \"DEU\",\n        \"adm0_a3_in\": \"DEU\",\n        \"adm0_a3_np\": \"DEU\",\n        \"adm0_a3_pk\": \"DEU\",\n        \"adm0_a3_de\": \"DEU\",\n        \"adm0_a3_gb\": \"DEU\",\n        \"adm0_a3_br\": \"DEU\",\n        \"adm0_a3_il\": \"DEU\",\n        \"adm0_a3_ps\": \"DEU\",\n        \"adm0_a3_sa\": \"DEU\",\n        \"adm0_a3_eg\": \"DEU\",\n        \"adm0_a3_ma\": \"DEU\",\n        \"adm0_a3_pt\": \"DEU\",\n        \"adm0_a3_ar\": \"DEU\",\n        \"adm0_a3_jp\": \"DEU\",\n        \"adm0_a3_ko\": \"DEU\",\n        \"adm0_a3_vn\": \"DEU\",\n        \"adm0_a3_tr\": \"DEU\",\n        \"adm0_a3_id\": \"DEU\",\n        \"adm0_a3_pl\": \"DEU\",\n        \"adm0_a3_gr\": \"DEU\",\n        \"adm0_a3_it\": \"DEU\",\n        \"adm0_a3_nl\": \"DEU\",\n        \"adm0_a3_se\": \"DEU\",\n        \"adm0_a3_bd\": \"DEU\",\n        \"adm0_a3_ua\": \"DEU\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Western Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 6.7,\n        \"label_x\": 9.678348,\n        \"label_y\": 50.961733,\n        \"ne_id\": 1159320539,\n        \"wikidataid\": \"Q183\",\n        \"name_ar\": \"ألمانيا\",\n        \"name_bn\": \"জার্মানি\",\n        \"name_de\": \"Deutschland\",\n        \"name_en\": \"Germany\",\n        \"name_es\": \"Alemania\",\n        \"name_fa\": \"آلمان\",\n        \"name_fr\": \"Allemagne\",\n        \"name_el\": \"Γερμανία\",\n        \"name_he\": \"גרמניה\",\n        \"name_hi\": \"जर्मनी\",\n        \"name_hu\": \"Németország\",\n        \"name_id\": \"Jerman\",\n        \"name_it\": \"Germania\",\n        \"name_ja\": \"ドイツ\",\n        \"name_ko\": \"독일\",\n        \"name_nl\": \"Duitsland\",\n        \"name_pl\": \"Niemcy\",\n        \"name_pt\": \"Alemanha\",\n        \"name_ru\": \"Германия\",\n        \"name_sv\": \"Tyskland\",\n        \"name_tr\": \"Almanya\",\n        \"name_uk\": \"Німеччина\",\n        \"name_ur\": \"جرمنی\",\n        \"name_vi\": \"Đức\",\n        \"name_zh\": \"德国\",\n        \"name_zht\": \"德國\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"DEU.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [14.119686313542559, 53.75702912049104],\n            [14.353315463934138, 53.24817129171297],\n            [14.074521111719434, 52.98126251892535],\n            [14.437599725002201, 52.62485016540839],\n            [14.685026482815687, 52.0899474147552],\n            [14.607098422919535, 51.74518809671997],\n            [15.01699588385867, 51.10667409932158],\n            [14.570718214586066, 51.002339382524276],\n            [14.307013380600637, 51.117267767941414],\n            [14.056227654688172, 50.9269176295943],\n            [13.338131951560285, 50.73323436136435],\n            [12.966836785543194, 50.484076443069085],\n            [12.240111118222558, 50.266337795607285],\n            [12.415190870827445, 49.96912079528057],\n            [12.521024204161193, 49.547415269562734],\n            [13.031328973043431, 49.30706818297324],\n            [13.595945672264437, 48.87717194273715],\n            [13.243357374737, 48.416114813829054],\n            [12.884102817443875, 48.28914581968786],\n            [13.02585127122049, 47.63758352313583],\n            [12.932626987365948, 47.467645575544],\n            [12.620759718484493, 47.67238760028441],\n            [12.141357456112788, 47.703083401065776],\n            [11.426414015354737, 47.523766181012974],\n            [10.544504021861599, 47.5663992376538],\n            [10.402083774465211, 47.30248769793916],\n            [9.89606814946319, 47.580196845075704],\n            [9.59422610844635, 47.52505809182027],\n            [8.522611932009767, 47.83082754169129],\n            [8.317301466514095, 47.61357982033627],\n            [7.466759067422231, 47.62058197691181],\n            [7.593676385131062, 48.33301911070372],\n            [8.099278598674744, 49.01778351500333],\n            [6.658229607783568, 49.20195831969157],\n            [6.186320428094177, 49.463802802114515],\n            [6.242751092156993, 49.90222565367873],\n            [6.043073357781111, 50.128051662794235],\n            [6.15665815595878, 50.80372101501058],\n            [5.988658074577813, 51.851615709025054],\n            [6.589396599970826, 51.852029120483394],\n            [6.842869500362383, 52.22844025329755],\n            [7.092053256873896, 53.144043280644894],\n            [6.905139601274129, 53.48216217713065],\n            [7.100424838905269, 53.69393219666267],\n            [7.936239454793963, 53.74829580343379],\n            [8.121706170289485, 53.52779246684429],\n            [8.800734490604668, 54.020785630908904],\n            [8.57211795414537, 54.39564647075406],\n            [8.526229282270208, 54.96274363872516],\n            [9.282048780971138, 54.830865383516176],\n            [9.921906365609118, 54.98310415304803],\n            [9.9395797054529, 54.596641954153256],\n            [10.950112338920519, 54.363607082733154],\n            [10.93946699386845, 54.00869334575259],\n            [11.956252475643282, 54.19648550070116],\n            [12.518440382546714, 54.470370591847995],\n            [13.647467075259499, 54.0755109727059],\n            [14.119686313542559, 53.75702912049104]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Estonia\",\n        \"sov_a3\": \"EST\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Estonia\",\n        \"adm0_a3\": \"EST\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Estonia\",\n        \"gu_a3\": \"EST\",\n        \"su_dif\": 0,\n        \"subunit\": \"Estonia\",\n        \"su_a3\": \"EST\",\n        \"brk_diff\": 0,\n        \"name\": \"Estonia\",\n        \"name_long\": \"Estonia\",\n        \"brk_a3\": \"EST\",\n        \"brk_name\": \"Estonia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Est.\",\n        \"postal\": \"EST\",\n        \"formal_en\": \"Republic of Estonia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Estonia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Estonia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 10,\n        \"pop_est\": 1326590,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 31471,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"EN\",\n        \"iso_a2\": \"EE\",\n        \"iso_a2_eh\": \"EE\",\n        \"iso_a3\": \"EST\",\n        \"iso_a3_eh\": \"EST\",\n        \"iso_n3\": \"233\",\n        \"iso_n3_eh\": \"233\",\n        \"un_a3\": \"233\",\n        \"wb_a2\": \"EE\",\n        \"wb_a3\": \"EST\",\n        \"woe_id\": 23424805,\n        \"woe_id_eh\": 23424805,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"EST\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"EST\",\n        \"adm0_a3_us\": \"EST\",\n        \"adm0_a3_fr\": \"EST\",\n        \"adm0_a3_ru\": \"EST\",\n        \"adm0_a3_es\": \"EST\",\n        \"adm0_a3_cn\": \"EST\",\n        \"adm0_a3_tw\": \"EST\",\n        \"adm0_a3_in\": \"EST\",\n        \"adm0_a3_np\": \"EST\",\n        \"adm0_a3_pk\": \"EST\",\n        \"adm0_a3_de\": \"EST\",\n        \"adm0_a3_gb\": \"EST\",\n        \"adm0_a3_br\": \"EST\",\n        \"adm0_a3_il\": \"EST\",\n        \"adm0_a3_ps\": \"EST\",\n        \"adm0_a3_sa\": \"EST\",\n        \"adm0_a3_eg\": \"EST\",\n        \"adm0_a3_ma\": \"EST\",\n        \"adm0_a3_pt\": \"EST\",\n        \"adm0_a3_ar\": \"EST\",\n        \"adm0_a3_jp\": \"EST\",\n        \"adm0_a3_ko\": \"EST\",\n        \"adm0_a3_vn\": \"EST\",\n        \"adm0_a3_tr\": \"EST\",\n        \"adm0_a3_id\": \"EST\",\n        \"adm0_a3_pl\": \"EST\",\n        \"adm0_a3_gr\": \"EST\",\n        \"adm0_a3_it\": \"EST\",\n        \"adm0_a3_nl\": \"EST\",\n        \"adm0_a3_se\": \"EST\",\n        \"adm0_a3_bd\": \"EST\",\n        \"adm0_a3_ua\": \"EST\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Northern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 25.867126,\n        \"label_y\": 58.724865,\n        \"ne_id\": 1159320615,\n        \"wikidataid\": \"Q191\",\n        \"name_ar\": \"إستونيا\",\n        \"name_bn\": \"এস্তোনিয়া\",\n        \"name_de\": \"Estland\",\n        \"name_en\": \"Estonia\",\n        \"name_es\": \"Estonia\",\n        \"name_fa\": \"استونی\",\n        \"name_fr\": \"Estonie\",\n        \"name_el\": \"Εσθονία\",\n        \"name_he\": \"אסטוניה\",\n        \"name_hi\": \"एस्टोनिया\",\n        \"name_hu\": \"Észtország\",\n        \"name_id\": \"Estonia\",\n        \"name_it\": \"Estonia\",\n        \"name_ja\": \"エストニア\",\n        \"name_ko\": \"에스토니아\",\n        \"name_nl\": \"Estland\",\n        \"name_pl\": \"Estonia\",\n        \"name_pt\": \"Estónia\",\n        \"name_ru\": \"Эстония\",\n        \"name_sv\": \"Estland\",\n        \"name_tr\": \"Estonya\",\n        \"name_uk\": \"Естонія\",\n        \"name_ur\": \"استونیا\",\n        \"name_vi\": \"Estonia\",\n        \"name_zh\": \"爱沙尼亚\",\n        \"name_zht\": \"愛沙尼亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"EST.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [27.981126857000987, 59.47537333432527],\n            [27.98112, 59.47537000000011],\n            [28.13169925305175, 59.300825100330925],\n            [27.42015000000015, 58.72457000000014],\n            [27.71668582531572, 57.79189911562436],\n            [27.288184848751513, 57.47452830670383],\n            [26.463532342237787, 57.47638865826633],\n            [25.60280968598437, 57.84752879498657],\n            [25.16459354014927, 57.97015696881519],\n            [24.312862583114622, 57.79342357037697],\n            [24.42892785004216, 58.38341339785329],\n            [24.061198357853186, 58.25737457949341],\n            [23.426560092876684, 58.612753404364625],\n            [23.339795363058645, 59.187240302153384],\n            [24.604214308376186, 59.46585378685502],\n            [25.86418908051664, 59.61109039981133],\n            [26.949135776484525, 59.445803331125774],\n            [27.981114129353244, 59.475388088612874],\n            [27.981126857000987, 59.47537333432527]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Latvia\",\n        \"sov_a3\": \"LVA\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Latvia\",\n        \"adm0_a3\": \"LVA\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Latvia\",\n        \"gu_a3\": \"LVA\",\n        \"su_dif\": 0,\n        \"subunit\": \"Latvia\",\n        \"su_a3\": \"LVA\",\n        \"brk_diff\": 0,\n        \"name\": \"Latvia\",\n        \"name_long\": \"Latvia\",\n        \"brk_a3\": \"LVA\",\n        \"brk_name\": \"Latvia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Lat.\",\n        \"postal\": \"LV\",\n        \"formal_en\": \"Republic of Latvia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Latvia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Latvia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 7,\n        \"mapcolor9\": 6,\n        \"mapcolor13\": 13,\n        \"pop_est\": 1912789,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 34102,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"LG\",\n        \"iso_a2\": \"LV\",\n        \"iso_a2_eh\": \"LV\",\n        \"iso_a3\": \"LVA\",\n        \"iso_a3_eh\": \"LVA\",\n        \"iso_n3\": \"428\",\n        \"iso_n3_eh\": \"428\",\n        \"un_a3\": \"428\",\n        \"wb_a2\": \"LV\",\n        \"wb_a3\": \"LVA\",\n        \"woe_id\": 23424874,\n        \"woe_id_eh\": 23424874,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"LVA\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"LVA\",\n        \"adm0_a3_us\": \"LVA\",\n        \"adm0_a3_fr\": \"LVA\",\n        \"adm0_a3_ru\": \"LVA\",\n        \"adm0_a3_es\": \"LVA\",\n        \"adm0_a3_cn\": \"LVA\",\n        \"adm0_a3_tw\": \"LVA\",\n        \"adm0_a3_in\": \"LVA\",\n        \"adm0_a3_np\": \"LVA\",\n        \"adm0_a3_pk\": \"LVA\",\n        \"adm0_a3_de\": \"LVA\",\n        \"adm0_a3_gb\": \"LVA\",\n        \"adm0_a3_br\": \"LVA\",\n        \"adm0_a3_il\": \"LVA\",\n        \"adm0_a3_ps\": \"LVA\",\n        \"adm0_a3_sa\": \"LVA\",\n        \"adm0_a3_eg\": \"LVA\",\n        \"adm0_a3_ma\": \"LVA\",\n        \"adm0_a3_pt\": \"LVA\",\n        \"adm0_a3_ar\": \"LVA\",\n        \"adm0_a3_jp\": \"LVA\",\n        \"adm0_a3_ko\": \"LVA\",\n        \"adm0_a3_vn\": \"LVA\",\n        \"adm0_a3_tr\": \"LVA\",\n        \"adm0_a3_id\": \"LVA\",\n        \"adm0_a3_pl\": \"LVA\",\n        \"adm0_a3_gr\": \"LVA\",\n        \"adm0_a3_it\": \"LVA\",\n        \"adm0_a3_nl\": \"LVA\",\n        \"adm0_a3_se\": \"LVA\",\n        \"adm0_a3_bd\": \"LVA\",\n        \"adm0_a3_ua\": \"LVA\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Northern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 25.458723,\n        \"label_y\": 57.066872,\n        \"ne_id\": 1159321033,\n        \"wikidataid\": \"Q211\",\n        \"name_ar\": \"لاتفيا\",\n        \"name_bn\": \"লাতভিয়া\",\n        \"name_de\": \"Lettland\",\n        \"name_en\": \"Latvia\",\n        \"name_es\": \"Letonia\",\n        \"name_fa\": \"لتونی\",\n        \"name_fr\": \"Lettonie\",\n        \"name_el\": \"Λετονία\",\n        \"name_he\": \"לטביה\",\n        \"name_hi\": \"लातविया\",\n        \"name_hu\": \"Lettország\",\n        \"name_id\": \"Latvia\",\n        \"name_it\": \"Lettonia\",\n        \"name_ja\": \"ラトビア\",\n        \"name_ko\": \"라트비아\",\n        \"name_nl\": \"Letland\",\n        \"name_pl\": \"Łotwa\",\n        \"name_pt\": \"Letónia\",\n        \"name_ru\": \"Латвия\",\n        \"name_sv\": \"Lettland\",\n        \"name_tr\": \"Letonya\",\n        \"name_uk\": \"Латвія\",\n        \"name_ur\": \"لٹویا\",\n        \"name_vi\": \"Latvia\",\n        \"name_zh\": \"拉脱维亚\",\n        \"name_zht\": \"拉脫維亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"LVA.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [27.288184848751513, 57.47452830670383],\n            [27.77001590344093, 57.24425812441123],\n            [27.855282016722526, 56.75932648378429],\n            [28.17670942557794, 56.16912995057879],\n            [27.10245975109453, 55.783313707087686],\n            [26.494331495883756, 55.615106919977634],\n            [25.533046502390334, 56.100296942766036],\n            [25.000934279080894, 56.16453074810484],\n            [24.86068444184076, 56.37252838807963],\n            [23.878263787539964, 56.27367137310527],\n            [22.201156853939494, 56.33780182557949],\n            [21.055800408622417, 56.031076361711065],\n            [21.090423618257972, 56.78387278912294],\n            [21.581866489353672, 57.411870632549935],\n            [22.52434126149288, 57.75337433535076],\n            [23.318452996522097, 57.00623647727487],\n            [24.12072960785343, 57.02569265403277],\n            [24.312862583114622, 57.79342357037697],\n            [25.16459354014927, 57.97015696881519],\n            [25.60280968598437, 57.84752879498657],\n            [26.463532342237787, 57.47638865826633],\n            [27.288184848751513, 57.47452830670383]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Norway\",\n        \"sov_a3\": \"NOR\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": null,\n        \"admin\": \"Norway\",\n        \"adm0_a3\": \"NOR\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Norway\",\n        \"gu_a3\": \"NOR\",\n        \"su_dif\": 0,\n        \"subunit\": \"Norway\",\n        \"su_a3\": \"NOR\",\n        \"brk_diff\": 0,\n        \"name\": \"Norway\",\n        \"name_long\": \"Norway\",\n        \"brk_a3\": \"NOR\",\n        \"brk_name\": \"Norway\",\n        \"brk_group\": null,\n        \"abbrev\": \"Nor.\",\n        \"postal\": \"N\",\n        \"formal_en\": \"Kingdom of Norway\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Norway\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Norway\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 8,\n        \"mapcolor13\": 12,\n        \"pop_est\": 5347896,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 403336,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"-99\",\n        \"iso_a2\": \"-99\",\n        \"iso_a2_eh\": \"NO\",\n        \"iso_a3\": \"-99\",\n        \"iso_a3_eh\": \"NOR\",\n        \"iso_n3\": \"-99\",\n        \"iso_n3_eh\": \"578\",\n        \"un_a3\": \"-99\",\n        \"wb_a2\": \"-99\",\n        \"wb_a3\": \"-99\",\n        \"woe_id\": -90,\n        \"woe_id_eh\": 23424910,\n        \"woe_note\": \"Does not include Svalbard, Jan Mayen, or Bouvet Islands (28289410).\",\n        \"adm0_iso\": \"NOR\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"NOR\",\n        \"adm0_a3_us\": \"NOR\",\n        \"adm0_a3_fr\": \"NOR\",\n        \"adm0_a3_ru\": \"NOR\",\n        \"adm0_a3_es\": \"NOR\",\n        \"adm0_a3_cn\": \"NOR\",\n        \"adm0_a3_tw\": \"NOR\",\n        \"adm0_a3_in\": \"NOR\",\n        \"adm0_a3_np\": \"NOR\",\n        \"adm0_a3_pk\": \"NOR\",\n        \"adm0_a3_de\": \"NOR\",\n        \"adm0_a3_gb\": \"NOR\",\n        \"adm0_a3_br\": \"NOR\",\n        \"adm0_a3_il\": \"NOR\",\n        \"adm0_a3_ps\": \"NOR\",\n        \"adm0_a3_sa\": \"NOR\",\n        \"adm0_a3_eg\": \"NOR\",\n        \"adm0_a3_ma\": \"NOR\",\n        \"adm0_a3_pt\": \"NOR\",\n        \"adm0_a3_ar\": \"NOR\",\n        \"adm0_a3_jp\": \"NOR\",\n        \"adm0_a3_ko\": \"NOR\",\n        \"adm0_a3_vn\": \"NOR\",\n        \"adm0_a3_tr\": \"NOR\",\n        \"adm0_a3_id\": \"NOR\",\n        \"adm0_a3_pl\": \"NOR\",\n        \"adm0_a3_gr\": \"NOR\",\n        \"adm0_a3_it\": \"NOR\",\n        \"adm0_a3_nl\": \"NOR\",\n        \"adm0_a3_se\": \"NOR\",\n        \"adm0_a3_bd\": \"NOR\",\n        \"adm0_a3_ua\": \"NOR\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Northern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 7,\n        \"label_x\": 9.679975,\n        \"label_y\": 61.357092,\n        \"ne_id\": 1159321109,\n        \"wikidataid\": \"Q20\",\n        \"name_ar\": \"النرويج\",\n        \"name_bn\": \"নরওয়ে\",\n        \"name_de\": \"Norwegen\",\n        \"name_en\": \"Norway\",\n        \"name_es\": \"Noruega\",\n        \"name_fa\": \"نروژ\",\n        \"name_fr\": \"Norvège\",\n        \"name_el\": \"Νορβηγία\",\n        \"name_he\": \"נורווגיה\",\n        \"name_hi\": \"नॉर्वे\",\n        \"name_hu\": \"Norvégia\",\n        \"name_id\": \"Norwegia\",\n        \"name_it\": \"Norvegia\",\n        \"name_ja\": \"ノルウェー\",\n        \"name_ko\": \"노르웨이\",\n        \"name_nl\": \"Noorwegen\",\n        \"name_pl\": \"Norwegia\",\n        \"name_pt\": \"Noruega\",\n        \"name_ru\": \"Норвегия\",\n        \"name_sv\": \"Norge\",\n        \"name_tr\": \"Norveç\",\n        \"name_uk\": \"Норвегія\",\n        \"name_ur\": \"ناروے\",\n        \"name_vi\": \"Na Uy\",\n        \"name_zh\": \"挪威\",\n        \"name_zht\": \"挪威\",\n        \"fclass_iso\": \"Unrecognized\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Unrecognized\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"NOR.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [15.14282, 79.67431],\n              [15.52255, 80.01608],\n              [16.99085, 80.05086],\n              [18.25183, 79.70175],\n              [21.54383, 78.95611],\n              [19.02737, 78.5626],\n              [18.47172, 77.82669],\n              [17.59441, 77.63796],\n              [17.1182, 76.80941],\n              [15.91315, 76.77045],\n              [13.76259, 77.38035],\n              [14.66956, 77.73565],\n              [13.1706, 78.02493],\n              [11.22231, 78.8693],\n              [10.44453, 79.65239],\n              [13.17077, 80.01046],\n              [13.71852, 79.66039],\n              [15.14282, 79.67431]\n            ]\n          ],\n          [\n            [\n              [31.101042202597625, 69.55810108805622],\n              [29.39955, 69.15692000000013],\n              [28.591929559043194, 69.06477692328666],\n              [29.015572950971972, 69.76649119737799],\n              [27.732292107867863, 70.16419302029625],\n              [26.179622023226244, 69.82529897732614],\n              [25.689212680776365, 69.09211375596904],\n              [24.735679152126725, 68.64955678982146],\n              [23.66204959483076, 68.89124746365054],\n              [22.356237827247412, 68.84174144151491],\n              [21.244936150810673, 69.37044302029308],\n              [20.645592889089528, 69.10624726020087],\n              [20.025268995857886, 69.0651386583127],\n              [19.878559604581255, 68.40719432237258],\n              [17.993868442464333, 68.56739126247736],\n              [17.729181756265348, 68.01055186631628],\n              [16.768878614985482, 68.0139366726314],\n              [16.108712192456778, 67.30245555283689],\n              [15.108411492583002, 66.19386688909547],\n              [13.55568973150909, 64.78702769638151],\n              [13.919905226302204, 64.44542064071608],\n              [13.571916131248713, 64.04911408146971],\n              [12.579935336973934, 64.06621898055833],\n              [11.930569288794231, 63.12831757267698],\n              [11.992064243221563, 61.80036245385655],\n              [12.631146681375185, 61.293571682370136],\n              [12.3003658382749, 60.11793284773003],\n              [11.468271925511146, 59.43239329694604],\n              [11.027368605196868, 58.85614940045936],\n              [10.356556837616067, 59.469807033925356],\n              [8.382000359743586, 58.313288479233215],\n              [7.048748406613271, 58.078884182357285],\n              [5.665835402050419, 58.5881554225937],\n              [5.308234490590678, 59.663231919993834],\n              [4.992078077828978, 61.97099803328432],\n              [5.912900424837886, 62.614472968182724],\n              [8.553411085655739, 63.45400828719648],\n              [10.527709181366758, 64.4860383164975],\n              [12.358346795306373, 65.87972585719318],\n              [14.761145867581604, 67.81064158799516],\n              [16.435927361728943, 68.56320547146173],\n              [19.18402835457846, 69.81744415961778],\n              [21.378416375420585, 70.2551693793461],\n              [23.023742303161526, 70.2020718451662],\n              [24.546543409938465, 71.03049673123722],\n              [26.37004967622181, 70.98626170519539],\n              [28.165547316202943, 71.18547435168055],\n              [31.293418409965454, 70.4537877468599],\n              [30.005435011522792, 70.18625885688489],\n              [31.101042202597625, 69.55810108805622]\n            ]\n          ],\n          [\n            [\n              [27.407505730913446, 80.05640574820042],\n              [25.92465050629815, 79.51783397085451],\n              [23.024465773213617, 79.40001170522903],\n              [20.075188429451828, 79.56682322866722],\n              [19.897266473070914, 79.84236196564747],\n              [18.462263624757867, 79.85988027619443],\n              [17.368015170977458, 80.31889618602698],\n              [20.45599205901064, 80.59815562613225],\n              [21.907944777115404, 80.35767934846204],\n              [22.91925255706738, 80.65714427359343],\n              [25.447625359811866, 80.40734039989452],\n              [27.407505730913446, 80.05640574820042]\n            ]\n          ],\n          [\n            [\n              [24.72412, 77.85385],\n              [22.49032, 77.44493],\n              [20.72601, 77.67704],\n              [21.41611, 77.93504],\n              [20.8119, 78.25463],\n              [22.88426, 78.45494],\n              [23.28134, 78.07954],\n              [24.72412, 77.85385]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Sweden\",\n        \"sov_a3\": \"SWE\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Sweden\",\n        \"adm0_a3\": \"SWE\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Sweden\",\n        \"gu_a3\": \"SWE\",\n        \"su_dif\": 0,\n        \"subunit\": \"Sweden\",\n        \"su_a3\": \"SWE\",\n        \"brk_diff\": 0,\n        \"name\": \"Sweden\",\n        \"name_long\": \"Sweden\",\n        \"brk_a3\": \"SWE\",\n        \"brk_name\": \"Sweden\",\n        \"brk_group\": null,\n        \"abbrev\": \"Swe.\",\n        \"postal\": \"S\",\n        \"formal_en\": \"Kingdom of Sweden\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Sweden\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Sweden\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 4,\n        \"pop_est\": 10285453,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 530883,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"SW\",\n        \"iso_a2\": \"SE\",\n        \"iso_a2_eh\": \"SE\",\n        \"iso_a3\": \"SWE\",\n        \"iso_a3_eh\": \"SWE\",\n        \"iso_n3\": \"752\",\n        \"iso_n3_eh\": \"752\",\n        \"un_a3\": \"752\",\n        \"wb_a2\": \"SE\",\n        \"wb_a3\": \"SWE\",\n        \"woe_id\": 23424954,\n        \"woe_id_eh\": 23424954,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"SWE\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"SWE\",\n        \"adm0_a3_us\": \"SWE\",\n        \"adm0_a3_fr\": \"SWE\",\n        \"adm0_a3_ru\": \"SWE\",\n        \"adm0_a3_es\": \"SWE\",\n        \"adm0_a3_cn\": \"SWE\",\n        \"adm0_a3_tw\": \"SWE\",\n        \"adm0_a3_in\": \"SWE\",\n        \"adm0_a3_np\": \"SWE\",\n        \"adm0_a3_pk\": \"SWE\",\n        \"adm0_a3_de\": \"SWE\",\n        \"adm0_a3_gb\": \"SWE\",\n        \"adm0_a3_br\": \"SWE\",\n        \"adm0_a3_il\": \"SWE\",\n        \"adm0_a3_ps\": \"SWE\",\n        \"adm0_a3_sa\": \"SWE\",\n        \"adm0_a3_eg\": \"SWE\",\n        \"adm0_a3_ma\": \"SWE\",\n        \"adm0_a3_pt\": \"SWE\",\n        \"adm0_a3_ar\": \"SWE\",\n        \"adm0_a3_jp\": \"SWE\",\n        \"adm0_a3_ko\": \"SWE\",\n        \"adm0_a3_vn\": \"SWE\",\n        \"adm0_a3_tr\": \"SWE\",\n        \"adm0_a3_id\": \"SWE\",\n        \"adm0_a3_pl\": \"SWE\",\n        \"adm0_a3_gr\": \"SWE\",\n        \"adm0_a3_it\": \"SWE\",\n        \"adm0_a3_nl\": \"SWE\",\n        \"adm0_a3_se\": \"SWE\",\n        \"adm0_a3_bd\": \"SWE\",\n        \"adm0_a3_ua\": \"SWE\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Northern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2,\n        \"max_label\": 7,\n        \"label_x\": 19.01705,\n        \"label_y\": 65.85918,\n        \"ne_id\": 1159321287,\n        \"wikidataid\": \"Q34\",\n        \"name_ar\": \"السويد\",\n        \"name_bn\": \"সুইডেন\",\n        \"name_de\": \"Schweden\",\n        \"name_en\": \"Sweden\",\n        \"name_es\": \"Suecia\",\n        \"name_fa\": \"سوئد\",\n        \"name_fr\": \"Suède\",\n        \"name_el\": \"Σουηδία\",\n        \"name_he\": \"שוודיה\",\n        \"name_hi\": \"स्वीडन\",\n        \"name_hu\": \"Svédország\",\n        \"name_id\": \"Swedia\",\n        \"name_it\": \"Svezia\",\n        \"name_ja\": \"スウェーデン\",\n        \"name_ko\": \"스웨덴\",\n        \"name_nl\": \"Zweden\",\n        \"name_pl\": \"Szwecja\",\n        \"name_pt\": \"Suécia\",\n        \"name_ru\": \"Швеция\",\n        \"name_sv\": \"Sverige\",\n        \"name_tr\": \"İsveç\",\n        \"name_uk\": \"Швеція\",\n        \"name_ur\": \"سویڈن\",\n        \"name_vi\": \"Thụy Điển\",\n        \"name_zh\": \"瑞典\",\n        \"name_zht\": \"瑞典\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"SWE.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [11.027368605196868, 58.85614940045936],\n            [11.468271925511146, 59.43239329694604],\n            [12.3003658382749, 60.11793284773003],\n            [12.631146681375185, 61.293571682370136],\n            [11.992064243221563, 61.80036245385655],\n            [11.930569288794231, 63.12831757267698],\n            [12.579935336973934, 64.06621898055833],\n            [13.571916131248713, 64.04911408146971],\n            [13.919905226302204, 64.44542064071608],\n            [13.55568973150909, 64.78702769638151],\n            [15.108411492583002, 66.19386688909547],\n            [16.108712192456778, 67.30245555283689],\n            [16.768878614985482, 68.0139366726314],\n            [17.729181756265348, 68.01055186631628],\n            [17.993868442464333, 68.56739126247736],\n            [19.878559604581255, 68.40719432237258],\n            [20.025268995857886, 69.0651386583127],\n            [20.645592889089528, 69.10624726020087],\n            [21.978534783626117, 68.6168456081807],\n            [23.53947309743444, 67.93600861273525],\n            [23.565879754335583, 66.39605093043743],\n            [23.903378533633802, 66.00692739527962],\n            [22.18317345550193, 65.72374054632017],\n            [21.21351687997722, 65.02600535751527],\n            [21.369631381930958, 64.41358795842429],\n            [19.77887576669022, 63.60955434839504],\n            [17.84777916837521, 62.74940013289681],\n            [17.119554884518124, 61.34116567651097],\n            [17.83134606290639, 60.63658336042741],\n            [18.78772179533209, 60.081914374422595],\n            [17.86922488777634, 58.9537661810587],\n            [16.829185011470088, 58.71982697207339],\n            [16.447709588291474, 57.041118069071885],\n            [15.879785597403783, 56.10430186626866],\n            [14.666681349352075, 56.200885118222175],\n            [14.100721062891465, 55.40778107362265],\n            [12.942910597392057, 55.36173737245058],\n            [12.625100538797028, 56.30708018658197],\n            [11.787942335668674, 57.44181712506307],\n            [11.027368605196868, 58.85614940045936]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Finland\",\n        \"sov_a3\": \"FI1\",\n        \"adm0_dif\": 1,\n        \"level\": 2,\n        \"type\": \"Country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Finland\",\n        \"adm0_a3\": \"FIN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Finland\",\n        \"gu_a3\": \"FIN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Finland\",\n        \"su_a3\": \"FIN\",\n        \"brk_diff\": 0,\n        \"name\": \"Finland\",\n        \"name_long\": \"Finland\",\n        \"brk_a3\": \"FIN\",\n        \"brk_name\": \"Finland\",\n        \"brk_group\": null,\n        \"abbrev\": \"Fin.\",\n        \"postal\": \"FIN\",\n        \"formal_en\": \"Republic of Finland\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Finland\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Finland\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 6,\n        \"pop_est\": 5520314,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 269296,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"FI\",\n        \"iso_a2\": \"FI\",\n        \"iso_a2_eh\": \"FI\",\n        \"iso_a3\": \"FIN\",\n        \"iso_a3_eh\": \"FIN\",\n        \"iso_n3\": \"246\",\n        \"iso_n3_eh\": \"246\",\n        \"un_a3\": \"246\",\n        \"wb_a2\": \"FI\",\n        \"wb_a3\": \"FIN\",\n        \"woe_id\": 23424812,\n        \"woe_id_eh\": 23424812,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"FIN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"FIN\",\n        \"adm0_a3_us\": \"FIN\",\n        \"adm0_a3_fr\": \"FIN\",\n        \"adm0_a3_ru\": \"FIN\",\n        \"adm0_a3_es\": \"FIN\",\n        \"adm0_a3_cn\": \"FIN\",\n        \"adm0_a3_tw\": \"FIN\",\n        \"adm0_a3_in\": \"FIN\",\n        \"adm0_a3_np\": \"FIN\",\n        \"adm0_a3_pk\": \"FIN\",\n        \"adm0_a3_de\": \"FIN\",\n        \"adm0_a3_gb\": \"FIN\",\n        \"adm0_a3_br\": \"FIN\",\n        \"adm0_a3_il\": \"FIN\",\n        \"adm0_a3_ps\": \"FIN\",\n        \"adm0_a3_sa\": \"FIN\",\n        \"adm0_a3_eg\": \"FIN\",\n        \"adm0_a3_ma\": \"FIN\",\n        \"adm0_a3_pt\": \"FIN\",\n        \"adm0_a3_ar\": \"FIN\",\n        \"adm0_a3_jp\": \"FIN\",\n        \"adm0_a3_ko\": \"FIN\",\n        \"adm0_a3_vn\": \"FIN\",\n        \"adm0_a3_tr\": \"FIN\",\n        \"adm0_a3_id\": \"FIN\",\n        \"adm0_a3_pl\": \"FIN\",\n        \"adm0_a3_gr\": \"FIN\",\n        \"adm0_a3_it\": \"FIN\",\n        \"adm0_a3_nl\": \"FIN\",\n        \"adm0_a3_se\": \"FIN\",\n        \"adm0_a3_bd\": \"FIN\",\n        \"adm0_a3_ua\": \"FIN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Northern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 27.276449,\n        \"label_y\": 63.252361,\n        \"ne_id\": 1159320623,\n        \"wikidataid\": \"Q33\",\n        \"name_ar\": \"فنلندا\",\n        \"name_bn\": \"ফিনল্যান্ড\",\n        \"name_de\": \"Finnland\",\n        \"name_en\": \"Finland\",\n        \"name_es\": \"Finlandia\",\n        \"name_fa\": \"فنلاند\",\n        \"name_fr\": \"Finlande\",\n        \"name_el\": \"Φινλανδία\",\n        \"name_he\": \"פינלנד\",\n        \"name_hi\": \"फ़िनलैण्ड\",\n        \"name_hu\": \"Finnország\",\n        \"name_id\": \"Finlandia\",\n        \"name_it\": \"Finlandia\",\n        \"name_ja\": \"フィンランド\",\n        \"name_ko\": \"핀란드\",\n        \"name_nl\": \"Finland\",\n        \"name_pl\": \"Finlandia\",\n        \"name_pt\": \"Finlândia\",\n        \"name_ru\": \"Финляндия\",\n        \"name_sv\": \"Finland\",\n        \"name_tr\": \"Finlandiya\",\n        \"name_uk\": \"Фінляндія\",\n        \"name_ur\": \"فن لینڈ\",\n        \"name_vi\": \"Phần Lan\",\n        \"name_zh\": \"芬兰\",\n        \"name_zht\": \"芬蘭\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"FIN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [28.591929559043194, 69.06477692328666],\n            [28.445943637818658, 68.36461294216404],\n            [29.97742638522061, 67.69829702419275],\n            [29.054588657352326, 66.94428620062206],\n            [30.21765, 65.80598],\n            [29.54442955904699, 64.94867157659048],\n            [30.44468468600371, 64.20445343693909],\n            [30.035872430142717, 63.55281362573855],\n            [31.516092156711125, 62.86768748641289],\n            [31.139991082490894, 62.35769277612441],\n            [30.21110721204445, 61.780027777749694],\n            [28.07, 60.50352],\n            [28.070001921525666, 60.50351912796823],\n            [28.069997592895277, 60.50351654727584],\n            [26.255172967236973, 60.4239606797625],\n            [24.496623976344523, 60.05731639265166],\n            [22.869694858499457, 59.846373196036225],\n            [22.290763787533592, 60.39192129174154],\n            [21.322244093519316, 60.720169989659524],\n            [21.544866163832694, 61.70532949487179],\n            [21.05921105315369, 62.60739329695874],\n            [21.536029493910803, 63.18973501245587],\n            [22.442744174903993, 63.81781037053129],\n            [24.730511508897536, 64.90234365504084],\n            [25.398067661243942, 65.11142650009374],\n            [25.294043003040404, 65.53434642197045],\n            [23.903378533633802, 66.00692739527962],\n            [23.565879754335583, 66.39605093043743],\n            [23.53947309743444, 67.93600861273525],\n            [21.978534783626117, 68.6168456081807],\n            [20.645592889089528, 69.10624726020087],\n            [21.244936150810673, 69.37044302029308],\n            [22.356237827247412, 68.84174144151491],\n            [23.66204959483076, 68.89124746365054],\n            [24.735679152126725, 68.64955678982146],\n            [25.689212680776365, 69.09211375596904],\n            [26.179622023226244, 69.82529897732614],\n            [27.732292107867863, 70.16419302029625],\n            [29.015572950971972, 69.76649119737799],\n            [28.591929559043194, 69.06477692328666]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Luxembourg\",\n        \"sov_a3\": \"LUX\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Luxembourg\",\n        \"adm0_a3\": \"LUX\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Luxembourg\",\n        \"gu_a3\": \"LUX\",\n        \"su_dif\": 0,\n        \"subunit\": \"Luxembourg\",\n        \"su_a3\": \"LUX\",\n        \"brk_diff\": 0,\n        \"name\": \"Luxembourg\",\n        \"name_long\": \"Luxembourg\",\n        \"brk_a3\": \"LUX\",\n        \"brk_name\": \"Luxembourg\",\n        \"brk_group\": null,\n        \"abbrev\": \"Lux.\",\n        \"postal\": \"L\",\n        \"formal_en\": \"Grand Duchy of Luxembourg\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Luxembourg\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Luxembourg\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 7,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 7,\n        \"pop_est\": 619896,\n        \"pop_rank\": 11,\n        \"pop_year\": 2019,\n        \"gdp_md\": 71104,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"LU\",\n        \"iso_a2\": \"LU\",\n        \"iso_a2_eh\": \"LU\",\n        \"iso_a3\": \"LUX\",\n        \"iso_a3_eh\": \"LUX\",\n        \"iso_n3\": \"442\",\n        \"iso_n3_eh\": \"442\",\n        \"un_a3\": \"442\",\n        \"wb_a2\": \"LU\",\n        \"wb_a3\": \"LUX\",\n        \"woe_id\": 23424881,\n        \"woe_id_eh\": 23424881,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"LUX\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"LUX\",\n        \"adm0_a3_us\": \"LUX\",\n        \"adm0_a3_fr\": \"LUX\",\n        \"adm0_a3_ru\": \"LUX\",\n        \"adm0_a3_es\": \"LUX\",\n        \"adm0_a3_cn\": \"LUX\",\n        \"adm0_a3_tw\": \"LUX\",\n        \"adm0_a3_in\": \"LUX\",\n        \"adm0_a3_np\": \"LUX\",\n        \"adm0_a3_pk\": \"LUX\",\n        \"adm0_a3_de\": \"LUX\",\n        \"adm0_a3_gb\": \"LUX\",\n        \"adm0_a3_br\": \"LUX\",\n        \"adm0_a3_il\": \"LUX\",\n        \"adm0_a3_ps\": \"LUX\",\n        \"adm0_a3_sa\": \"LUX\",\n        \"adm0_a3_eg\": \"LUX\",\n        \"adm0_a3_ma\": \"LUX\",\n        \"adm0_a3_pt\": \"LUX\",\n        \"adm0_a3_ar\": \"LUX\",\n        \"adm0_a3_jp\": \"LUX\",\n        \"adm0_a3_ko\": \"LUX\",\n        \"adm0_a3_vn\": \"LUX\",\n        \"adm0_a3_tr\": \"LUX\",\n        \"adm0_a3_id\": \"LUX\",\n        \"adm0_a3_pl\": \"LUX\",\n        \"adm0_a3_gr\": \"LUX\",\n        \"adm0_a3_it\": \"LUX\",\n        \"adm0_a3_nl\": \"LUX\",\n        \"adm0_a3_se\": \"LUX\",\n        \"adm0_a3_bd\": \"LUX\",\n        \"adm0_a3_ua\": \"LUX\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Western Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 10,\n        \"long_len\": 10,\n        \"abbrev_len\": 4,\n        \"tiny\": 5,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 5.7,\n        \"max_label\": 10,\n        \"label_x\": 6.07762,\n        \"label_y\": 49.733732,\n        \"ne_id\": 1159321031,\n        \"wikidataid\": \"Q32\",\n        \"name_ar\": \"لوكسمبورغ\",\n        \"name_bn\": \"লুক্সেমবুর্গ\",\n        \"name_de\": \"Luxemburg\",\n        \"name_en\": \"Luxembourg\",\n        \"name_es\": \"Luxemburgo\",\n        \"name_fa\": \"لوکزامبورگ\",\n        \"name_fr\": \"Luxembourg\",\n        \"name_el\": \"Λουξεμβούργο\",\n        \"name_he\": \"לוקסמבורג\",\n        \"name_hi\": \"लक्ज़मबर्ग\",\n        \"name_hu\": \"Luxemburg\",\n        \"name_id\": \"Luksemburg\",\n        \"name_it\": \"Lussemburgo\",\n        \"name_ja\": \"ルクセンブルク\",\n        \"name_ko\": \"룩셈부르크\",\n        \"name_nl\": \"Luxemburg\",\n        \"name_pl\": \"Luksemburg\",\n        \"name_pt\": \"Luxemburgo\",\n        \"name_ru\": \"Люксембург\",\n        \"name_sv\": \"Luxemburg\",\n        \"name_tr\": \"Lüksemburg\",\n        \"name_uk\": \"Люксембург\",\n        \"name_ur\": \"لکسمبرگ\",\n        \"name_vi\": \"Luxembourg\",\n        \"name_zh\": \"卢森堡\",\n        \"name_zht\": \"盧森堡\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"LUX.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.043073357781111, 50.128051662794235],\n            [6.242751092156993, 49.90222565367873],\n            [6.186320428094177, 49.463802802114515],\n            [5.897759230176348, 49.44266714130711],\n            [5.674051954784829, 49.529483547557504],\n            [5.782417433300907, 50.09032786722122],\n            [6.043073357781111, 50.128051662794235]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Belgium\",\n        \"sov_a3\": \"BEL\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Belgium\",\n        \"adm0_a3\": \"BEL\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Belgium\",\n        \"gu_a3\": \"BEL\",\n        \"su_dif\": 0,\n        \"subunit\": \"Belgium\",\n        \"su_a3\": \"BEL\",\n        \"brk_diff\": 0,\n        \"name\": \"Belgium\",\n        \"name_long\": \"Belgium\",\n        \"brk_a3\": \"BEL\",\n        \"brk_name\": \"Belgium\",\n        \"brk_group\": null,\n        \"abbrev\": \"Belg.\",\n        \"postal\": \"B\",\n        \"formal_en\": \"Kingdom of Belgium\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Belgium\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Belgium\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 8,\n        \"pop_est\": 11484055,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 533097,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"BE\",\n        \"iso_a2\": \"BE\",\n        \"iso_a2_eh\": \"BE\",\n        \"iso_a3\": \"BEL\",\n        \"iso_a3_eh\": \"BEL\",\n        \"iso_n3\": \"056\",\n        \"iso_n3_eh\": \"056\",\n        \"un_a3\": \"056\",\n        \"wb_a2\": \"BE\",\n        \"wb_a3\": \"BEL\",\n        \"woe_id\": 23424757,\n        \"woe_id_eh\": 23424757,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"BEL\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"BEL\",\n        \"adm0_a3_us\": \"BEL\",\n        \"adm0_a3_fr\": \"BEL\",\n        \"adm0_a3_ru\": \"BEL\",\n        \"adm0_a3_es\": \"BEL\",\n        \"adm0_a3_cn\": \"BEL\",\n        \"adm0_a3_tw\": \"BEL\",\n        \"adm0_a3_in\": \"BEL\",\n        \"adm0_a3_np\": \"BEL\",\n        \"adm0_a3_pk\": \"BEL\",\n        \"adm0_a3_de\": \"BEL\",\n        \"adm0_a3_gb\": \"BEL\",\n        \"adm0_a3_br\": \"BEL\",\n        \"adm0_a3_il\": \"BEL\",\n        \"adm0_a3_ps\": \"BEL\",\n        \"adm0_a3_sa\": \"BEL\",\n        \"adm0_a3_eg\": \"BEL\",\n        \"adm0_a3_ma\": \"BEL\",\n        \"adm0_a3_pt\": \"BEL\",\n        \"adm0_a3_ar\": \"BEL\",\n        \"adm0_a3_jp\": \"BEL\",\n        \"adm0_a3_ko\": \"BEL\",\n        \"adm0_a3_vn\": \"BEL\",\n        \"adm0_a3_tr\": \"BEL\",\n        \"adm0_a3_id\": \"BEL\",\n        \"adm0_a3_pl\": \"BEL\",\n        \"adm0_a3_gr\": \"BEL\",\n        \"adm0_a3_it\": \"BEL\",\n        \"adm0_a3_nl\": \"BEL\",\n        \"adm0_a3_se\": \"BEL\",\n        \"adm0_a3_bd\": \"BEL\",\n        \"adm0_a3_ua\": \"BEL\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Western Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 4.800448,\n        \"label_y\": 50.785392,\n        \"ne_id\": 1159320389,\n        \"wikidataid\": \"Q31\",\n        \"name_ar\": \"بلجيكا\",\n        \"name_bn\": \"বেলজিয়াম\",\n        \"name_de\": \"Belgien\",\n        \"name_en\": \"Belgium\",\n        \"name_es\": \"Bélgica\",\n        \"name_fa\": \"بلژیک\",\n        \"name_fr\": \"Belgique\",\n        \"name_el\": \"Βέλγιο\",\n        \"name_he\": \"בלגיה\",\n        \"name_hi\": \"बेल्जियम\",\n        \"name_hu\": \"Belgium\",\n        \"name_id\": \"Belgia\",\n        \"name_it\": \"Belgio\",\n        \"name_ja\": \"ベルギー\",\n        \"name_ko\": \"벨기에\",\n        \"name_nl\": \"België\",\n        \"name_pl\": \"Belgia\",\n        \"name_pt\": \"Bélgica\",\n        \"name_ru\": \"Бельгия\",\n        \"name_sv\": \"Belgien\",\n        \"name_tr\": \"Belçika\",\n        \"name_uk\": \"Бельгія\",\n        \"name_ur\": \"بلجئیم\",\n        \"name_vi\": \"Bỉ\",\n        \"name_zh\": \"比利时\",\n        \"name_zht\": \"比利時\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"BEL.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.15665815595878, 50.80372101501058],\n            [6.043073357781111, 50.128051662794235],\n            [5.782417433300907, 50.09032786722122],\n            [5.674051954784829, 49.529483547557504],\n            [4.799221632515724, 49.98537303323637],\n            [4.286022983425084, 49.907496649772554],\n            [3.588184441755658, 50.37899241800356],\n            [3.123251580425688, 50.78036326761455],\n            [2.658422071960274, 50.796848049515745],\n            [2.513573032246143, 51.14850617126183],\n            [3.314971144228537, 51.345780951536085],\n            [3.31501148496416, 51.34577662473805],\n            [3.314971144228537, 51.34575511331991],\n            [4.047071160507528, 51.26725861266857],\n            [4.973991326526914, 51.47502370869813],\n            [5.606975945670001, 51.03729848896978],\n            [6.15665815595878, 50.80372101501058]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"North Macedonia\",\n        \"sov_a3\": \"MKD\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"North Macedonia\",\n        \"adm0_a3\": \"MKD\",\n        \"geou_dif\": 0,\n        \"geounit\": \"North Macedonia\",\n        \"gu_a3\": \"MKD\",\n        \"su_dif\": 0,\n        \"subunit\": \"North Macedonia\",\n        \"su_a3\": \"MKD\",\n        \"brk_diff\": 0,\n        \"name\": \"North Macedonia\",\n        \"name_long\": \"North Macedonia\",\n        \"brk_a3\": \"MKD\",\n        \"brk_name\": \"North Macedonia\",\n        \"brk_group\": null,\n        \"abbrev\": \"N. Mac.\",\n        \"postal\": \"NM\",\n        \"formal_en\": \"Republic of North Macedonia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"North Macedonia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"North Macedonia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 7,\n        \"mapcolor13\": 3,\n        \"pop_est\": 2083459,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 12547,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"MK\",\n        \"iso_a2\": \"MK\",\n        \"iso_a2_eh\": \"MK\",\n        \"iso_a3\": \"MKD\",\n        \"iso_a3_eh\": \"MKD\",\n        \"iso_n3\": \"807\",\n        \"iso_n3_eh\": \"807\",\n        \"un_a3\": \"807\",\n        \"wb_a2\": \"MK\",\n        \"wb_a3\": \"MKD\",\n        \"woe_id\": 23424890,\n        \"woe_id_eh\": 23424890,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"MKD\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"MKD\",\n        \"adm0_a3_us\": \"MKD\",\n        \"adm0_a3_fr\": \"MKD\",\n        \"adm0_a3_ru\": \"MKD\",\n        \"adm0_a3_es\": \"MKD\",\n        \"adm0_a3_cn\": \"MKD\",\n        \"adm0_a3_tw\": \"MKD\",\n        \"adm0_a3_in\": \"MKD\",\n        \"adm0_a3_np\": \"MKD\",\n        \"adm0_a3_pk\": \"MKD\",\n        \"adm0_a3_de\": \"MKD\",\n        \"adm0_a3_gb\": \"MKD\",\n        \"adm0_a3_br\": \"MKD\",\n        \"adm0_a3_il\": \"MKD\",\n        \"adm0_a3_ps\": \"MKD\",\n        \"adm0_a3_sa\": \"MKD\",\n        \"adm0_a3_eg\": \"MKD\",\n        \"adm0_a3_ma\": \"MKD\",\n        \"adm0_a3_pt\": \"MKD\",\n        \"adm0_a3_ar\": \"MKD\",\n        \"adm0_a3_jp\": \"MKD\",\n        \"adm0_a3_ko\": \"MKD\",\n        \"adm0_a3_vn\": \"MKD\",\n        \"adm0_a3_tr\": \"MKD\",\n        \"adm0_a3_id\": \"MKD\",\n        \"adm0_a3_pl\": \"MKD\",\n        \"adm0_a3_gr\": \"MKD\",\n        \"adm0_a3_it\": \"MKD\",\n        \"adm0_a3_nl\": \"MKD\",\n        \"adm0_a3_se\": \"MKD\",\n        \"adm0_a3_bd\": \"MKD\",\n        \"adm0_a3_ua\": \"MKD\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Southern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 15,\n        \"long_len\": 15,\n        \"abbrev_len\": 7,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 5,\n        \"max_label\": 10,\n        \"label_x\": 21.555839,\n        \"label_y\": 41.558223,\n        \"ne_id\": 1159321061,\n        \"wikidataid\": \"Q221\",\n        \"name_ar\": \"مقدونيا الشمالية\",\n        \"name_bn\": \"উত্তর মেসিডোনিয়া\",\n        \"name_de\": \"Nordmazedonien\",\n        \"name_en\": \"North Macedonia\",\n        \"name_es\": \"Macedonia del Norte\",\n        \"name_fa\": \"مقدونیه شمالی\",\n        \"name_fr\": \"Macédoine du Nord\",\n        \"name_el\": \"Βόρεια Μακεδονία\",\n        \"name_he\": \"מקדוניה הצפונית\",\n        \"name_hi\": \"उत्तर मैसिडोनिया\",\n        \"name_hu\": \"Észak-Macedónia\",\n        \"name_id\": \"Republik Makedonia Utara\",\n        \"name_it\": \"Macedonia del Nord\",\n        \"name_ja\": \"北マケドニア\",\n        \"name_ko\": \"북마케도니아\",\n        \"name_nl\": \"Noord-Macedonië\",\n        \"name_pl\": \"Macedonia Północna\",\n        \"name_pt\": \"Macedónia do Norte\",\n        \"name_ru\": \"Северная Македония\",\n        \"name_sv\": \"Nordmakedonien\",\n        \"name_tr\": \"Kuzey Makedonya\",\n        \"name_uk\": \"Північна Македонія\",\n        \"name_ur\": \"شمالی مقدونیہ\",\n        \"name_vi\": \"Bắc Macedonia\",\n        \"name_zh\": \"北马其顿\",\n        \"name_zht\": \"北馬其頓\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"MKD.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [22.380525750424592, 42.32025950781509],\n            [22.881373732197346, 41.999297186850356],\n            [22.952377150166452, 41.33799388281115],\n            [22.76177, 41.3048],\n            [22.597308383889015, 41.130487168943205],\n            [22.05537763844427, 41.14986583105269],\n            [21.674160597426976, 40.931274522457954],\n            [21.0200403174764, 40.84272695572588],\n            [20.605181919037364, 41.086226304685226],\n            [20.463175083099202, 41.51508901627534],\n            [20.59024743010491, 41.855404161133606],\n            [20.590246546680227, 41.855408919283626],\n            [20.71731000000011, 41.84711],\n            [20.76216, 42.05186],\n            [21.35270000000014, 42.2068],\n            [21.57663598940212, 42.24522439706186],\n            [21.917080000000112, 42.30364],\n            [22.380525750424592, 42.32025950781509]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Albania\",\n        \"sov_a3\": \"ALB\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Albania\",\n        \"adm0_a3\": \"ALB\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Albania\",\n        \"gu_a3\": \"ALB\",\n        \"su_dif\": 0,\n        \"subunit\": \"Albania\",\n        \"su_a3\": \"ALB\",\n        \"brk_diff\": 0,\n        \"name\": \"Albania\",\n        \"name_long\": \"Albania\",\n        \"brk_a3\": \"ALB\",\n        \"brk_name\": \"Albania\",\n        \"brk_group\": null,\n        \"abbrev\": \"Alb.\",\n        \"postal\": \"AL\",\n        \"formal_en\": \"Republic of Albania\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Albania\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Albania\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 6,\n        \"pop_est\": 2854191,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 15279,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"AL\",\n        \"iso_a2\": \"AL\",\n        \"iso_a2_eh\": \"AL\",\n        \"iso_a3\": \"ALB\",\n        \"iso_a3_eh\": \"ALB\",\n        \"iso_n3\": \"008\",\n        \"iso_n3_eh\": \"008\",\n        \"un_a3\": \"008\",\n        \"wb_a2\": \"AL\",\n        \"wb_a3\": \"ALB\",\n        \"woe_id\": 23424742,\n        \"woe_id_eh\": 23424742,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"ALB\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"ALB\",\n        \"adm0_a3_us\": \"ALB\",\n        \"adm0_a3_fr\": \"ALB\",\n        \"adm0_a3_ru\": \"ALB\",\n        \"adm0_a3_es\": \"ALB\",\n        \"adm0_a3_cn\": \"ALB\",\n        \"adm0_a3_tw\": \"ALB\",\n        \"adm0_a3_in\": \"ALB\",\n        \"adm0_a3_np\": \"ALB\",\n        \"adm0_a3_pk\": \"ALB\",\n        \"adm0_a3_de\": \"ALB\",\n        \"adm0_a3_gb\": \"ALB\",\n        \"adm0_a3_br\": \"ALB\",\n        \"adm0_a3_il\": \"ALB\",\n        \"adm0_a3_ps\": \"ALB\",\n        \"adm0_a3_sa\": \"ALB\",\n        \"adm0_a3_eg\": \"ALB\",\n        \"adm0_a3_ma\": \"ALB\",\n        \"adm0_a3_pt\": \"ALB\",\n        \"adm0_a3_ar\": \"ALB\",\n        \"adm0_a3_jp\": \"ALB\",\n        \"adm0_a3_ko\": \"ALB\",\n        \"adm0_a3_vn\": \"ALB\",\n        \"adm0_a3_tr\": \"ALB\",\n        \"adm0_a3_id\": \"ALB\",\n        \"adm0_a3_pl\": \"ALB\",\n        \"adm0_a3_gr\": \"ALB\",\n        \"adm0_a3_it\": \"ALB\",\n        \"adm0_a3_nl\": \"ALB\",\n        \"adm0_a3_se\": \"ALB\",\n        \"adm0_a3_bd\": \"ALB\",\n        \"adm0_a3_ua\": \"ALB\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Southern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 5,\n        \"max_label\": 10,\n        \"label_x\": 20.11384,\n        \"label_y\": 40.654855,\n        \"ne_id\": 1159320325,\n        \"wikidataid\": \"Q222\",\n        \"name_ar\": \"ألبانيا\",\n        \"name_bn\": \"আলবেনিয়া\",\n        \"name_de\": \"Albanien\",\n        \"name_en\": \"Albania\",\n        \"name_es\": \"Albania\",\n        \"name_fa\": \"آلبانی\",\n        \"name_fr\": \"Albanie\",\n        \"name_el\": \"Αλβανία\",\n        \"name_he\": \"אלבניה\",\n        \"name_hi\": \"अल्बानिया\",\n        \"name_hu\": \"Albánia\",\n        \"name_id\": \"Albania\",\n        \"name_it\": \"Albania\",\n        \"name_ja\": \"アルバニア\",\n        \"name_ko\": \"알바니아\",\n        \"name_nl\": \"Albanië\",\n        \"name_pl\": \"Albania\",\n        \"name_pt\": \"Albânia\",\n        \"name_ru\": \"Албания\",\n        \"name_sv\": \"Albanien\",\n        \"name_tr\": \"Arnavutluk\",\n        \"name_uk\": \"Албанія\",\n        \"name_ur\": \"البانیا\",\n        \"name_vi\": \"Albania\",\n        \"name_zh\": \"阿尔巴尼亚\",\n        \"name_zht\": \"阿爾巴尼亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"ALB.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [21.0200403174764, 40.84272695572588],\n            [20.999989861747224, 40.58000397395398],\n            [20.674996779063633, 40.43499990494303],\n            [20.615000441172754, 40.11000682225938],\n            [20.15001590341052, 39.62499766698397],\n            [19.980000441170148, 39.69499339452341],\n            [19.960001661873207, 39.91500580500605],\n            [19.406081984136733, 40.250773423822466],\n            [19.319058872157143, 40.72723012955356],\n            [19.40354983895429, 41.40956574153546],\n            [19.540027296637106, 41.71998607031276],\n            [19.37176883309496, 41.877547512370654],\n            [19.37176816334725, 41.877550679783496],\n            [19.304486118250793, 42.19574514420782],\n            [19.73805138517963, 42.68824738216557],\n            [19.801613396898688, 42.50009349219084],\n            [20.0707, 42.58863],\n            [20.283754510181893, 42.32025950781508],\n            [20.52295, 42.21787],\n            [20.590246546680227, 41.855408919283626],\n            [20.59024743010491, 41.855404161133606],\n            [20.463175083099202, 41.51508901627534],\n            [20.605181919037364, 41.086226304685226],\n            [21.0200403174764, 40.84272695572588]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Kosovo\",\n        \"sov_a3\": \"KOS\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Disputed\",\n        \"tlc\": \"1\",\n        \"admin\": \"Kosovo\",\n        \"adm0_a3\": \"KOS\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Kosovo\",\n        \"gu_a3\": \"KOS\",\n        \"su_dif\": 0,\n        \"subunit\": \"Kosovo\",\n        \"su_a3\": \"KOS\",\n        \"brk_diff\": 0,\n        \"name\": \"Kosovo\",\n        \"name_long\": \"Kosovo\",\n        \"brk_a3\": \"KOS\",\n        \"brk_name\": \"Kosovo\",\n        \"brk_group\": null,\n        \"abbrev\": \"Kos.\",\n        \"postal\": \"KO\",\n        \"formal_en\": \"Republic of Kosovo\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Kosovo\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Kosovo\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 11,\n        \"pop_est\": 1794248,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 7926,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"KV\",\n        \"iso_a2\": \"-99\",\n        \"iso_a2_eh\": \"XK\",\n        \"iso_a3\": \"-99\",\n        \"iso_a3_eh\": \"-99\",\n        \"iso_n3\": \"-99\",\n        \"iso_n3_eh\": \"-99\",\n        \"un_a3\": \"-099\",\n        \"wb_a2\": \"KV\",\n        \"wb_a3\": \"KSV\",\n        \"woe_id\": -90,\n        \"woe_id_eh\": 29389201,\n        \"woe_note\": \"Subunit of Serbia in WOE still; should include 29389201, 29389207, 29389218, 29389209 and 29389214.\",\n        \"adm0_iso\": \"SRB\",\n        \"adm0_diff\": \"1\",\n        \"adm0_tlc\": \"KOS\",\n        \"adm0_a3_us\": \"KOS\",\n        \"adm0_a3_fr\": \"KOS\",\n        \"adm0_a3_ru\": \"SRB\",\n        \"adm0_a3_es\": \"SRB\",\n        \"adm0_a3_cn\": \"SRB\",\n        \"adm0_a3_tw\": \"KOS\",\n        \"adm0_a3_in\": \"SRB\",\n        \"adm0_a3_np\": \"SRB\",\n        \"adm0_a3_pk\": \"KOS\",\n        \"adm0_a3_de\": \"KOS\",\n        \"adm0_a3_gb\": \"SRB\",\n        \"adm0_a3_br\": \"KOS\",\n        \"adm0_a3_il\": \"KOS\",\n        \"adm0_a3_ps\": \"SRB\",\n        \"adm0_a3_sa\": \"KOS\",\n        \"adm0_a3_eg\": \"KOS\",\n        \"adm0_a3_ma\": \"SRB\",\n        \"adm0_a3_pt\": \"KOS\",\n        \"adm0_a3_ar\": \"SRB\",\n        \"adm0_a3_jp\": \"KOS\",\n        \"adm0_a3_ko\": \"KOS\",\n        \"adm0_a3_vn\": \"SRB\",\n        \"adm0_a3_tr\": \"KOS\",\n        \"adm0_a3_id\": \"SRB\",\n        \"adm0_a3_pl\": \"KOS\",\n        \"adm0_a3_gr\": \"SRB\",\n        \"adm0_a3_it\": \"KOS\",\n        \"adm0_a3_nl\": \"KOS\",\n        \"adm0_a3_se\": \"KOS\",\n        \"adm0_a3_bd\": \"KOS\",\n        \"adm0_a3_ua\": \"SRB\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Southern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 5,\n        \"max_label\": 10,\n        \"label_x\": 20.860719,\n        \"label_y\": 42.593587,\n        \"ne_id\": 1159321007,\n        \"wikidataid\": \"Q1246\",\n        \"name_ar\": \"كوسوفو\",\n        \"name_bn\": \"কসোভো\",\n        \"name_de\": \"Kosovo\",\n        \"name_en\": \"Kosovo\",\n        \"name_es\": \"Kosovo\",\n        \"name_fa\": \"کوزووو\",\n        \"name_fr\": \"Kosovo\",\n        \"name_el\": \"Κοσσυφοπέδιο\",\n        \"name_he\": \"קוסובו\",\n        \"name_hi\": \"कोसोवो गणराज्य\",\n        \"name_hu\": \"Koszovó\",\n        \"name_id\": \"Kosovo\",\n        \"name_it\": \"Kosovo\",\n        \"name_ja\": \"コソボ共和国\",\n        \"name_ko\": \"코소보\",\n        \"name_nl\": \"Kosovo\",\n        \"name_pl\": \"Kosowo\",\n        \"name_pt\": \"Kosovo\",\n        \"name_ru\": \"Республика Косово\",\n        \"name_sv\": \"Kosovo\",\n        \"name_tr\": \"Kosova\",\n        \"name_uk\": \"Косово\",\n        \"name_ur\": \"کوسووہ\",\n        \"name_vi\": \"Kosovo\",\n        \"name_zh\": \"科索沃\",\n        \"name_zht\": \"科索沃\",\n        \"fclass_iso\": \"Unrecognized\",\n        \"tlc_diff\": \"1\",\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": \"Admin-0 country\",\n        \"fclass_fr\": \"Admin-0 country\",\n        \"fclass_ru\": \"Admin-1 region\",\n        \"fclass_es\": \"Unrecognized\",\n        \"fclass_cn\": \"Unrecognized\",\n        \"fclass_tw\": \"Admin-0 country\",\n        \"fclass_in\": \"Admin-1 region\",\n        \"fclass_np\": \"Unrecognized\",\n        \"fclass_pk\": \"Admin-0 country\",\n        \"fclass_de\": \"Admin-0 country\",\n        \"fclass_gb\": \"Admin-0 country\",\n        \"fclass_br\": \"Unrecognized\",\n        \"fclass_il\": \"Admin-0 country\",\n        \"fclass_ps\": \"Unrecognized\",\n        \"fclass_sa\": \"Admin-0 country\",\n        \"fclass_eg\": \"Admin-0 country\",\n        \"fclass_ma\": \"Unrecognized\",\n        \"fclass_pt\": \"Admin-0 country\",\n        \"fclass_ar\": \"Unrecognized\",\n        \"fclass_jp\": \"Admin-0 country\",\n        \"fclass_ko\": \"Admin-0 country\",\n        \"fclass_vn\": \"Unrecognized\",\n        \"fclass_tr\": \"Admin-0 country\",\n        \"fclass_id\": \"Unrecognized\",\n        \"fclass_pl\": \"Admin-0 country\",\n        \"fclass_gr\": \"Unrecognized\",\n        \"fclass_it\": \"Admin-0 country\",\n        \"fclass_nl\": \"Admin-0 country\",\n        \"fclass_se\": \"Admin-0 country\",\n        \"fclass_bd\": \"Admin-0 country\",\n        \"fclass_ua\": \"Unrecognized\",\n        \"filename\": \"kosovo.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20.590246546680227, 41.855408919283626],\n            [20.52295, 42.21787],\n            [20.283754510181893, 42.32025950781508],\n            [20.0707, 42.58863],\n            [20.25758, 42.81275000000011],\n            [20.49679, 42.88469],\n            [20.63508, 43.21671],\n            [20.81448, 43.27205],\n            [20.95651, 43.13094],\n            [21.143395, 43.06868500000013],\n            [21.27421, 42.90959],\n            [21.43866, 42.86255],\n            [21.63302, 42.67717],\n            [21.77505, 42.6827],\n            [21.66292, 42.43922],\n            [21.54332, 42.3202500000001],\n            [21.57663598940212, 42.24522439706186],\n            [21.35270000000014, 42.2068],\n            [20.76216, 42.05186],\n            [20.71731000000011, 41.84711],\n            [20.590246546680227, 41.855408919283626]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Spain\",\n        \"sov_a3\": \"ESP\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Spain\",\n        \"adm0_a3\": \"ESP\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Spain\",\n        \"gu_a3\": \"ESP\",\n        \"su_dif\": 0,\n        \"subunit\": \"Spain\",\n        \"su_a3\": \"ESP\",\n        \"brk_diff\": 0,\n        \"name\": \"Spain\",\n        \"name_long\": \"Spain\",\n        \"brk_a3\": \"ESP\",\n        \"brk_name\": \"Spain\",\n        \"brk_group\": null,\n        \"abbrev\": \"Sp.\",\n        \"postal\": \"E\",\n        \"formal_en\": \"Kingdom of Spain\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Spain\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Spain\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 5,\n        \"pop_est\": 47076781,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 1393490,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"SP\",\n        \"iso_a2\": \"ES\",\n        \"iso_a2_eh\": \"ES\",\n        \"iso_a3\": \"ESP\",\n        \"iso_a3_eh\": \"ESP\",\n        \"iso_n3\": \"724\",\n        \"iso_n3_eh\": \"724\",\n        \"un_a3\": \"724\",\n        \"wb_a2\": \"ES\",\n        \"wb_a3\": \"ESP\",\n        \"woe_id\": 23424950,\n        \"woe_id_eh\": 23424950,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"ESP\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"ESP\",\n        \"adm0_a3_us\": \"ESP\",\n        \"adm0_a3_fr\": \"ESP\",\n        \"adm0_a3_ru\": \"ESP\",\n        \"adm0_a3_es\": \"ESP\",\n        \"adm0_a3_cn\": \"ESP\",\n        \"adm0_a3_tw\": \"ESP\",\n        \"adm0_a3_in\": \"ESP\",\n        \"adm0_a3_np\": \"ESP\",\n        \"adm0_a3_pk\": \"ESP\",\n        \"adm0_a3_de\": \"ESP\",\n        \"adm0_a3_gb\": \"ESP\",\n        \"adm0_a3_br\": \"ESP\",\n        \"adm0_a3_il\": \"ESP\",\n        \"adm0_a3_ps\": \"ESP\",\n        \"adm0_a3_sa\": \"ESP\",\n        \"adm0_a3_eg\": \"ESP\",\n        \"adm0_a3_ma\": \"ESP\",\n        \"adm0_a3_pt\": \"ESP\",\n        \"adm0_a3_ar\": \"ESP\",\n        \"adm0_a3_jp\": \"ESP\",\n        \"adm0_a3_ko\": \"ESP\",\n        \"adm0_a3_vn\": \"ESP\",\n        \"adm0_a3_tr\": \"ESP\",\n        \"adm0_a3_id\": \"ESP\",\n        \"adm0_a3_pl\": \"ESP\",\n        \"adm0_a3_gr\": \"ESP\",\n        \"adm0_a3_it\": \"ESP\",\n        \"adm0_a3_nl\": \"ESP\",\n        \"adm0_a3_se\": \"ESP\",\n        \"adm0_a3_bd\": \"ESP\",\n        \"adm0_a3_ua\": \"ESP\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Southern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 3,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2,\n        \"max_label\": 7,\n        \"label_x\": -3.464718,\n        \"label_y\": 40.090953,\n        \"ne_id\": 1159320587,\n        \"wikidataid\": \"Q29\",\n        \"name_ar\": \"إسبانيا\",\n        \"name_bn\": \"স্পেন\",\n        \"name_de\": \"Spanien\",\n        \"name_en\": \"Spain\",\n        \"name_es\": \"España\",\n        \"name_fa\": \"اسپانیا\",\n        \"name_fr\": \"Espagne\",\n        \"name_el\": \"Ισπανία\",\n        \"name_he\": \"ספרד\",\n        \"name_hi\": \"स्पेन\",\n        \"name_hu\": \"Spanyolország\",\n        \"name_id\": \"Spanyol\",\n        \"name_it\": \"Spagna\",\n        \"name_ja\": \"スペイン\",\n        \"name_ko\": \"스페인\",\n        \"name_nl\": \"Spanje\",\n        \"name_pl\": \"Hiszpania\",\n        \"name_pt\": \"Espanha\",\n        \"name_ru\": \"Испания\",\n        \"name_sv\": \"Spanien\",\n        \"name_tr\": \"İspanya\",\n        \"name_uk\": \"Іспанія\",\n        \"name_ur\": \"ہسپانیہ\",\n        \"name_vi\": \"Tây Ban Nha\",\n        \"name_zh\": \"西班牙\",\n        \"name_zht\": \"西班牙\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"ESP.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-7.453725551778092, 37.09778758396607],\n            [-7.537105475281024, 37.42890432387624],\n            [-7.166507941099865, 37.803894354802225],\n            [-7.029281175148796, 38.07576406508977],\n            [-7.374092169616318, 38.37305858006492],\n            [-7.098036668313128, 39.03007274022379],\n            [-7.498632371439726, 39.62957103124181],\n            [-7.066591559263529, 39.711891587882775],\n            [-7.026413133156595, 40.184524237624245],\n            [-6.864019944679385, 40.33087189387483],\n            [-6.851126674822552, 41.11108266861753],\n            [-6.389087693700915, 41.381815497394655],\n            [-6.668605515967656, 41.883386949219584],\n            [-7.251308966490824, 41.91834605566505],\n            [-7.422512986673795, 41.79207469335984],\n            [-8.013174607769912, 41.790886135417125],\n            [-8.263856980817792, 42.28046865495034],\n            [-8.67194576662672, 42.13468943945496],\n            [-9.034817674180246, 41.880570583659676],\n            [-8.984433152695672, 42.59277517350627],\n            [-9.392883673530648, 43.0266246608127],\n            [-7.97818966310831, 43.74833771420099],\n            [-6.754491746436756, 43.567909450853925],\n            [-5.411886359061597, 43.57423981380968],\n            [-4.347842779955783, 43.40344920508504],\n            [-3.517531704106091, 43.4559007838613],\n            [-1.901351284177764, 43.42280202897834],\n            [-1.502770961910528, 43.03401439063043],\n            [0.338046909190581, 42.57954600683955],\n            [0.701590610363894, 42.795734361332606],\n            [1.826793247087153, 42.34338471126569],\n            [2.985998976258458, 42.47301504166986],\n            [3.039484083680549, 41.892120266276905],\n            [2.091841668312185, 41.226088568683096],\n            [0.810524529635188, 41.01473196060934],\n            [0.721331007499401, 40.678318386389236],\n            [0.106691521819869, 40.12393362076202],\n            [-0.278711310212941, 39.30997813573272],\n            [0.111290724293838, 38.73851430923304],\n            [-0.467123582349103, 38.29236583104115],\n            [-0.683389451490598, 37.642353827457825],\n            [-1.438382127274849, 37.44306366632422],\n            [-2.146452602538119, 36.67414419203729],\n            [-3.415780808923387, 36.65889964451118],\n            [-4.368900926114719, 36.677839056946155],\n            [-4.995219285492212, 36.32470815687964],\n            [-5.377159796561457, 35.946850083961465],\n            [-5.866432257500904, 36.02981659600606],\n            [-6.236693894872175, 36.367677110330334],\n            [-6.520190802425404, 36.94291331638732],\n            [-7.453725551778092, 37.09778758396607]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Denmark\",\n        \"sov_a3\": \"DN1\",\n        \"adm0_dif\": 1,\n        \"level\": 2,\n        \"type\": \"Country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Denmark\",\n        \"adm0_a3\": \"DNK\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Denmark\",\n        \"gu_a3\": \"DNK\",\n        \"su_dif\": 0,\n        \"subunit\": \"Denmark\",\n        \"su_a3\": \"DNK\",\n        \"brk_diff\": 0,\n        \"name\": \"Denmark\",\n        \"name_long\": \"Denmark\",\n        \"brk_a3\": \"DNK\",\n        \"brk_name\": \"Denmark\",\n        \"brk_group\": null,\n        \"abbrev\": \"Den.\",\n        \"postal\": \"DK\",\n        \"formal_en\": \"Kingdom of Denmark\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Denmark\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Denmark\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 12,\n        \"pop_est\": 5818553,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 350104,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"DA\",\n        \"iso_a2\": \"DK\",\n        \"iso_a2_eh\": \"DK\",\n        \"iso_a3\": \"DNK\",\n        \"iso_a3_eh\": \"DNK\",\n        \"iso_n3\": \"208\",\n        \"iso_n3_eh\": \"208\",\n        \"un_a3\": \"208\",\n        \"wb_a2\": \"DK\",\n        \"wb_a3\": \"DNK\",\n        \"woe_id\": 23424796,\n        \"woe_id_eh\": 23424796,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"DNK\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"DNK\",\n        \"adm0_a3_us\": \"DNK\",\n        \"adm0_a3_fr\": \"DNK\",\n        \"adm0_a3_ru\": \"DNK\",\n        \"adm0_a3_es\": \"DNK\",\n        \"adm0_a3_cn\": \"DNK\",\n        \"adm0_a3_tw\": \"DNK\",\n        \"adm0_a3_in\": \"DNK\",\n        \"adm0_a3_np\": \"DNK\",\n        \"adm0_a3_pk\": \"DNK\",\n        \"adm0_a3_de\": \"DNK\",\n        \"adm0_a3_gb\": \"DNK\",\n        \"adm0_a3_br\": \"DNK\",\n        \"adm0_a3_il\": \"DNK\",\n        \"adm0_a3_ps\": \"DNK\",\n        \"adm0_a3_sa\": \"DNK\",\n        \"adm0_a3_eg\": \"DNK\",\n        \"adm0_a3_ma\": \"DNK\",\n        \"adm0_a3_pt\": \"DNK\",\n        \"adm0_a3_ar\": \"DNK\",\n        \"adm0_a3_jp\": \"DNK\",\n        \"adm0_a3_ko\": \"DNK\",\n        \"adm0_a3_vn\": \"DNK\",\n        \"adm0_a3_tr\": \"DNK\",\n        \"adm0_a3_id\": \"DNK\",\n        \"adm0_a3_pl\": \"DNK\",\n        \"adm0_a3_gr\": \"DNK\",\n        \"adm0_a3_it\": \"DNK\",\n        \"adm0_a3_nl\": \"DNK\",\n        \"adm0_a3_se\": \"DNK\",\n        \"adm0_a3_bd\": \"DNK\",\n        \"adm0_a3_ua\": \"DNK\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Northern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 9.018163,\n        \"label_y\": 55.966965,\n        \"ne_id\": 1159320547,\n        \"wikidataid\": \"Q35\",\n        \"name_ar\": \"الدنمارك\",\n        \"name_bn\": \"ডেনমার্ক\",\n        \"name_de\": \"Dänemark\",\n        \"name_en\": \"Denmark\",\n        \"name_es\": \"Dinamarca\",\n        \"name_fa\": \"دانمارک\",\n        \"name_fr\": \"Danemark\",\n        \"name_el\": \"Δανία\",\n        \"name_he\": \"דנמרק\",\n        \"name_hi\": \"डेनमार्क\",\n        \"name_hu\": \"Dánia\",\n        \"name_id\": \"Denmark\",\n        \"name_it\": \"Danimarca\",\n        \"name_ja\": \"デンマーク\",\n        \"name_ko\": \"덴마크\",\n        \"name_nl\": \"Denemarken\",\n        \"name_pl\": \"Dania\",\n        \"name_pt\": \"Dinamarca\",\n        \"name_ru\": \"Дания\",\n        \"name_sv\": \"Danmark\",\n        \"name_tr\": \"Danimarka\",\n        \"name_uk\": \"Данія\",\n        \"name_ur\": \"ڈنمارک\",\n        \"name_vi\": \"Đan Mạch\",\n        \"name_zh\": \"丹麦\",\n        \"name_zht\": \"丹麥\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"DNK.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [9.921906365609118, 54.98310415304803],\n              [9.282048780971138, 54.830865383516176],\n              [8.526229282270208, 54.96274363872516],\n              [8.120310906617533, 55.5177226833236],\n              [8.08997684086222, 56.54001170513759],\n              [8.256581658571207, 56.80996938743033],\n              [8.543437534223415, 57.11000275331695],\n              [9.424469028367554, 57.1720661484995],\n              [9.775558709358535, 57.44794078228966],\n              [10.580005730846125, 57.73001658795485],\n              [10.546105991262664, 57.21573273378612],\n              [10.250000034230226, 56.89001618105044],\n              [10.369992710011957, 56.60998159446079],\n              [10.912181837618306, 56.458621324277885],\n              [10.667803989310016, 56.08138336854721],\n              [10.369992710011957, 56.19000722922473],\n              [9.649984978889279, 55.469999498102055],\n              [9.921906365609118, 54.98310415304803]\n            ]\n          ],\n          [\n            [\n              [12.370904168353292, 56.111407375708794],\n              [12.690006137755603, 55.60999095318074],\n              [12.089991082414684, 54.80001455343792],\n              [11.043543328504226, 55.36486379660424],\n              [10.903913608451603, 55.77995473898872],\n              [12.370904168353292, 56.111407375708794]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Romania\",\n        \"sov_a3\": \"ROU\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Romania\",\n        \"adm0_a3\": \"ROU\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Romania\",\n        \"gu_a3\": \"ROU\",\n        \"su_dif\": 0,\n        \"subunit\": \"Romania\",\n        \"su_a3\": \"ROU\",\n        \"brk_diff\": 0,\n        \"name\": \"Romania\",\n        \"name_long\": \"Romania\",\n        \"brk_a3\": \"ROU\",\n        \"brk_name\": \"Romania\",\n        \"brk_group\": null,\n        \"abbrev\": \"Rom.\",\n        \"postal\": \"RO\",\n        \"formal_en\": \"Romania\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Romania\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Romania\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 13,\n        \"pop_est\": 19356544,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 250077,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"RO\",\n        \"iso_a2\": \"RO\",\n        \"iso_a2_eh\": \"RO\",\n        \"iso_a3\": \"ROU\",\n        \"iso_a3_eh\": \"ROU\",\n        \"iso_n3\": \"642\",\n        \"iso_n3_eh\": \"642\",\n        \"un_a3\": \"642\",\n        \"wb_a2\": \"RO\",\n        \"wb_a3\": \"ROM\",\n        \"woe_id\": 23424933,\n        \"woe_id_eh\": 23424933,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"ROU\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"ROU\",\n        \"adm0_a3_us\": \"ROU\",\n        \"adm0_a3_fr\": \"ROU\",\n        \"adm0_a3_ru\": \"ROU\",\n        \"adm0_a3_es\": \"ROU\",\n        \"adm0_a3_cn\": \"ROU\",\n        \"adm0_a3_tw\": \"ROU\",\n        \"adm0_a3_in\": \"ROU\",\n        \"adm0_a3_np\": \"ROU\",\n        \"adm0_a3_pk\": \"ROU\",\n        \"adm0_a3_de\": \"ROU\",\n        \"adm0_a3_gb\": \"ROU\",\n        \"adm0_a3_br\": \"ROU\",\n        \"adm0_a3_il\": \"ROU\",\n        \"adm0_a3_ps\": \"ROU\",\n        \"adm0_a3_sa\": \"ROU\",\n        \"adm0_a3_eg\": \"ROU\",\n        \"adm0_a3_ma\": \"ROU\",\n        \"adm0_a3_pt\": \"ROU\",\n        \"adm0_a3_ar\": \"ROU\",\n        \"adm0_a3_jp\": \"ROU\",\n        \"adm0_a3_ko\": \"ROU\",\n        \"adm0_a3_vn\": \"ROU\",\n        \"adm0_a3_tr\": \"ROU\",\n        \"adm0_a3_id\": \"ROU\",\n        \"adm0_a3_pl\": \"ROU\",\n        \"adm0_a3_gr\": \"ROU\",\n        \"adm0_a3_it\": \"ROU\",\n        \"adm0_a3_nl\": \"ROU\",\n        \"adm0_a3_se\": \"ROU\",\n        \"adm0_a3_bd\": \"ROU\",\n        \"adm0_a3_ua\": \"ROU\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Eastern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 24.972624,\n        \"label_y\": 45.733237,\n        \"ne_id\": 1159321199,\n        \"wikidataid\": \"Q218\",\n        \"name_ar\": \"رومانيا\",\n        \"name_bn\": \"রোমানিয়া\",\n        \"name_de\": \"Rumänien\",\n        \"name_en\": \"Romania\",\n        \"name_es\": \"Rumania\",\n        \"name_fa\": \"رومانی\",\n        \"name_fr\": \"Roumanie\",\n        \"name_el\": \"Ρουμανία\",\n        \"name_he\": \"רומניה\",\n        \"name_hi\": \"रोमानिया\",\n        \"name_hu\": \"Románia\",\n        \"name_id\": \"Rumania\",\n        \"name_it\": \"Romania\",\n        \"name_ja\": \"ルーマニア\",\n        \"name_ko\": \"루마니아\",\n        \"name_nl\": \"Roemenië\",\n        \"name_pl\": \"Rumunia\",\n        \"name_pt\": \"Roménia\",\n        \"name_ru\": \"Румыния\",\n        \"name_sv\": \"Rumänien\",\n        \"name_tr\": \"Romanya\",\n        \"name_uk\": \"Румунія\",\n        \"name_ur\": \"رومانیہ\",\n        \"name_vi\": \"Romania\",\n        \"name_zh\": \"罗马尼亚\",\n        \"name_zht\": \"羅馬尼亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"ROU.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [28.23355350109904, 45.48828318946829],\n            [28.67977949393938, 45.304030870131704],\n            [29.149724969201653, 45.464925442072456],\n            [29.603289015427436, 45.293308010431126],\n            [29.62654340995877, 45.0353909368624],\n            [29.141611769331835, 44.820210272799045],\n            [28.8378577003202, 44.913873806328056],\n            [28.558081495891997, 43.70746165625813],\n            [27.970107049275075, 43.81246816667522],\n            [27.242399529740908, 44.175986029632405],\n            [26.065158725699746, 43.94349376075127],\n            [25.569271681426926, 43.68844472917472],\n            [24.100679152124172, 43.74105133724785],\n            [23.332302280376325, 43.897010809904714],\n            [22.944832391051847, 43.82378530534713],\n            [22.65714969248299, 44.23492300066128],\n            [22.4740084164406, 44.40922760678177],\n            [22.705725538837356, 44.57800283464702],\n            [22.459022251075936, 44.7025171982543],\n            [22.14508792490281, 44.47842234962059],\n            [21.56202273935361, 44.7689472519655],\n            [21.48352623870221, 45.18117015235788],\n            [20.874312778413355, 45.416375433934235],\n            [20.762174920339987, 45.734573065771485],\n            [20.220192498462836, 46.127468980486555],\n            [21.02195234547125, 46.3160879583519],\n            [21.626514926853872, 46.99423777931816],\n            [22.099767693782837, 47.6724392767167],\n            [22.710531447040495, 47.88219391538941],\n            [23.142236362406805, 48.09634105080695],\n            [23.76095828623741, 47.985598456405455],\n            [24.40205610525038, 47.98187775328043],\n            [24.866317172960578, 47.737525743188314],\n            [25.20774336111299, 47.89105642352747],\n            [25.9459411964024, 47.987148749374214],\n            [26.19745039236693, 48.22088125263035],\n            [26.619336785597795, 48.22072622333347],\n            [26.924176059687568, 48.123264472030996],\n            [27.233872918412743, 47.82677094175638],\n            [27.551166212684848, 47.40511709247083],\n            [28.128030226359044, 46.810476386088254],\n            [28.160017937947714, 46.37156260841722],\n            [28.0544429867754, 45.944586086605625],\n            [28.23355350109904, 45.48828318946829]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Hungary\",\n        \"sov_a3\": \"HUN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Hungary\",\n        \"adm0_a3\": \"HUN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Hungary\",\n        \"gu_a3\": \"HUN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Hungary\",\n        \"su_a3\": \"HUN\",\n        \"brk_diff\": 0,\n        \"name\": \"Hungary\",\n        \"name_long\": \"Hungary\",\n        \"brk_a3\": \"HUN\",\n        \"brk_name\": \"Hungary\",\n        \"brk_group\": null,\n        \"abbrev\": \"Hun.\",\n        \"postal\": \"HU\",\n        \"formal_en\": \"Republic of Hungary\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Hungary\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Hungary\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 5,\n        \"pop_est\": 9769949,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 163469,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"HU\",\n        \"iso_a2\": \"HU\",\n        \"iso_a2_eh\": \"HU\",\n        \"iso_a3\": \"HUN\",\n        \"iso_a3_eh\": \"HUN\",\n        \"iso_n3\": \"348\",\n        \"iso_n3_eh\": \"348\",\n        \"un_a3\": \"348\",\n        \"wb_a2\": \"HU\",\n        \"wb_a3\": \"HUN\",\n        \"woe_id\": 23424844,\n        \"woe_id_eh\": 23424844,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"HUN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"HUN\",\n        \"adm0_a3_us\": \"HUN\",\n        \"adm0_a3_fr\": \"HUN\",\n        \"adm0_a3_ru\": \"HUN\",\n        \"adm0_a3_es\": \"HUN\",\n        \"adm0_a3_cn\": \"HUN\",\n        \"adm0_a3_tw\": \"HUN\",\n        \"adm0_a3_in\": \"HUN\",\n        \"adm0_a3_np\": \"HUN\",\n        \"adm0_a3_pk\": \"HUN\",\n        \"adm0_a3_de\": \"HUN\",\n        \"adm0_a3_gb\": \"HUN\",\n        \"adm0_a3_br\": \"HUN\",\n        \"adm0_a3_il\": \"HUN\",\n        \"adm0_a3_ps\": \"HUN\",\n        \"adm0_a3_sa\": \"HUN\",\n        \"adm0_a3_eg\": \"HUN\",\n        \"adm0_a3_ma\": \"HUN\",\n        \"adm0_a3_pt\": \"HUN\",\n        \"adm0_a3_ar\": \"HUN\",\n        \"adm0_a3_jp\": \"HUN\",\n        \"adm0_a3_ko\": \"HUN\",\n        \"adm0_a3_vn\": \"HUN\",\n        \"adm0_a3_tr\": \"HUN\",\n        \"adm0_a3_id\": \"HUN\",\n        \"adm0_a3_pl\": \"HUN\",\n        \"adm0_a3_gr\": \"HUN\",\n        \"adm0_a3_it\": \"HUN\",\n        \"adm0_a3_nl\": \"HUN\",\n        \"adm0_a3_se\": \"HUN\",\n        \"adm0_a3_bd\": \"HUN\",\n        \"adm0_a3_ua\": \"HUN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Eastern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 19.447867,\n        \"label_y\": 47.086841,\n        \"ne_id\": 1159320841,\n        \"wikidataid\": \"Q28\",\n        \"name_ar\": \"المجر\",\n        \"name_bn\": \"হাঙ্গেরি\",\n        \"name_de\": \"Ungarn\",\n        \"name_en\": \"Hungary\",\n        \"name_es\": \"Hungría\",\n        \"name_fa\": \"مجارستان\",\n        \"name_fr\": \"Hongrie\",\n        \"name_el\": \"Ουγγαρία\",\n        \"name_he\": \"הונגריה\",\n        \"name_hi\": \"हंगरी\",\n        \"name_hu\": \"Magyarország\",\n        \"name_id\": \"Hongaria\",\n        \"name_it\": \"Ungheria\",\n        \"name_ja\": \"ハンガリー\",\n        \"name_ko\": \"헝가리\",\n        \"name_nl\": \"Hongarije\",\n        \"name_pl\": \"Węgry\",\n        \"name_pt\": \"Hungria\",\n        \"name_ru\": \"Венгрия\",\n        \"name_sv\": \"Ungern\",\n        \"name_tr\": \"Macaristan\",\n        \"name_uk\": \"Угорщина\",\n        \"name_ur\": \"ہنگری\",\n        \"name_vi\": \"Hungary\",\n        \"name_zh\": \"匈牙利\",\n        \"name_zht\": \"匈牙利\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"HUN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [22.085608351334855, 48.42226430927179],\n            [22.640819939878725, 48.150239569687415],\n            [22.710531447040495, 47.88219391538941],\n            [22.099767693782837, 47.6724392767167],\n            [21.626514926853872, 46.99423777931816],\n            [21.02195234547125, 46.3160879583519],\n            [20.220192498462836, 46.127468980486555],\n            [19.596044549241583, 46.17172984474454],\n            [18.82983808764996, 45.90887767189193],\n            [18.829824792873946, 45.908872358025285],\n            [18.45606245288286, 45.75948110613615],\n            [17.630066359129557, 45.95176911069419],\n            [16.8825150895953, 46.38063182228444],\n            [16.564808383864857, 46.50375092221983],\n            [16.370504998447416, 46.841327216166505],\n            [16.202298211337364, 46.85238597267696],\n            [16.534267612380376, 47.49617096616912],\n            [16.340584344150415, 47.71290192320123],\n            [16.90375410326726, 47.71486562762833],\n            [16.979666782304037, 48.123497015976305],\n            [17.48847293464982, 47.867466132186216],\n            [17.857132602620027, 47.75842886005037],\n            [18.696512892336926, 47.880953681014404],\n            [18.77702477384767, 48.081768296900634],\n            [19.17436486173989, 48.11137889260387],\n            [19.661363559658497, 48.26661489520866],\n            [19.769470656013112, 48.202691148463614],\n            [20.239054396249347, 48.32756724709692],\n            [20.473562045989866, 48.562850043321816],\n            [20.801293979584926, 48.623854071642384],\n            [21.872236362401736, 48.31997081155002],\n            [22.085608351334855, 48.42226430927179]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Slovakia\",\n        \"sov_a3\": \"SVK\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Slovakia\",\n        \"adm0_a3\": \"SVK\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Slovakia\",\n        \"gu_a3\": \"SVK\",\n        \"su_dif\": 0,\n        \"subunit\": \"Slovakia\",\n        \"su_a3\": \"SVK\",\n        \"brk_diff\": 0,\n        \"name\": \"Slovakia\",\n        \"name_long\": \"Slovakia\",\n        \"brk_a3\": \"SVK\",\n        \"brk_name\": \"Slovakia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Svk.\",\n        \"postal\": \"SK\",\n        \"formal_en\": \"Slovak Republic\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Slovakia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Slovak Republic\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 9,\n        \"pop_est\": 5454073,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 105079,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"LO\",\n        \"iso_a2\": \"SK\",\n        \"iso_a2_eh\": \"SK\",\n        \"iso_a3\": \"SVK\",\n        \"iso_a3_eh\": \"SVK\",\n        \"iso_n3\": \"703\",\n        \"iso_n3_eh\": \"703\",\n        \"un_a3\": \"703\",\n        \"wb_a2\": \"SK\",\n        \"wb_a3\": \"SVK\",\n        \"woe_id\": 23424877,\n        \"woe_id_eh\": 23424877,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"SVK\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"SVK\",\n        \"adm0_a3_us\": \"SVK\",\n        \"adm0_a3_fr\": \"SVK\",\n        \"adm0_a3_ru\": \"SVK\",\n        \"adm0_a3_es\": \"SVK\",\n        \"adm0_a3_cn\": \"SVK\",\n        \"adm0_a3_tw\": \"SVK\",\n        \"adm0_a3_in\": \"SVK\",\n        \"adm0_a3_np\": \"SVK\",\n        \"adm0_a3_pk\": \"SVK\",\n        \"adm0_a3_de\": \"SVK\",\n        \"adm0_a3_gb\": \"SVK\",\n        \"adm0_a3_br\": \"SVK\",\n        \"adm0_a3_il\": \"SVK\",\n        \"adm0_a3_ps\": \"SVK\",\n        \"adm0_a3_sa\": \"SVK\",\n        \"adm0_a3_eg\": \"SVK\",\n        \"adm0_a3_ma\": \"SVK\",\n        \"adm0_a3_pt\": \"SVK\",\n        \"adm0_a3_ar\": \"SVK\",\n        \"adm0_a3_jp\": \"SVK\",\n        \"adm0_a3_ko\": \"SVK\",\n        \"adm0_a3_vn\": \"SVK\",\n        \"adm0_a3_tr\": \"SVK\",\n        \"adm0_a3_id\": \"SVK\",\n        \"adm0_a3_pl\": \"SVK\",\n        \"adm0_a3_gr\": \"SVK\",\n        \"adm0_a3_it\": \"SVK\",\n        \"adm0_a3_nl\": \"SVK\",\n        \"adm0_a3_se\": \"SVK\",\n        \"adm0_a3_bd\": \"SVK\",\n        \"adm0_a3_ua\": \"SVK\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Eastern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 19.049868,\n        \"label_y\": 48.734044,\n        \"ne_id\": 1159321283,\n        \"wikidataid\": \"Q214\",\n        \"name_ar\": \"سلوفاكيا\",\n        \"name_bn\": \"স্লোভাকিয়া\",\n        \"name_de\": \"Slowakei\",\n        \"name_en\": \"Slovakia\",\n        \"name_es\": \"Eslovaquia\",\n        \"name_fa\": \"اسلواکی\",\n        \"name_fr\": \"Slovaquie\",\n        \"name_el\": \"Σλοβακία\",\n        \"name_he\": \"סלובקיה\",\n        \"name_hi\": \"स्लोवाकिया\",\n        \"name_hu\": \"Szlovákia\",\n        \"name_id\": \"Slowakia\",\n        \"name_it\": \"Slovacchia\",\n        \"name_ja\": \"スロバキア\",\n        \"name_ko\": \"슬로바키아\",\n        \"name_nl\": \"Slowakije\",\n        \"name_pl\": \"Słowacja\",\n        \"name_pt\": \"Eslováquia\",\n        \"name_ru\": \"Словакия\",\n        \"name_sv\": \"Slovakien\",\n        \"name_tr\": \"Slovakya\",\n        \"name_uk\": \"Словаччина\",\n        \"name_ur\": \"سلوواکیہ\",\n        \"name_vi\": \"Slovakia\",\n        \"name_zh\": \"斯洛伐克\",\n        \"name_zht\": \"斯洛伐克\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"SVK.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [22.558137648211755, 49.085738023467144],\n            [22.28084191253356, 48.82539215758067],\n            [22.085608351334855, 48.42226430927179],\n            [21.872236362401736, 48.31997081155002],\n            [20.801293979584926, 48.623854071642384],\n            [20.473562045989866, 48.562850043321816],\n            [20.239054396249347, 48.32756724709692],\n            [19.769470656013112, 48.202691148463614],\n            [19.661363559658497, 48.26661489520866],\n            [19.17436486173989, 48.11137889260387],\n            [18.77702477384767, 48.081768296900634],\n            [18.696512892336926, 47.880953681014404],\n            [17.857132602620027, 47.75842886005037],\n            [17.48847293464982, 47.867466132186216],\n            [16.979666782304037, 48.123497015976305],\n            [16.879982944413, 48.47001333270947],\n            [16.960288120194576, 48.5969823268506],\n            [17.101984897538898, 48.816968899117114],\n            [17.545006951577108, 48.80001902932537],\n            [17.88648481616181, 48.90347524677371],\n            [17.913511590250465, 48.996492824899086],\n            [18.104972771891852, 49.04398346617531],\n            [18.170498488037964, 49.271514797556435],\n            [18.399993523846177, 49.31500051533004],\n            [18.554971144289482, 49.495015367218784],\n            [18.853144158613617, 49.49622976337764],\n            [18.90957482267632, 49.435845852244576],\n            [19.320712517990472, 49.571574001659194],\n            [19.825022820726872, 49.21712535256923],\n            [20.415839471119853, 49.43145335549977],\n            [20.887955356538413, 49.32877228453583],\n            [21.607808058364213, 49.47010732685409],\n            [22.558137648211755, 49.085738023467144]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Poland\",\n        \"sov_a3\": \"POL\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Poland\",\n        \"adm0_a3\": \"POL\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Poland\",\n        \"gu_a3\": \"POL\",\n        \"su_dif\": 0,\n        \"subunit\": \"Poland\",\n        \"su_a3\": \"POL\",\n        \"brk_diff\": 0,\n        \"name\": \"Poland\",\n        \"name_long\": \"Poland\",\n        \"brk_a3\": \"POL\",\n        \"brk_name\": \"Poland\",\n        \"brk_group\": null,\n        \"abbrev\": \"Pol.\",\n        \"postal\": \"PL\",\n        \"formal_en\": \"Republic of Poland\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Poland\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Poland\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 7,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 2,\n        \"pop_est\": 37970874,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 595858,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"PL\",\n        \"iso_a2\": \"PL\",\n        \"iso_a2_eh\": \"PL\",\n        \"iso_a3\": \"POL\",\n        \"iso_a3_eh\": \"POL\",\n        \"iso_n3\": \"616\",\n        \"iso_n3_eh\": \"616\",\n        \"un_a3\": \"616\",\n        \"wb_a2\": \"PL\",\n        \"wb_a3\": \"POL\",\n        \"woe_id\": 23424923,\n        \"woe_id_eh\": 23424923,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"POL\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"POL\",\n        \"adm0_a3_us\": \"POL\",\n        \"adm0_a3_fr\": \"POL\",\n        \"adm0_a3_ru\": \"POL\",\n        \"adm0_a3_es\": \"POL\",\n        \"adm0_a3_cn\": \"POL\",\n        \"adm0_a3_tw\": \"POL\",\n        \"adm0_a3_in\": \"POL\",\n        \"adm0_a3_np\": \"POL\",\n        \"adm0_a3_pk\": \"POL\",\n        \"adm0_a3_de\": \"POL\",\n        \"adm0_a3_gb\": \"POL\",\n        \"adm0_a3_br\": \"POL\",\n        \"adm0_a3_il\": \"POL\",\n        \"adm0_a3_ps\": \"POL\",\n        \"adm0_a3_sa\": \"POL\",\n        \"adm0_a3_eg\": \"POL\",\n        \"adm0_a3_ma\": \"POL\",\n        \"adm0_a3_pt\": \"POL\",\n        \"adm0_a3_ar\": \"POL\",\n        \"adm0_a3_jp\": \"POL\",\n        \"adm0_a3_ko\": \"POL\",\n        \"adm0_a3_vn\": \"POL\",\n        \"adm0_a3_tr\": \"POL\",\n        \"adm0_a3_id\": \"POL\",\n        \"adm0_a3_pl\": \"POL\",\n        \"adm0_a3_gr\": \"POL\",\n        \"adm0_a3_it\": \"POL\",\n        \"adm0_a3_nl\": \"POL\",\n        \"adm0_a3_se\": \"POL\",\n        \"adm0_a3_bd\": \"POL\",\n        \"adm0_a3_ua\": \"POL\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Eastern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.5,\n        \"max_label\": 7,\n        \"label_x\": 19.490468,\n        \"label_y\": 51.990316,\n        \"ne_id\": 1159321179,\n        \"wikidataid\": \"Q36\",\n        \"name_ar\": \"بولندا\",\n        \"name_bn\": \"পোল্যান্ড\",\n        \"name_de\": \"Polen\",\n        \"name_en\": \"Poland\",\n        \"name_es\": \"Polonia\",\n        \"name_fa\": \"لهستان\",\n        \"name_fr\": \"Pologne\",\n        \"name_el\": \"Πολωνία\",\n        \"name_he\": \"פולין\",\n        \"name_hi\": \"पोलैंड\",\n        \"name_hu\": \"Lengyelország\",\n        \"name_id\": \"Polandia\",\n        \"name_it\": \"Polonia\",\n        \"name_ja\": \"ポーランド\",\n        \"name_ko\": \"폴란드\",\n        \"name_nl\": \"Polen\",\n        \"name_pl\": \"Polska\",\n        \"name_pt\": \"Polónia\",\n        \"name_ru\": \"Польша\",\n        \"name_sv\": \"Polen\",\n        \"name_tr\": \"Polonya\",\n        \"name_uk\": \"Польща\",\n        \"name_ur\": \"پولینڈ\",\n        \"name_vi\": \"Ba Lan\",\n        \"name_zh\": \"波兰\",\n        \"name_zht\": \"波蘭\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"POL.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [23.48412763844985, 53.91249766704114],\n            [23.527535841575002, 53.470121568406555],\n            [23.80493493011778, 53.089731350306074],\n            [23.79919884613338, 52.69109935160657],\n            [23.199493849386187, 52.48697744405367],\n            [23.508002150168693, 52.02364655212473],\n            [23.52707075368437, 51.57845408793031],\n            [24.029985792748903, 50.70540660257518],\n            [23.92275719574326, 50.42488108987874],\n            [23.426508416444392, 50.30850576435745],\n            [22.518450148211603, 49.47677358661974],\n            [22.776418898212626, 49.02739533140962],\n            [22.558137648211755, 49.085738023467144],\n            [21.607808058364213, 49.47010732685409],\n            [20.887955356538413, 49.32877228453583],\n            [20.415839471119853, 49.43145335549977],\n            [19.825022820726872, 49.21712535256923],\n            [19.320712517990472, 49.571574001659194],\n            [18.90957482267632, 49.435845852244576],\n            [18.853144158613617, 49.49622976337764],\n            [18.392913852622172, 49.98862864847075],\n            [17.64944502123899, 50.049038397819956],\n            [17.55456709155112, 50.36214590107642],\n            [16.86876915860566, 50.47397370055603],\n            [16.719475945714436, 50.21574656839354],\n            [16.176253289462267, 50.42260732685791],\n            [16.23862674323857, 50.69773265237984],\n            [15.490972120839729, 50.78472992614321],\n            [15.01699588385867, 51.10667409932158],\n            [14.607098422919535, 51.74518809671997],\n            [14.685026482815687, 52.0899474147552],\n            [14.437599725002201, 52.62485016540839],\n            [14.074521111719434, 52.98126251892535],\n            [14.353315463934138, 53.24817129171297],\n            [14.119686313542559, 53.75702912049104],\n            [14.802900424873458, 54.05070628520575],\n            [16.36347700365573, 54.513158677785725],\n            [17.622831658608675, 54.85153595643291],\n            [18.62085859546164, 54.68260569927078],\n            [18.696254510175464, 54.43871877706929],\n            [19.660640089606403, 54.42608388937393],\n            [20.892244500418627, 54.31252492941253],\n            [22.731098667092652, 54.327536932993326],\n            [23.24398725758951, 54.22056671814914],\n            [23.48412763844985, 53.91249766704114]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Ireland\",\n        \"sov_a3\": \"IRL\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Ireland\",\n        \"adm0_a3\": \"IRL\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Ireland\",\n        \"gu_a3\": \"IRL\",\n        \"su_dif\": 0,\n        \"subunit\": \"Ireland\",\n        \"su_a3\": \"IRL\",\n        \"brk_diff\": 0,\n        \"name\": \"Ireland\",\n        \"name_long\": \"Ireland\",\n        \"brk_a3\": \"IRL\",\n        \"brk_name\": \"Ireland\",\n        \"brk_group\": null,\n        \"abbrev\": \"Ire.\",\n        \"postal\": \"IRL\",\n        \"formal_en\": \"Ireland\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Ireland\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Ireland\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 2,\n        \"pop_est\": 4941444,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 388698,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"EI\",\n        \"iso_a2\": \"IE\",\n        \"iso_a2_eh\": \"IE\",\n        \"iso_a3\": \"IRL\",\n        \"iso_a3_eh\": \"IRL\",\n        \"iso_n3\": \"372\",\n        \"iso_n3_eh\": \"372\",\n        \"un_a3\": \"372\",\n        \"wb_a2\": \"IE\",\n        \"wb_a3\": \"IRL\",\n        \"woe_id\": 23424803,\n        \"woe_id_eh\": 23424803,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"IRL\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"IRL\",\n        \"adm0_a3_us\": \"IRL\",\n        \"adm0_a3_fr\": \"IRL\",\n        \"adm0_a3_ru\": \"IRL\",\n        \"adm0_a3_es\": \"IRL\",\n        \"adm0_a3_cn\": \"IRL\",\n        \"adm0_a3_tw\": \"IRL\",\n        \"adm0_a3_in\": \"IRL\",\n        \"adm0_a3_np\": \"IRL\",\n        \"adm0_a3_pk\": \"IRL\",\n        \"adm0_a3_de\": \"IRL\",\n        \"adm0_a3_gb\": \"IRL\",\n        \"adm0_a3_br\": \"IRL\",\n        \"adm0_a3_il\": \"IRL\",\n        \"adm0_a3_ps\": \"IRL\",\n        \"adm0_a3_sa\": \"IRL\",\n        \"adm0_a3_eg\": \"IRL\",\n        \"adm0_a3_ma\": \"IRL\",\n        \"adm0_a3_pt\": \"IRL\",\n        \"adm0_a3_ar\": \"IRL\",\n        \"adm0_a3_jp\": \"IRL\",\n        \"adm0_a3_ko\": \"IRL\",\n        \"adm0_a3_vn\": \"IRL\",\n        \"adm0_a3_tr\": \"IRL\",\n        \"adm0_a3_id\": \"IRL\",\n        \"adm0_a3_pl\": \"IRL\",\n        \"adm0_a3_gr\": \"IRL\",\n        \"adm0_a3_it\": \"IRL\",\n        \"adm0_a3_nl\": \"IRL\",\n        \"adm0_a3_se\": \"IRL\",\n        \"adm0_a3_bd\": \"IRL\",\n        \"adm0_a3_ua\": \"IRL\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Northern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": -7.798588,\n        \"label_y\": 53.078726,\n        \"ne_id\": 1159320877,\n        \"wikidataid\": \"Q27\",\n        \"name_ar\": \"جمهورية أيرلندا\",\n        \"name_bn\": \"প্রজাতন্ত্রী আয়ারল্যান্ড\",\n        \"name_de\": \"Irland\",\n        \"name_en\": \"Ireland\",\n        \"name_es\": \"Irlanda\",\n        \"name_fa\": \"ایرلند\",\n        \"name_fr\": \"Irlande\",\n        \"name_el\": \"Δημοκρατία της Ιρλανδίας\",\n        \"name_he\": \"אירלנד\",\n        \"name_hi\": \"आयरलैण्ड\",\n        \"name_hu\": \"Írország\",\n        \"name_id\": \"Republik Irlandia\",\n        \"name_it\": \"Irlanda\",\n        \"name_ja\": \"アイルランド\",\n        \"name_ko\": \"아일랜드\",\n        \"name_nl\": \"Ierland\",\n        \"name_pl\": \"Irlandia\",\n        \"name_pt\": \"República da Irlanda\",\n        \"name_ru\": \"Ирландия\",\n        \"name_sv\": \"Irland\",\n        \"name_tr\": \"İrlanda\",\n        \"name_uk\": \"Ірландія\",\n        \"name_ur\": \"جمہوریہ آئرلینڈ\",\n        \"name_vi\": \"Cộng hòa Ireland\",\n        \"name_zh\": \"爱尔兰\",\n        \"name_zht\": \"愛爾蘭\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"IRL.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-6.197884894220991, 53.867565009163364],\n            [-6.032985398777611, 53.15316417094435],\n            [-6.788856573910849, 52.260117906292336],\n            [-8.56161658368356, 51.669301255899356],\n            [-9.977085740590269, 51.82045482035308],\n            [-9.166282517930782, 52.86462881124268],\n            [-9.688524542672454, 53.8813626165853],\n            [-8.327987433292009, 54.66451894796863],\n            [-7.572167934591064, 55.13162221945487],\n            [-7.366030646178785, 54.59584096945272],\n            [-7.572167934591064, 54.059956366586],\n            [-6.953730231138067, 54.073702297575636],\n            [-6.197884894220991, 53.867565009163364]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"United Kingdom\",\n        \"sov_a3\": \"GB1\",\n        \"adm0_dif\": 1,\n        \"level\": 2,\n        \"type\": \"Country\",\n        \"tlc\": \"1\",\n        \"admin\": \"United Kingdom\",\n        \"adm0_a3\": \"GBR\",\n        \"geou_dif\": 0,\n        \"geounit\": \"United Kingdom\",\n        \"gu_a3\": \"GBR\",\n        \"su_dif\": 0,\n        \"subunit\": \"United Kingdom\",\n        \"su_a3\": \"GBR\",\n        \"brk_diff\": 0,\n        \"name\": \"United Kingdom\",\n        \"name_long\": \"United Kingdom\",\n        \"brk_a3\": \"GBR\",\n        \"brk_name\": \"United Kingdom\",\n        \"brk_group\": null,\n        \"abbrev\": \"U.K.\",\n        \"postal\": \"GB\",\n        \"formal_en\": \"United Kingdom of Great Britain and Northern Ireland\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"United Kingdom\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"United Kingdom\",\n        \"name_alt\": null,\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 6,\n        \"mapcolor9\": 6,\n        \"mapcolor13\": 3,\n        \"pop_est\": 66834405,\n        \"pop_rank\": 16,\n        \"pop_year\": 2019,\n        \"gdp_md\": 2829108,\n        \"gdp_year\": 2019,\n        \"economy\": \"1. Developed region: G7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"UK\",\n        \"iso_a2\": \"GB\",\n        \"iso_a2_eh\": \"GB\",\n        \"iso_a3\": \"GBR\",\n        \"iso_a3_eh\": \"GBR\",\n        \"iso_n3\": \"826\",\n        \"iso_n3_eh\": \"826\",\n        \"un_a3\": \"826\",\n        \"wb_a2\": \"GB\",\n        \"wb_a3\": \"GBR\",\n        \"woe_id\": -90,\n        \"woe_id_eh\": 23424975,\n        \"woe_note\": \"Eh ID includes Channel Islands and Isle of Man. UK constituent countries of England (24554868), Wales (12578049), Scotland (12578048), and Northern Ireland (20070563).\",\n        \"adm0_iso\": \"GBR\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"GBR\",\n        \"adm0_a3_us\": \"GBR\",\n        \"adm0_a3_fr\": \"GBR\",\n        \"adm0_a3_ru\": \"GBR\",\n        \"adm0_a3_es\": \"GBR\",\n        \"adm0_a3_cn\": \"GBR\",\n        \"adm0_a3_tw\": \"GBR\",\n        \"adm0_a3_in\": \"GBR\",\n        \"adm0_a3_np\": \"GBR\",\n        \"adm0_a3_pk\": \"GBR\",\n        \"adm0_a3_de\": \"GBR\",\n        \"adm0_a3_gb\": \"GBR\",\n        \"adm0_a3_br\": \"GBR\",\n        \"adm0_a3_il\": \"GBR\",\n        \"adm0_a3_ps\": \"GBR\",\n        \"adm0_a3_sa\": \"GBR\",\n        \"adm0_a3_eg\": \"GBR\",\n        \"adm0_a3_ma\": \"GBR\",\n        \"adm0_a3_pt\": \"GBR\",\n        \"adm0_a3_ar\": \"GBR\",\n        \"adm0_a3_jp\": \"GBR\",\n        \"adm0_a3_ko\": \"GBR\",\n        \"adm0_a3_vn\": \"GBR\",\n        \"adm0_a3_tr\": \"GBR\",\n        \"adm0_a3_id\": \"GBR\",\n        \"adm0_a3_pl\": \"GBR\",\n        \"adm0_a3_gr\": \"GBR\",\n        \"adm0_a3_it\": \"GBR\",\n        \"adm0_a3_nl\": \"GBR\",\n        \"adm0_a3_se\": \"GBR\",\n        \"adm0_a3_bd\": \"GBR\",\n        \"adm0_a3_ua\": \"GBR\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Northern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 14,\n        \"long_len\": 14,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 6.7,\n        \"label_x\": -2.116346,\n        \"label_y\": 54.402739,\n        \"ne_id\": 1159320713,\n        \"wikidataid\": \"Q145\",\n        \"name_ar\": \"المملكة المتحدة\",\n        \"name_bn\": \"যুক্তরাজ্য\",\n        \"name_de\": \"Vereinigtes Königreich\",\n        \"name_en\": \"United Kingdom\",\n        \"name_es\": \"Reino Unido\",\n        \"name_fa\": \"بریتانیا\",\n        \"name_fr\": \"Royaume-Uni\",\n        \"name_el\": \"Ηνωμένο Βασίλειο\",\n        \"name_he\": \"הממלכה המאוחדת\",\n        \"name_hi\": \"यूनाइटेड किंगडम\",\n        \"name_hu\": \"Egyesült Királyság\",\n        \"name_id\": \"Britania Raya\",\n        \"name_it\": \"Regno Unito\",\n        \"name_ja\": \"イギリス\",\n        \"name_ko\": \"영국\",\n        \"name_nl\": \"Verenigd Koninkrijk\",\n        \"name_pl\": \"Wielka Brytania\",\n        \"name_pt\": \"Reino Unido\",\n        \"name_ru\": \"Великобритания\",\n        \"name_sv\": \"Storbritannien\",\n        \"name_tr\": \"Birleşik Krallık\",\n        \"name_uk\": \"Велика Британія\",\n        \"name_ur\": \"مملکت متحدہ\",\n        \"name_vi\": \"Vương quốc Liên hiệp Anh và Bắc Ireland\",\n        \"name_zh\": \"英国\",\n        \"name_zht\": \"英國\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"GBR.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-6.197884894220991, 53.867565009163364],\n              [-6.953730231138067, 54.073702297575636],\n              [-7.572167934591064, 54.059956366586],\n              [-7.366030646178785, 54.59584096945272],\n              [-7.572167934591064, 55.13162221945487],\n              [-6.733847011736145, 55.17286001242378],\n              [-5.661948614921968, 54.55460317648381],\n              [-6.197884894220991, 53.867565009163364]\n            ]\n          ],\n          [\n            [\n              [-3.093830673788716, 53.404547400669685],\n              [-3.092079637047107, 53.40444082296358],\n              [-2.945008510744344, 53.98499970154671],\n              [-3.614700825433033, 54.600936773292574],\n              [-3.630005458989331, 54.615012925833014],\n              [-4.844169073903061, 54.790971177786844],\n              [-5.082526617849283, 55.06160065369937],\n              [-4.7191121077567, 55.50847260194348],\n              [-5.047980922862109, 55.78398550070756],\n              [-5.586397670911197, 55.31114614523682],\n              [-5.644998745130238, 56.27501496034483],\n              [-6.149980841486411, 56.785009670633485],\n              [-5.786824713555291, 57.81884837506465],\n              [-5.009998745127632, 58.63001333275008],\n              [-4.211494513353557, 58.55084503847911],\n              [-3.005004848635281, 58.63500010846633],\n              [-4.073828497728073, 57.55302480735526],\n              [-3.055001796877718, 57.69001902936094],\n              [-1.959280564776918, 57.68479970969952],\n              [-2.219988165689358, 56.87001740175356],\n              [-3.119003058271176, 55.973793036515474],\n              [-2.085009324543023, 55.9099984808513],\n              [-2.005675679673857, 55.804902850350175],\n              [-1.11499101399221, 54.624986477265395],\n              [-0.4304849918542, 54.46437612570219],\n              [0.184981316742039, 53.32501414653103],\n              [0.469976840831805, 52.929999498092],\n              [1.681530795914682, 52.739520168664],\n              [1.559987827164321, 52.09999848083601],\n              [1.050561557630942, 51.806760565795685],\n              [1.449865349950244, 51.28942780212191],\n              [0.550333693045502, 50.765738837275876],\n              [-0.787517462558696, 50.77498891865622],\n              [-2.489997524414434, 50.50001862243124],\n              [-2.956273972984093, 50.696879991247044],\n              [-3.617448085942385, 50.22835561787275],\n              [-4.542507900399244, 50.341837063185665],\n              [-5.245023159191135, 49.95999990498109],\n              [-5.776566941745273, 50.15967763935686],\n              [-4.309989793301895, 51.21000112568919],\n              [-3.414850633142123, 51.42600861266925],\n              [-3.422719467108379, 51.42684816740609],\n              [-4.98436723471093, 51.593466091511004],\n              [-5.267295701508942, 51.991400458374585],\n              [-4.222346564134909, 52.301355699261364],\n              [-4.77001339356417, 52.840004991255626],\n              [-4.579999152026971, 53.49500377055517],\n              [-3.093830673788716, 53.404547400669685]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Greece\",\n        \"sov_a3\": \"GRC\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Greece\",\n        \"adm0_a3\": \"GRC\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Greece\",\n        \"gu_a3\": \"GRC\",\n        \"su_dif\": 0,\n        \"subunit\": \"Greece\",\n        \"su_a3\": \"GRC\",\n        \"brk_diff\": 0,\n        \"name\": \"Greece\",\n        \"name_long\": \"Greece\",\n        \"brk_a3\": \"GRC\",\n        \"brk_name\": \"Greece\",\n        \"brk_group\": null,\n        \"abbrev\": \"Greece\",\n        \"postal\": \"GR\",\n        \"formal_en\": \"Hellenic Republic\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Greece\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Greece\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 9,\n        \"pop_est\": 10716322,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 209852,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"GR\",\n        \"iso_a2\": \"GR\",\n        \"iso_a2_eh\": \"GR\",\n        \"iso_a3\": \"GRC\",\n        \"iso_a3_eh\": \"GRC\",\n        \"iso_n3\": \"300\",\n        \"iso_n3_eh\": \"300\",\n        \"un_a3\": \"300\",\n        \"wb_a2\": \"GR\",\n        \"wb_a3\": \"GRC\",\n        \"woe_id\": 23424833,\n        \"woe_id_eh\": 23424833,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"GRC\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"GRC\",\n        \"adm0_a3_us\": \"GRC\",\n        \"adm0_a3_fr\": \"GRC\",\n        \"adm0_a3_ru\": \"GRC\",\n        \"adm0_a3_es\": \"GRC\",\n        \"adm0_a3_cn\": \"GRC\",\n        \"adm0_a3_tw\": \"GRC\",\n        \"adm0_a3_in\": \"GRC\",\n        \"adm0_a3_np\": \"GRC\",\n        \"adm0_a3_pk\": \"GRC\",\n        \"adm0_a3_de\": \"GRC\",\n        \"adm0_a3_gb\": \"GRC\",\n        \"adm0_a3_br\": \"GRC\",\n        \"adm0_a3_il\": \"GRC\",\n        \"adm0_a3_ps\": \"GRC\",\n        \"adm0_a3_sa\": \"GRC\",\n        \"adm0_a3_eg\": \"GRC\",\n        \"adm0_a3_ma\": \"GRC\",\n        \"adm0_a3_pt\": \"GRC\",\n        \"adm0_a3_ar\": \"GRC\",\n        \"adm0_a3_jp\": \"GRC\",\n        \"adm0_a3_ko\": \"GRC\",\n        \"adm0_a3_vn\": \"GRC\",\n        \"adm0_a3_tr\": \"GRC\",\n        \"adm0_a3_id\": \"GRC\",\n        \"adm0_a3_pl\": \"GRC\",\n        \"adm0_a3_gr\": \"GRC\",\n        \"adm0_a3_it\": \"GRC\",\n        \"adm0_a3_nl\": \"GRC\",\n        \"adm0_a3_se\": \"GRC\",\n        \"adm0_a3_bd\": \"GRC\",\n        \"adm0_a3_ua\": \"GRC\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Southern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.7,\n        \"max_label\": 8,\n        \"label_x\": 21.72568,\n        \"label_y\": 39.492763,\n        \"ne_id\": 1159320811,\n        \"wikidataid\": \"Q41\",\n        \"name_ar\": \"اليونان\",\n        \"name_bn\": \"গ্রিস\",\n        \"name_de\": \"Griechenland\",\n        \"name_en\": \"Greece\",\n        \"name_es\": \"Grecia\",\n        \"name_fa\": \"یونان\",\n        \"name_fr\": \"Grèce\",\n        \"name_el\": \"Ελλάδα\",\n        \"name_he\": \"יוון\",\n        \"name_hi\": \"यूनान\",\n        \"name_hu\": \"Görögország\",\n        \"name_id\": \"Yunani\",\n        \"name_it\": \"Grecia\",\n        \"name_ja\": \"ギリシャ\",\n        \"name_ko\": \"그리스\",\n        \"name_nl\": \"Griekenland\",\n        \"name_pl\": \"Grecja\",\n        \"name_pt\": \"Grécia\",\n        \"name_ru\": \"Греция\",\n        \"name_sv\": \"Grekland\",\n        \"name_tr\": \"Yunanistan\",\n        \"name_uk\": \"Греція\",\n        \"name_ur\": \"یونان\",\n        \"name_vi\": \"Hy Lạp\",\n        \"name_zh\": \"希腊\",\n        \"name_zht\": \"希臘\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"GRC.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [26.290002882601698, 35.29999034274793],\n              [26.16499759288766, 35.00499542900977],\n              [24.724982130642303, 34.91998769788964],\n              [24.735007358506916, 35.08499054619759],\n              [23.51497846852808, 35.27999156345098],\n              [23.699980096133004, 35.70500438083549],\n              [24.246665073348705, 35.368022365860185],\n              [25.02501549652891, 35.42499563246197],\n              [25.769207797964185, 35.35401805270908],\n              [25.745023227651586, 35.1799976669662],\n              [26.290002882601698, 35.29999034274793]\n            ]\n          ],\n          [\n            [\n              [22.952377150166452, 41.33799388281115],\n              [23.692073601992348, 41.309080918943856],\n              [24.492644891057978, 41.58389618587205],\n              [25.197201368925448, 41.23448598893053],\n              [26.106138136507127, 41.32889883072784],\n              [26.1170418637208, 41.82690460872456],\n              [26.60419559093623, 41.562114569661105],\n              [26.294602085075667, 40.93626129817413],\n              [26.05694217296534, 40.82412344010076],\n              [25.44767703624416, 40.85254547786144],\n              [24.92584842296094, 40.947061672523205],\n              [23.71481123220076, 40.687129218095095],\n              [24.40799889496401, 40.12499298762407],\n              [23.899967889102584, 39.96200552017552],\n              [23.342999301860743, 39.96099782974579],\n              [22.813987664488934, 40.476005153966526],\n              [22.626298862404724, 40.25656118423916],\n              [22.84974775563478, 39.659310818025745],\n              [23.35002729665257, 39.190011298167235],\n              [22.973099399515547, 38.97090322524963],\n              [23.530016310324925, 38.51000112563844],\n              [24.025024855248887, 38.21999298761642],\n              [24.040011020613576, 37.655014553369426],\n              [23.115002882589124, 37.920011298162194],\n              [23.409971958111043, 37.40999074965737],\n              [22.77497195810861, 37.30501007745653],\n              [23.15422529469862, 36.422505804992056],\n              [22.490028110451078, 36.4100001083774],\n              [21.67002648284364, 36.8449864771942],\n              [21.29501061370155, 37.64498932550464],\n              [21.120034213961333, 38.31032339126273],\n              [20.730032179454554, 38.769985256498785],\n              [20.217712029712857, 39.34023468683961],\n              [20.15001590341052, 39.62499766698397],\n              [20.615000441172754, 40.11000682225938],\n              [20.674996779063633, 40.43499990494303],\n              [20.999989861747224, 40.58000397395398],\n              [21.0200403174764, 40.84272695572588],\n              [21.674160597426976, 40.931274522457954],\n              [22.05537763844427, 41.14986583105269],\n              [22.597308383889015, 41.130487168943205],\n              [22.76177, 41.3048],\n              [22.952377150166452, 41.33799388281115]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Austria\",\n        \"sov_a3\": \"AUT\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Austria\",\n        \"adm0_a3\": \"AUT\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Austria\",\n        \"gu_a3\": \"AUT\",\n        \"su_dif\": 0,\n        \"subunit\": \"Austria\",\n        \"su_a3\": \"AUT\",\n        \"brk_diff\": 0,\n        \"name\": \"Austria\",\n        \"name_long\": \"Austria\",\n        \"brk_a3\": \"AUT\",\n        \"brk_name\": \"Austria\",\n        \"brk_group\": null,\n        \"abbrev\": \"Aust.\",\n        \"postal\": \"A\",\n        \"formal_en\": \"Republic of Austria\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Austria\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Austria\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 4,\n        \"pop_est\": 8877067,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 445075,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"AU\",\n        \"iso_a2\": \"AT\",\n        \"iso_a2_eh\": \"AT\",\n        \"iso_a3\": \"AUT\",\n        \"iso_a3_eh\": \"AUT\",\n        \"iso_n3\": \"040\",\n        \"iso_n3_eh\": \"040\",\n        \"un_a3\": \"040\",\n        \"wb_a2\": \"AT\",\n        \"wb_a3\": \"AUT\",\n        \"woe_id\": 23424750,\n        \"woe_id_eh\": 23424750,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"AUT\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"AUT\",\n        \"adm0_a3_us\": \"AUT\",\n        \"adm0_a3_fr\": \"AUT\",\n        \"adm0_a3_ru\": \"AUT\",\n        \"adm0_a3_es\": \"AUT\",\n        \"adm0_a3_cn\": \"AUT\",\n        \"adm0_a3_tw\": \"AUT\",\n        \"adm0_a3_in\": \"AUT\",\n        \"adm0_a3_np\": \"AUT\",\n        \"adm0_a3_pk\": \"AUT\",\n        \"adm0_a3_de\": \"AUT\",\n        \"adm0_a3_gb\": \"AUT\",\n        \"adm0_a3_br\": \"AUT\",\n        \"adm0_a3_il\": \"AUT\",\n        \"adm0_a3_ps\": \"AUT\",\n        \"adm0_a3_sa\": \"AUT\",\n        \"adm0_a3_eg\": \"AUT\",\n        \"adm0_a3_ma\": \"AUT\",\n        \"adm0_a3_pt\": \"AUT\",\n        \"adm0_a3_ar\": \"AUT\",\n        \"adm0_a3_jp\": \"AUT\",\n        \"adm0_a3_ko\": \"AUT\",\n        \"adm0_a3_vn\": \"AUT\",\n        \"adm0_a3_tr\": \"AUT\",\n        \"adm0_a3_id\": \"AUT\",\n        \"adm0_a3_pl\": \"AUT\",\n        \"adm0_a3_gr\": \"AUT\",\n        \"adm0_a3_it\": \"AUT\",\n        \"adm0_a3_nl\": \"AUT\",\n        \"adm0_a3_se\": \"AUT\",\n        \"adm0_a3_bd\": \"AUT\",\n        \"adm0_a3_ua\": \"AUT\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Western Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 14.130515,\n        \"label_y\": 47.518859,\n        \"ne_id\": 1159320379,\n        \"wikidataid\": \"Q40\",\n        \"name_ar\": \"النمسا\",\n        \"name_bn\": \"অস্ট্রিয়া\",\n        \"name_de\": \"Österreich\",\n        \"name_en\": \"Austria\",\n        \"name_es\": \"Austria\",\n        \"name_fa\": \"اتریش\",\n        \"name_fr\": \"Autriche\",\n        \"name_el\": \"Αυστρία\",\n        \"name_he\": \"אוסטריה\",\n        \"name_hi\": \"ऑस्ट्रिया\",\n        \"name_hu\": \"Ausztria\",\n        \"name_id\": \"Austria\",\n        \"name_it\": \"Austria\",\n        \"name_ja\": \"オーストリア\",\n        \"name_ko\": \"오스트리아\",\n        \"name_nl\": \"Oostenrijk\",\n        \"name_pl\": \"Austria\",\n        \"name_pt\": \"Áustria\",\n        \"name_ru\": \"Австрия\",\n        \"name_sv\": \"Österrike\",\n        \"name_tr\": \"Avusturya\",\n        \"name_uk\": \"Австрія\",\n        \"name_ur\": \"آسٹریا\",\n        \"name_vi\": \"Áo\",\n        \"name_zh\": \"奥地利\",\n        \"name_zht\": \"奧地利\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"AUT.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [16.979666782304037, 48.123497015976305],\n            [16.90375410326726, 47.71486562762833],\n            [16.340584344150415, 47.71290192320123],\n            [16.534267612380376, 47.49617096616912],\n            [16.202298211337364, 46.85238597267696],\n            [16.011663852612656, 46.6836107448117],\n            [15.137091912504985, 46.65870270444703],\n            [14.63247155117483, 46.43181732846955],\n            [13.806475457421527, 46.509306138691215],\n            [12.376485223040817, 46.76755910906985],\n            [12.153088006243054, 47.11539317482645],\n            [11.16482791509327, 46.94157949481273],\n            [11.048555942436536, 46.75135854754634],\n            [10.44270145024663, 46.89354625099743],\n            [9.932448357796659, 46.92072805438296],\n            [9.479969516649021, 47.102809963563374],\n            [9.632931756232978, 47.34760122332999],\n            [9.59422610844635, 47.52505809182027],\n            [9.89606814946319, 47.580196845075704],\n            [10.402083774465211, 47.30248769793916],\n            [10.544504021861599, 47.5663992376538],\n            [11.426414015354737, 47.523766181012974],\n            [12.141357456112788, 47.703083401065776],\n            [12.620759718484493, 47.67238760028441],\n            [12.932626987365948, 47.467645575544],\n            [13.02585127122049, 47.63758352313583],\n            [12.884102817443875, 48.28914581968786],\n            [13.243357374737, 48.416114813829054],\n            [13.595945672264437, 48.87717194273715],\n            [14.338897739324722, 48.55530528420721],\n            [14.901447381254057, 48.964401760445824],\n            [15.253415561593982, 49.03907420510758],\n            [16.02964725105022, 48.73389903420793],\n            [16.499282667718774, 48.78580801044511],\n            [16.960288120194576, 48.5969823268506],\n            [16.879982944413, 48.47001333270947],\n            [16.979666782304037, 48.123497015976305]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Italy\",\n        \"sov_a3\": \"ITA\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Italy\",\n        \"adm0_a3\": \"ITA\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Italy\",\n        \"gu_a3\": \"ITA\",\n        \"su_dif\": 0,\n        \"subunit\": \"Italy\",\n        \"su_a3\": \"ITA\",\n        \"brk_diff\": 0,\n        \"name\": \"Italy\",\n        \"name_long\": \"Italy\",\n        \"brk_a3\": \"ITA\",\n        \"brk_name\": \"Italy\",\n        \"brk_group\": null,\n        \"abbrev\": \"Italy\",\n        \"postal\": \"I\",\n        \"formal_en\": \"Italian Republic\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Italy\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Italy\",\n        \"name_alt\": null,\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 7,\n        \"mapcolor9\": 8,\n        \"mapcolor13\": 7,\n        \"pop_est\": 60297396,\n        \"pop_rank\": 16,\n        \"pop_year\": 2019,\n        \"gdp_md\": 2003576,\n        \"gdp_year\": 2019,\n        \"economy\": \"1. Developed region: G7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"IT\",\n        \"iso_a2\": \"IT\",\n        \"iso_a2_eh\": \"IT\",\n        \"iso_a3\": \"ITA\",\n        \"iso_a3_eh\": \"ITA\",\n        \"iso_n3\": \"380\",\n        \"iso_n3_eh\": \"380\",\n        \"un_a3\": \"380\",\n        \"wb_a2\": \"IT\",\n        \"wb_a3\": \"ITA\",\n        \"woe_id\": 23424853,\n        \"woe_id_eh\": 23424853,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"ITA\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"ITA\",\n        \"adm0_a3_us\": \"ITA\",\n        \"adm0_a3_fr\": \"ITA\",\n        \"adm0_a3_ru\": \"ITA\",\n        \"adm0_a3_es\": \"ITA\",\n        \"adm0_a3_cn\": \"ITA\",\n        \"adm0_a3_tw\": \"ITA\",\n        \"adm0_a3_in\": \"ITA\",\n        \"adm0_a3_np\": \"ITA\",\n        \"adm0_a3_pk\": \"ITA\",\n        \"adm0_a3_de\": \"ITA\",\n        \"adm0_a3_gb\": \"ITA\",\n        \"adm0_a3_br\": \"ITA\",\n        \"adm0_a3_il\": \"ITA\",\n        \"adm0_a3_ps\": \"ITA\",\n        \"adm0_a3_sa\": \"ITA\",\n        \"adm0_a3_eg\": \"ITA\",\n        \"adm0_a3_ma\": \"ITA\",\n        \"adm0_a3_pt\": \"ITA\",\n        \"adm0_a3_ar\": \"ITA\",\n        \"adm0_a3_jp\": \"ITA\",\n        \"adm0_a3_ko\": \"ITA\",\n        \"adm0_a3_vn\": \"ITA\",\n        \"adm0_a3_tr\": \"ITA\",\n        \"adm0_a3_id\": \"ITA\",\n        \"adm0_a3_pl\": \"ITA\",\n        \"adm0_a3_gr\": \"ITA\",\n        \"adm0_a3_it\": \"ITA\",\n        \"adm0_a3_nl\": \"ITA\",\n        \"adm0_a3_se\": \"ITA\",\n        \"adm0_a3_bd\": \"ITA\",\n        \"adm0_a3_ua\": \"ITA\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Southern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 5,\n        \"long_len\": 5,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2,\n        \"max_label\": 7,\n        \"label_x\": 11.076907,\n        \"label_y\": 44.732482,\n        \"ne_id\": 1159320919,\n        \"wikidataid\": \"Q38\",\n        \"name_ar\": \"إيطاليا\",\n        \"name_bn\": \"ইতালি\",\n        \"name_de\": \"Italien\",\n        \"name_en\": \"Italy\",\n        \"name_es\": \"Italia\",\n        \"name_fa\": \"ایتالیا\",\n        \"name_fr\": \"Italie\",\n        \"name_el\": \"Ιταλία\",\n        \"name_he\": \"איטליה\",\n        \"name_hi\": \"इटली\",\n        \"name_hu\": \"Olaszország\",\n        \"name_id\": \"Italia\",\n        \"name_it\": \"Italia\",\n        \"name_ja\": \"イタリア\",\n        \"name_ko\": \"이탈리아\",\n        \"name_nl\": \"Italië\",\n        \"name_pl\": \"Włochy\",\n        \"name_pt\": \"Itália\",\n        \"name_ru\": \"Италия\",\n        \"name_sv\": \"Italien\",\n        \"name_tr\": \"İtalya\",\n        \"name_uk\": \"Італія\",\n        \"name_ur\": \"اطالیہ\",\n        \"name_vi\": \"Ý\",\n        \"name_zh\": \"意大利\",\n        \"name_zht\": \"義大利\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"ITA.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [10.44270145024663, 46.89354625099743],\n              [11.048555942436536, 46.75135854754634],\n              [11.16482791509327, 46.94157949481273],\n              [12.153088006243054, 47.11539317482645],\n              [12.376485223040817, 46.76755910906985],\n              [13.806475457421527, 46.509306138691215],\n              [13.698109978905478, 46.01677806251735],\n              [13.937630242578308, 45.59101593686462],\n              [13.141606479554296, 45.73669179949542],\n              [12.32858117030625, 45.381778062514826],\n              [12.383874952858548, 44.885374253919096],\n              [12.261453484759102, 44.600482082693986],\n              [12.589237094786455, 44.09136587175446],\n              [13.526905958722494, 43.587727362637864],\n              [14.029820997787029, 42.761007798832466],\n              [15.142569614327925, 41.95513967545685],\n              [15.926191033601896, 41.961315009115715],\n              [16.169897088290384, 41.74029490820339],\n              [15.889345737377797, 41.541082261718216],\n              [16.785001661860548, 41.17960561783656],\n              [17.51916873543118, 40.87714345963222],\n              [18.37668745288252, 40.35562490494263],\n              [18.48024702319543, 40.16886627863981],\n              [18.293385044028042, 39.810774441073264],\n              [17.738380161213314, 40.277671006830346],\n              [16.869595981522338, 40.44223460546381],\n              [16.448743116937322, 39.79540070246644],\n              [17.17148969897147, 39.42469981542068],\n              [17.052840610429314, 38.90287120213735],\n              [16.635088331781816, 38.843572496082416],\n              [16.100960727613, 37.9858987493342],\n              [15.684086948314473, 37.908849188787016],\n              [15.687962680736348, 38.21459280044188],\n              [15.89198123542468, 38.75094249119924],\n              [16.109332309644287, 38.9645470240777],\n              [15.718813510814613, 39.54407237401492],\n              [15.413612501698793, 40.048356838535156],\n              [14.99849572109818, 40.17294871679087],\n              [14.703268263414714, 40.604550279292596],\n              [14.060671827865264, 40.7863479680954],\n              [13.627985060285397, 41.1882872584616],\n              [12.888081902730365, 41.253089504555604],\n              [12.106682570044939, 41.70453481705741],\n              [11.191906365614216, 42.3554253199897],\n              [10.51194786951774, 42.93146251074721],\n              [10.200028924203991, 43.9200068222746],\n              [9.702488234097842, 44.03627879493132],\n              [8.88894616052687, 44.36633616797951],\n              [8.428560825238577, 44.23122813575242],\n              [7.850766635783144, 43.76714793555524],\n              [7.435184767291872, 43.69384491634922],\n              [7.549596388386107, 44.12790110938481],\n              [7.007562290076635, 44.25476675066136],\n              [6.749955275101655, 45.02851797136758],\n              [7.096652459347837, 45.33309886329589],\n              [6.802355177445605, 45.70857982032864],\n              [6.843592970414505, 45.99114655210061],\n              [7.273850945676656, 45.776947740250776],\n              [7.755992058959833, 45.82449005795931],\n              [8.31662967289438, 46.16364248309086],\n              [8.489952426801324, 46.005150865251686],\n              [8.966305779667806, 46.03693187111119],\n              [9.182881707403055, 46.44021474871698],\n              [9.922836541390382, 46.31489940040919],\n              [10.363378126678612, 46.48357127540986],\n              [10.44270145024663, 46.89354625099743]\n            ]\n          ],\n          [\n            [\n              [14.761249220446189, 38.14387360285046],\n              [15.520376010813806, 38.23115509699143],\n              [15.160242954171736, 37.44404551853776],\n              [15.309897902089006, 37.13421946873183],\n              [15.099988234119422, 36.6199872909954],\n              [14.335228712631988, 36.996630967754726],\n              [13.826732618879959, 37.10453135838016],\n              [12.431003859108756, 37.61294993748375],\n              [12.570943637755136, 38.12638113051966],\n              [13.741156447004613, 38.03496552179533],\n              [14.761249220446189, 38.14387360285046]\n            ]\n          ],\n          [\n            [\n              [8.709990675500109, 40.899984442705225],\n              [9.210011834356266, 41.209991360024176],\n              [9.80997521326492, 40.50000885676613],\n              [9.669518670295616, 39.17737641047178],\n              [9.214817742559433, 39.24047333430015],\n              [8.806935662479674, 38.906617743478506],\n              [8.428302443077115, 39.17184703221655],\n              [8.388253208050912, 40.37831085871876],\n              [8.159998406617689, 40.95000722916376],\n              [8.709990675500109, 40.899984442705225]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Switzerland\",\n        \"sov_a3\": \"CHE\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Switzerland\",\n        \"adm0_a3\": \"CHE\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Switzerland\",\n        \"gu_a3\": \"CHE\",\n        \"su_dif\": 0,\n        \"subunit\": \"Switzerland\",\n        \"su_a3\": \"CHE\",\n        \"brk_diff\": 0,\n        \"name\": \"Switzerland\",\n        \"name_long\": \"Switzerland\",\n        \"brk_a3\": \"CHE\",\n        \"brk_name\": \"Switzerland\",\n        \"brk_group\": null,\n        \"abbrev\": \"Switz.\",\n        \"postal\": \"CH\",\n        \"formal_en\": \"Swiss Confederation\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Switzerland\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Switzerland\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 7,\n        \"mapcolor13\": 3,\n        \"pop_est\": 8574832,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 703082,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"SZ\",\n        \"iso_a2\": \"CH\",\n        \"iso_a2_eh\": \"CH\",\n        \"iso_a3\": \"CHE\",\n        \"iso_a3_eh\": \"CHE\",\n        \"iso_n3\": \"756\",\n        \"iso_n3_eh\": \"756\",\n        \"un_a3\": \"756\",\n        \"wb_a2\": \"CH\",\n        \"wb_a3\": \"CHE\",\n        \"woe_id\": 23424957,\n        \"woe_id_eh\": 23424957,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"CHE\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"CHE\",\n        \"adm0_a3_us\": \"CHE\",\n        \"adm0_a3_fr\": \"CHE\",\n        \"adm0_a3_ru\": \"CHE\",\n        \"adm0_a3_es\": \"CHE\",\n        \"adm0_a3_cn\": \"CHE\",\n        \"adm0_a3_tw\": \"CHE\",\n        \"adm0_a3_in\": \"CHE\",\n        \"adm0_a3_np\": \"CHE\",\n        \"adm0_a3_pk\": \"CHE\",\n        \"adm0_a3_de\": \"CHE\",\n        \"adm0_a3_gb\": \"CHE\",\n        \"adm0_a3_br\": \"CHE\",\n        \"adm0_a3_il\": \"CHE\",\n        \"adm0_a3_ps\": \"CHE\",\n        \"adm0_a3_sa\": \"CHE\",\n        \"adm0_a3_eg\": \"CHE\",\n        \"adm0_a3_ma\": \"CHE\",\n        \"adm0_a3_pt\": \"CHE\",\n        \"adm0_a3_ar\": \"CHE\",\n        \"adm0_a3_jp\": \"CHE\",\n        \"adm0_a3_ko\": \"CHE\",\n        \"adm0_a3_vn\": \"CHE\",\n        \"adm0_a3_tr\": \"CHE\",\n        \"adm0_a3_id\": \"CHE\",\n        \"adm0_a3_pl\": \"CHE\",\n        \"adm0_a3_gr\": \"CHE\",\n        \"adm0_a3_it\": \"CHE\",\n        \"adm0_a3_nl\": \"CHE\",\n        \"adm0_a3_se\": \"CHE\",\n        \"adm0_a3_bd\": \"CHE\",\n        \"adm0_a3_ua\": \"CHE\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Western Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 11,\n        \"long_len\": 11,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 7.463965,\n        \"label_y\": 46.719114,\n        \"ne_id\": 1159320491,\n        \"wikidataid\": \"Q39\",\n        \"name_ar\": \"سويسرا\",\n        \"name_bn\": \"সুইজারল্যান্ড\",\n        \"name_de\": \"Schweiz\",\n        \"name_en\": \"Switzerland\",\n        \"name_es\": \"Suiza\",\n        \"name_fa\": \"سوئیس\",\n        \"name_fr\": \"Suisse\",\n        \"name_el\": \"Ελβετία\",\n        \"name_he\": \"שווייץ\",\n        \"name_hi\": \"स्विट्ज़रलैण्ड\",\n        \"name_hu\": \"Svájc\",\n        \"name_id\": \"Swiss\",\n        \"name_it\": \"Svizzera\",\n        \"name_ja\": \"スイス\",\n        \"name_ko\": \"스위스\",\n        \"name_nl\": \"Zwitserland\",\n        \"name_pl\": \"Szwajcaria\",\n        \"name_pt\": \"Suíça\",\n        \"name_ru\": \"Швейцария\",\n        \"name_sv\": \"Schweiz\",\n        \"name_tr\": \"İsviçre\",\n        \"name_uk\": \"Швейцарія\",\n        \"name_ur\": \"سویٹزرلینڈ\",\n        \"name_vi\": \"Thụy Sĩ\",\n        \"name_zh\": \"瑞士\",\n        \"name_zht\": \"瑞士\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"CHE.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [9.59422610844635, 47.52505809182027],\n            [9.632931756232978, 47.34760122332999],\n            [9.479969516649021, 47.102809963563374],\n            [9.932448357796659, 46.92072805438296],\n            [10.44270145024663, 46.89354625099743],\n            [10.363378126678612, 46.48357127540986],\n            [9.922836541390382, 46.31489940040919],\n            [9.182881707403055, 46.44021474871698],\n            [8.966305779667806, 46.03693187111119],\n            [8.489952426801324, 46.005150865251686],\n            [8.31662967289438, 46.16364248309086],\n            [7.755992058959833, 45.82449005795931],\n            [7.273850945676656, 45.776947740250776],\n            [6.843592970414505, 45.99114655210061],\n            [6.500099724970426, 46.42967275652944],\n            [6.022609490593538, 46.27298981382047],\n            [6.037388950229001, 46.725778713561866],\n            [6.768713820023606, 47.2877082383037],\n            [6.736571079138059, 47.541801255882845],\n            [7.192202182655507, 47.44976552997102],\n            [7.466759067422231, 47.62058197691181],\n            [8.317301466514095, 47.61357982033627],\n            [8.522611932009767, 47.83082754169129],\n            [9.59422610844635, 47.52505809182027]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Netherlands\",\n        \"sov_a3\": \"NL1\",\n        \"adm0_dif\": 1,\n        \"level\": 2,\n        \"type\": \"Country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Netherlands\",\n        \"adm0_a3\": \"NLD\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Netherlands\",\n        \"gu_a3\": \"NLD\",\n        \"su_dif\": 0,\n        \"subunit\": \"Netherlands\",\n        \"su_a3\": \"NLD\",\n        \"brk_diff\": 0,\n        \"name\": \"Netherlands\",\n        \"name_long\": \"Netherlands\",\n        \"brk_a3\": \"NLD\",\n        \"brk_name\": \"Netherlands\",\n        \"brk_group\": null,\n        \"abbrev\": \"Neth.\",\n        \"postal\": \"NL\",\n        \"formal_en\": \"Kingdom of the Netherlands\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Netherlands\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Netherlands\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 9,\n        \"pop_est\": 17332850,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 907050,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"NL\",\n        \"iso_a2\": \"NL\",\n        \"iso_a2_eh\": \"NL\",\n        \"iso_a3\": \"NLD\",\n        \"iso_a3_eh\": \"NLD\",\n        \"iso_n3\": \"528\",\n        \"iso_n3_eh\": \"528\",\n        \"un_a3\": \"528\",\n        \"wb_a2\": \"NL\",\n        \"wb_a3\": \"NLD\",\n        \"woe_id\": -90,\n        \"woe_id_eh\": 23424909,\n        \"woe_note\": \"Doesn't include new former units of Netherlands Antilles (24549811, 24549808, and 24549809)\",\n        \"adm0_iso\": \"NLD\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"NLD\",\n        \"adm0_a3_us\": \"NLD\",\n        \"adm0_a3_fr\": \"NLD\",\n        \"adm0_a3_ru\": \"NLD\",\n        \"adm0_a3_es\": \"NLD\",\n        \"adm0_a3_cn\": \"NLD\",\n        \"adm0_a3_tw\": \"NLD\",\n        \"adm0_a3_in\": \"NLD\",\n        \"adm0_a3_np\": \"NLD\",\n        \"adm0_a3_pk\": \"NLD\",\n        \"adm0_a3_de\": \"NLD\",\n        \"adm0_a3_gb\": \"NLD\",\n        \"adm0_a3_br\": \"NLD\",\n        \"adm0_a3_il\": \"NLD\",\n        \"adm0_a3_ps\": \"NLD\",\n        \"adm0_a3_sa\": \"NLD\",\n        \"adm0_a3_eg\": \"NLD\",\n        \"adm0_a3_ma\": \"NLD\",\n        \"adm0_a3_pt\": \"NLD\",\n        \"adm0_a3_ar\": \"NLD\",\n        \"adm0_a3_jp\": \"NLD\",\n        \"adm0_a3_ko\": \"NLD\",\n        \"adm0_a3_vn\": \"NLD\",\n        \"adm0_a3_tr\": \"NLD\",\n        \"adm0_a3_id\": \"NLD\",\n        \"adm0_a3_pl\": \"NLD\",\n        \"adm0_a3_gr\": \"NLD\",\n        \"adm0_a3_it\": \"NLD\",\n        \"adm0_a3_nl\": \"NLD\",\n        \"adm0_a3_se\": \"NLD\",\n        \"adm0_a3_bd\": \"NLD\",\n        \"adm0_a3_ua\": \"NLD\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Western Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 11,\n        \"long_len\": 11,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 10,\n        \"label_x\": 5.61144,\n        \"label_y\": 52.422211,\n        \"ne_id\": 1159321101,\n        \"wikidataid\": \"Q55\",\n        \"name_ar\": \"هولندا\",\n        \"name_bn\": \"নেদারল্যান্ডস\",\n        \"name_de\": \"Niederlande\",\n        \"name_en\": \"Netherlands\",\n        \"name_es\": \"Países Bajos\",\n        \"name_fa\": \"هلند\",\n        \"name_fr\": \"Pays-Bas\",\n        \"name_el\": \"Ολλανδία\",\n        \"name_he\": \"הולנד\",\n        \"name_hi\": \"नीदरलैण्ड\",\n        \"name_hu\": \"Hollandia\",\n        \"name_id\": \"Belanda\",\n        \"name_it\": \"Paesi Bassi\",\n        \"name_ja\": \"オランダ\",\n        \"name_ko\": \"네덜란드\",\n        \"name_nl\": \"Nederland\",\n        \"name_pl\": \"Holandia\",\n        \"name_pt\": \"Países Baixos\",\n        \"name_ru\": \"Нидерланды\",\n        \"name_sv\": \"Nederländerna\",\n        \"name_tr\": \"Hollanda\",\n        \"name_uk\": \"Нідерланди\",\n        \"name_ur\": \"نیدرلینڈز\",\n        \"name_vi\": \"Hà Lan\",\n        \"name_zh\": \"荷兰\",\n        \"name_zht\": \"荷蘭\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"NLD.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [6.905139601274129, 53.48216217713065],\n            [7.092053256873896, 53.144043280644894],\n            [6.842869500362383, 52.22844025329755],\n            [6.589396599970826, 51.852029120483394],\n            [5.988658074577813, 51.851615709025054],\n            [6.15665815595878, 50.80372101501058],\n            [5.606975945670001, 51.03729848896978],\n            [4.973991326526914, 51.47502370869813],\n            [4.047071160507528, 51.26725861266857],\n            [3.314971144228537, 51.34575511331991],\n            [3.31501148496416, 51.34577662473805],\n            [3.830288527043137, 51.62054454203195],\n            [4.705997348661185, 53.091798407597764],\n            [6.074182570020923, 53.510403347378144],\n            [6.905139601274129, 53.48216217713065]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Republic of Serbia\",\n        \"sov_a3\": \"SRB\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Republic of Serbia\",\n        \"adm0_a3\": \"SRB\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Republic of Serbia\",\n        \"gu_a3\": \"SRB\",\n        \"su_dif\": 0,\n        \"subunit\": \"Republic of Serbia\",\n        \"su_a3\": \"SRB\",\n        \"brk_diff\": 0,\n        \"name\": \"Serbia\",\n        \"name_long\": \"Serbia\",\n        \"brk_a3\": \"SRB\",\n        \"brk_name\": \"Serbia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Serb.\",\n        \"postal\": \"RS\",\n        \"formal_en\": \"Republic of Serbia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Serbia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Serbia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 10,\n        \"pop_est\": 6944975,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 51475,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"RI\",\n        \"iso_a2\": \"RS\",\n        \"iso_a2_eh\": \"RS\",\n        \"iso_a3\": \"SRB\",\n        \"iso_a3_eh\": \"SRB\",\n        \"iso_n3\": \"688\",\n        \"iso_n3_eh\": \"688\",\n        \"un_a3\": \"688\",\n        \"wb_a2\": \"YF\",\n        \"wb_a3\": \"SRB\",\n        \"woe_id\": -90,\n        \"woe_id_eh\": 20069818,\n        \"woe_note\": \"Expired WOE also contains Kosovo.\",\n        \"adm0_iso\": \"SRB\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"SRB\",\n        \"adm0_a3_us\": \"SRB\",\n        \"adm0_a3_fr\": \"SRB\",\n        \"adm0_a3_ru\": \"SRB\",\n        \"adm0_a3_es\": \"SRB\",\n        \"adm0_a3_cn\": \"SRB\",\n        \"adm0_a3_tw\": \"SRB\",\n        \"adm0_a3_in\": \"SRB\",\n        \"adm0_a3_np\": \"SRB\",\n        \"adm0_a3_pk\": \"SRB\",\n        \"adm0_a3_de\": \"SRB\",\n        \"adm0_a3_gb\": \"SRB\",\n        \"adm0_a3_br\": \"SRB\",\n        \"adm0_a3_il\": \"SRB\",\n        \"adm0_a3_ps\": \"SRB\",\n        \"adm0_a3_sa\": \"SRB\",\n        \"adm0_a3_eg\": \"SRB\",\n        \"adm0_a3_ma\": \"SRB\",\n        \"adm0_a3_pt\": \"SRB\",\n        \"adm0_a3_ar\": \"SRB\",\n        \"adm0_a3_jp\": \"SRB\",\n        \"adm0_a3_ko\": \"SRB\",\n        \"adm0_a3_vn\": \"SRB\",\n        \"adm0_a3_tr\": \"SRB\",\n        \"adm0_a3_id\": \"SRB\",\n        \"adm0_a3_pl\": \"SRB\",\n        \"adm0_a3_gr\": \"SRB\",\n        \"adm0_a3_it\": \"SRB\",\n        \"adm0_a3_nl\": \"SRB\",\n        \"adm0_a3_se\": \"SRB\",\n        \"adm0_a3_bd\": \"SRB\",\n        \"adm0_a3_ua\": \"SRB\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Southern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 6,\n        \"long_len\": 6,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 7,\n        \"label_x\": 20.787989,\n        \"label_y\": 44.189919,\n        \"ne_id\": 1159321267,\n        \"wikidataid\": \"Q403\",\n        \"name_ar\": \"صربيا\",\n        \"name_bn\": \"সার্বিয়া\",\n        \"name_de\": \"Serbien\",\n        \"name_en\": \"Serbia\",\n        \"name_es\": \"Serbia\",\n        \"name_fa\": \"صربستان\",\n        \"name_fr\": \"Serbie\",\n        \"name_el\": \"Σερβία\",\n        \"name_he\": \"סרביה\",\n        \"name_hi\": \"सर्बिया\",\n        \"name_hu\": \"Szerbia\",\n        \"name_id\": \"Serbia\",\n        \"name_it\": \"Serbia\",\n        \"name_ja\": \"セルビア\",\n        \"name_ko\": \"세르비아\",\n        \"name_nl\": \"Servië\",\n        \"name_pl\": \"Serbia\",\n        \"name_pt\": \"Sérvia\",\n        \"name_ru\": \"Сербия\",\n        \"name_sv\": \"Serbien\",\n        \"name_tr\": \"Sırbistan\",\n        \"name_uk\": \"Сербія\",\n        \"name_ur\": \"سربیا\",\n        \"name_vi\": \"Serbia\",\n        \"name_zh\": \"塞尔维亚\",\n        \"name_zht\": \"塞爾維亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"SRB.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [18.829824792873946, 45.908872358025285],\n            [18.82983808764996, 45.90887767189193],\n            [19.596044549241583, 46.17172984474454],\n            [20.220192498462836, 46.127468980486555],\n            [20.762174920339987, 45.734573065771485],\n            [20.874312778413355, 45.416375433934235],\n            [21.48352623870221, 45.18117015235788],\n            [21.56202273935361, 44.7689472519655],\n            [22.14508792490281, 44.47842234962059],\n            [22.459022251075936, 44.7025171982543],\n            [22.705725538837356, 44.57800283464702],\n            [22.4740084164406, 44.40922760678177],\n            [22.65714969248299, 44.23492300066128],\n            [22.410446404721597, 44.008063462899955],\n            [22.500156691180223, 43.642814439461006],\n            [22.986018507588483, 43.2111612005271],\n            [22.60480146657133, 42.898518785161144],\n            [22.43659467946128, 42.580321153323936],\n            [22.54501183440962, 42.46136200618804],\n            [22.380525750424592, 42.32025950781509],\n            [21.917080000000112, 42.30364],\n            [21.57663598940212, 42.24522439706186],\n            [21.54332, 42.3202500000001],\n            [21.66292, 42.43922],\n            [21.77505, 42.6827],\n            [21.63302, 42.67717],\n            [21.43866, 42.86255],\n            [21.27421, 42.90959],\n            [21.143395, 43.06868500000013],\n            [20.95651, 43.13094],\n            [20.81448, 43.27205],\n            [20.63508, 43.21671],\n            [20.49679, 42.88469],\n            [20.25758, 42.81275000000011],\n            [20.3398, 42.89852],\n            [19.95857, 43.10604],\n            [19.63, 43.21377997027054],\n            [19.48389, 43.35229],\n            [19.21852, 43.52384],\n            [19.454, 43.56810000000013],\n            [19.59976, 44.03847],\n            [19.11761, 44.42307000000011],\n            [19.36803, 44.863],\n            [19.00548, 44.86023],\n            [19.005484597557594, 44.86023449354299],\n            [19.39047570158459, 45.236515611342384],\n            [19.072768995854176, 45.52151113543209],\n            [18.829824792873946, 45.908872358025285]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Croatia\",\n        \"sov_a3\": \"HRV\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Croatia\",\n        \"adm0_a3\": \"HRV\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Croatia\",\n        \"gu_a3\": \"HRV\",\n        \"su_dif\": 0,\n        \"subunit\": \"Croatia\",\n        \"su_a3\": \"HRV\",\n        \"brk_diff\": 0,\n        \"name\": \"Croatia\",\n        \"name_long\": \"Croatia\",\n        \"brk_a3\": \"HRV\",\n        \"brk_name\": \"Croatia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Cro.\",\n        \"postal\": \"HR\",\n        \"formal_en\": \"Republic of Croatia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Croatia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Croatia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 5,\n        \"mapcolor13\": 1,\n        \"pop_est\": 4067500,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 60752,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"2. High income: nonOECD\",\n        \"fips_10\": \"HR\",\n        \"iso_a2\": \"HR\",\n        \"iso_a2_eh\": \"HR\",\n        \"iso_a3\": \"HRV\",\n        \"iso_a3_eh\": \"HRV\",\n        \"iso_n3\": \"191\",\n        \"iso_n3_eh\": \"191\",\n        \"un_a3\": \"191\",\n        \"wb_a2\": \"HR\",\n        \"wb_a3\": \"HRV\",\n        \"woe_id\": 23424843,\n        \"woe_id_eh\": 23424843,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"HRV\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"HRV\",\n        \"adm0_a3_us\": \"HRV\",\n        \"adm0_a3_fr\": \"HRV\",\n        \"adm0_a3_ru\": \"HRV\",\n        \"adm0_a3_es\": \"HRV\",\n        \"adm0_a3_cn\": \"HRV\",\n        \"adm0_a3_tw\": \"HRV\",\n        \"adm0_a3_in\": \"HRV\",\n        \"adm0_a3_np\": \"HRV\",\n        \"adm0_a3_pk\": \"HRV\",\n        \"adm0_a3_de\": \"HRV\",\n        \"adm0_a3_gb\": \"HRV\",\n        \"adm0_a3_br\": \"HRV\",\n        \"adm0_a3_il\": \"HRV\",\n        \"adm0_a3_ps\": \"HRV\",\n        \"adm0_a3_sa\": \"HRV\",\n        \"adm0_a3_eg\": \"HRV\",\n        \"adm0_a3_ma\": \"HRV\",\n        \"adm0_a3_pt\": \"HRV\",\n        \"adm0_a3_ar\": \"HRV\",\n        \"adm0_a3_jp\": \"HRV\",\n        \"adm0_a3_ko\": \"HRV\",\n        \"adm0_a3_vn\": \"HRV\",\n        \"adm0_a3_tr\": \"HRV\",\n        \"adm0_a3_id\": \"HRV\",\n        \"adm0_a3_pl\": \"HRV\",\n        \"adm0_a3_gr\": \"HRV\",\n        \"adm0_a3_it\": \"HRV\",\n        \"adm0_a3_nl\": \"HRV\",\n        \"adm0_a3_se\": \"HRV\",\n        \"adm0_a3_bd\": \"HRV\",\n        \"adm0_a3_ua\": \"HRV\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Southern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 16.37241,\n        \"label_y\": 45.805799,\n        \"ne_id\": 1159320833,\n        \"wikidataid\": \"Q224\",\n        \"name_ar\": \"كرواتيا\",\n        \"name_bn\": \"ক্রোয়েশিয়া\",\n        \"name_de\": \"Kroatien\",\n        \"name_en\": \"Croatia\",\n        \"name_es\": \"Croacia\",\n        \"name_fa\": \"کرواسی\",\n        \"name_fr\": \"Croatie\",\n        \"name_el\": \"Κροατία\",\n        \"name_he\": \"קרואטיה\",\n        \"name_hi\": \"क्रोएशिया\",\n        \"name_hu\": \"Horvátország\",\n        \"name_id\": \"Kroasia\",\n        \"name_it\": \"Croazia\",\n        \"name_ja\": \"クロアチア\",\n        \"name_ko\": \"크로아티아\",\n        \"name_nl\": \"Kroatië\",\n        \"name_pl\": \"Chorwacja\",\n        \"name_pt\": \"Croácia\",\n        \"name_ru\": \"Хорватия\",\n        \"name_sv\": \"Kroatien\",\n        \"name_tr\": \"Hırvatistan\",\n        \"name_uk\": \"Хорватія\",\n        \"name_ur\": \"کروشیا\",\n        \"name_vi\": \"Croatia\",\n        \"name_zh\": \"克罗地亚\",\n        \"name_zht\": \"克羅地亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"HRV.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [16.564808383864857, 46.50375092221983],\n            [16.8825150895953, 46.38063182228444],\n            [17.630066359129557, 45.95176911069419],\n            [18.45606245288286, 45.75948110613615],\n            [18.829824792873946, 45.908872358025285],\n            [19.072768995854176, 45.52151113543209],\n            [19.39047570158459, 45.236515611342384],\n            [19.005484597557594, 44.86023449354299],\n            [18.553214145591653, 45.08158966733146],\n            [17.861783481526402, 45.067740383477144],\n            [17.002146030351014, 45.23377676043094],\n            [16.534939406000206, 45.21160757097772],\n            [16.318156772535872, 45.00412669532591],\n            [15.959367303133376, 45.23377676043094],\n            [15.750026075918981, 44.818711656262565],\n            [16.23966027188453, 44.35114329688571],\n            [16.456442905348865, 44.04123973243128],\n            [16.91615644701733, 43.66772247982567],\n            [17.297373488034452, 43.44634064388737],\n            [17.674921502358984, 43.02856252702361],\n            [18.56, 42.65],\n            [18.45001688302086, 42.47999224531218],\n            [18.450016310304818, 42.47999136002932],\n            [17.509970330483327, 42.849994615239154],\n            [16.930005730871642, 43.20999848080038],\n            [16.015384555737683, 43.50721548112722],\n            [15.174453973052096, 44.243191229827914],\n            [15.376250441151797, 44.31791535092208],\n            [14.92030927904051, 44.73848399512946],\n            [14.901602410550879, 45.07606028907611],\n            [14.258747592839995, 45.23377676043094],\n            [13.952254672917036, 44.80212352149687],\n            [13.656975538801191, 45.13693512631596],\n            [13.67940311041582, 45.48414907488501],\n            [13.715059848697223, 45.500323798192376],\n            [14.411968214585414, 45.46616567644746],\n            [14.595109490627806, 45.634940904312714],\n            [14.935243767972935, 45.471695054702685],\n            [15.327674594797429, 45.45231639259333],\n            [15.323953891672405, 45.73178253842768],\n            [15.671529575267556, 45.83415355079788],\n            [15.768732944408553, 46.23810822202345],\n            [16.564808383864857, 46.50375092221983]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Slovenia\",\n        \"sov_a3\": \"SVN\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Slovenia\",\n        \"adm0_a3\": \"SVN\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Slovenia\",\n        \"gu_a3\": \"SVN\",\n        \"su_dif\": 0,\n        \"subunit\": \"Slovenia\",\n        \"su_a3\": \"SVN\",\n        \"brk_diff\": 0,\n        \"name\": \"Slovenia\",\n        \"name_long\": \"Slovenia\",\n        \"brk_a3\": \"SVN\",\n        \"brk_name\": \"Slovenia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Slo.\",\n        \"postal\": \"SLO\",\n        \"formal_en\": \"Republic of Slovenia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Slovenia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Slovenia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 2,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 12,\n        \"pop_est\": 2087946,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 54174,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"SI\",\n        \"iso_a2\": \"SI\",\n        \"iso_a2_eh\": \"SI\",\n        \"iso_a3\": \"SVN\",\n        \"iso_a3_eh\": \"SVN\",\n        \"iso_n3\": \"705\",\n        \"iso_n3_eh\": \"705\",\n        \"un_a3\": \"705\",\n        \"wb_a2\": \"SI\",\n        \"wb_a3\": \"SVN\",\n        \"woe_id\": 23424945,\n        \"woe_id_eh\": 23424945,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"SVN\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"SVN\",\n        \"adm0_a3_us\": \"SVN\",\n        \"adm0_a3_fr\": \"SVN\",\n        \"adm0_a3_ru\": \"SVN\",\n        \"adm0_a3_es\": \"SVN\",\n        \"adm0_a3_cn\": \"SVN\",\n        \"adm0_a3_tw\": \"SVN\",\n        \"adm0_a3_in\": \"SVN\",\n        \"adm0_a3_np\": \"SVN\",\n        \"adm0_a3_pk\": \"SVN\",\n        \"adm0_a3_de\": \"SVN\",\n        \"adm0_a3_gb\": \"SVN\",\n        \"adm0_a3_br\": \"SVN\",\n        \"adm0_a3_il\": \"SVN\",\n        \"adm0_a3_ps\": \"SVN\",\n        \"adm0_a3_sa\": \"SVN\",\n        \"adm0_a3_eg\": \"SVN\",\n        \"adm0_a3_ma\": \"SVN\",\n        \"adm0_a3_pt\": \"SVN\",\n        \"adm0_a3_ar\": \"SVN\",\n        \"adm0_a3_jp\": \"SVN\",\n        \"adm0_a3_ko\": \"SVN\",\n        \"adm0_a3_vn\": \"SVN\",\n        \"adm0_a3_tr\": \"SVN\",\n        \"adm0_a3_id\": \"SVN\",\n        \"adm0_a3_pl\": \"SVN\",\n        \"adm0_a3_gr\": \"SVN\",\n        \"adm0_a3_it\": \"SVN\",\n        \"adm0_a3_nl\": \"SVN\",\n        \"adm0_a3_se\": \"SVN\",\n        \"adm0_a3_bd\": \"SVN\",\n        \"adm0_a3_ua\": \"SVN\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Southern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 5,\n        \"max_label\": 10,\n        \"label_x\": 14.915312,\n        \"label_y\": 46.06076,\n        \"ne_id\": 1159321285,\n        \"wikidataid\": \"Q215\",\n        \"name_ar\": \"سلوفينيا\",\n        \"name_bn\": \"স্লোভেনিয়া\",\n        \"name_de\": \"Slowenien\",\n        \"name_en\": \"Slovenia\",\n        \"name_es\": \"Eslovenia\",\n        \"name_fa\": \"اسلوونی\",\n        \"name_fr\": \"Slovénie\",\n        \"name_el\": \"Σλοβενία\",\n        \"name_he\": \"סלובניה\",\n        \"name_hi\": \"स्लोवेनिया\",\n        \"name_hu\": \"Szlovénia\",\n        \"name_id\": \"Slovenia\",\n        \"name_it\": \"Slovenia\",\n        \"name_ja\": \"スロベニア\",\n        \"name_ko\": \"슬로베니아\",\n        \"name_nl\": \"Slovenië\",\n        \"name_pl\": \"Słowenia\",\n        \"name_pt\": \"Eslovénia\",\n        \"name_ru\": \"Словения\",\n        \"name_sv\": \"Slovenien\",\n        \"name_tr\": \"Slovenya\",\n        \"name_uk\": \"Словенія\",\n        \"name_ur\": \"سلووینیا\",\n        \"name_vi\": \"Slovenia\",\n        \"name_zh\": \"斯洛文尼亚\",\n        \"name_zht\": \"斯洛維尼亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"SVN.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [13.806475457421527, 46.509306138691215],\n            [14.63247155117483, 46.43181732846955],\n            [15.137091912504985, 46.65870270444703],\n            [16.011663852612656, 46.6836107448117],\n            [16.202298211337364, 46.85238597267696],\n            [16.370504998447416, 46.841327216166505],\n            [16.564808383864857, 46.50375092221983],\n            [15.768732944408553, 46.23810822202345],\n            [15.671529575267556, 45.83415355079788],\n            [15.323953891672405, 45.73178253842768],\n            [15.327674594797429, 45.45231639259333],\n            [14.935243767972935, 45.471695054702685],\n            [14.595109490627806, 45.634940904312714],\n            [14.411968214585414, 45.46616567644746],\n            [13.715059848697223, 45.500323798192376],\n            [13.937630242578308, 45.59101593686462],\n            [13.698109978905478, 46.01677806251735],\n            [13.806475457421527, 46.509306138691215]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Bulgaria\",\n        \"sov_a3\": \"BGR\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Bulgaria\",\n        \"adm0_a3\": \"BGR\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Bulgaria\",\n        \"gu_a3\": \"BGR\",\n        \"su_dif\": 0,\n        \"subunit\": \"Bulgaria\",\n        \"su_a3\": \"BGR\",\n        \"brk_diff\": 0,\n        \"name\": \"Bulgaria\",\n        \"name_long\": \"Bulgaria\",\n        \"brk_a3\": \"BGR\",\n        \"brk_name\": \"Bulgaria\",\n        \"brk_group\": null,\n        \"abbrev\": \"Bulg.\",\n        \"postal\": \"BG\",\n        \"formal_en\": \"Republic of Bulgaria\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Bulgaria\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Bulgaria\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 8,\n        \"pop_est\": 6975761,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 68558,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"BU\",\n        \"iso_a2\": \"BG\",\n        \"iso_a2_eh\": \"BG\",\n        \"iso_a3\": \"BGR\",\n        \"iso_a3_eh\": \"BGR\",\n        \"iso_n3\": \"100\",\n        \"iso_n3_eh\": \"100\",\n        \"un_a3\": \"100\",\n        \"wb_a2\": \"BG\",\n        \"wb_a3\": \"BGR\",\n        \"woe_id\": 23424771,\n        \"woe_id_eh\": 23424771,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"BGR\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"BGR\",\n        \"adm0_a3_us\": \"BGR\",\n        \"adm0_a3_fr\": \"BGR\",\n        \"adm0_a3_ru\": \"BGR\",\n        \"adm0_a3_es\": \"BGR\",\n        \"adm0_a3_cn\": \"BGR\",\n        \"adm0_a3_tw\": \"BGR\",\n        \"adm0_a3_in\": \"BGR\",\n        \"adm0_a3_np\": \"BGR\",\n        \"adm0_a3_pk\": \"BGR\",\n        \"adm0_a3_de\": \"BGR\",\n        \"adm0_a3_gb\": \"BGR\",\n        \"adm0_a3_br\": \"BGR\",\n        \"adm0_a3_il\": \"BGR\",\n        \"adm0_a3_ps\": \"BGR\",\n        \"adm0_a3_sa\": \"BGR\",\n        \"adm0_a3_eg\": \"BGR\",\n        \"adm0_a3_ma\": \"BGR\",\n        \"adm0_a3_pt\": \"BGR\",\n        \"adm0_a3_ar\": \"BGR\",\n        \"adm0_a3_jp\": \"BGR\",\n        \"adm0_a3_ko\": \"BGR\",\n        \"adm0_a3_vn\": \"BGR\",\n        \"adm0_a3_tr\": \"BGR\",\n        \"adm0_a3_id\": \"BGR\",\n        \"adm0_a3_pl\": \"BGR\",\n        \"adm0_a3_gr\": \"BGR\",\n        \"adm0_a3_it\": \"BGR\",\n        \"adm0_a3_nl\": \"BGR\",\n        \"adm0_a3_se\": \"BGR\",\n        \"adm0_a3_bd\": \"BGR\",\n        \"adm0_a3_ua\": \"BGR\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Eastern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 25.15709,\n        \"label_y\": 42.508785,\n        \"ne_id\": 1159320409,\n        \"wikidataid\": \"Q219\",\n        \"name_ar\": \"بلغاريا\",\n        \"name_bn\": \"বুলগেরিয়া\",\n        \"name_de\": \"Bulgarien\",\n        \"name_en\": \"Bulgaria\",\n        \"name_es\": \"Bulgaria\",\n        \"name_fa\": \"بلغارستان\",\n        \"name_fr\": \"Bulgarie\",\n        \"name_el\": \"Βουλγαρία\",\n        \"name_he\": \"בולגריה\",\n        \"name_hi\": \"बुल्गारिया\",\n        \"name_hu\": \"Bulgária\",\n        \"name_id\": \"Bulgaria\",\n        \"name_it\": \"Bulgaria\",\n        \"name_ja\": \"ブルガリア\",\n        \"name_ko\": \"불가리아\",\n        \"name_nl\": \"Bulgarije\",\n        \"name_pl\": \"Bułgaria\",\n        \"name_pt\": \"Bulgária\",\n        \"name_ru\": \"Болгария\",\n        \"name_sv\": \"Bulgarien\",\n        \"name_tr\": \"Bulgaristan\",\n        \"name_uk\": \"Болгарія\",\n        \"name_ur\": \"بلغاریہ\",\n        \"name_vi\": \"Bulgaria\",\n        \"name_zh\": \"保加利亚\",\n        \"name_zht\": \"保加利亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"BGR.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [22.65714969248299, 44.23492300066128],\n            [22.944832391051847, 43.82378530534713],\n            [23.332302280376325, 43.897010809904714],\n            [24.100679152124172, 43.74105133724785],\n            [25.569271681426926, 43.68844472917472],\n            [26.065158725699746, 43.94349376075127],\n            [27.242399529740908, 44.175986029632405],\n            [27.970107049275075, 43.81246816667522],\n            [28.558081495891997, 43.70746165625813],\n            [28.03909508638472, 43.293171698574184],\n            [27.67389773937805, 42.57789236100622],\n            [27.99672041190539, 42.00735871028779],\n            [27.13573937349048, 42.14148489030134],\n            [26.1170418637208, 41.82690460872456],\n            [26.106138136507127, 41.32889883072784],\n            [25.197201368925448, 41.23448598893053],\n            [24.492644891057978, 41.58389618587205],\n            [23.692073601992348, 41.309080918943856],\n            [22.952377150166452, 41.33799388281115],\n            [22.881373732197346, 41.999297186850356],\n            [22.380525750424592, 42.32025950781509],\n            [22.54501183440962, 42.46136200618804],\n            [22.43659467946128, 42.580321153323936],\n            [22.60480146657133, 42.898518785161144],\n            [22.986018507588483, 43.2111612005271],\n            [22.500156691180223, 43.642814439461006],\n            [22.410446404721597, 44.008063462899955],\n            [22.65714969248299, 44.23492300066128]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Montenegro\",\n        \"sov_a3\": \"MNE\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Montenegro\",\n        \"adm0_a3\": \"MNE\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Montenegro\",\n        \"gu_a3\": \"MNE\",\n        \"su_dif\": 0,\n        \"subunit\": \"Montenegro\",\n        \"su_a3\": \"MNE\",\n        \"brk_diff\": 0,\n        \"name\": \"Montenegro\",\n        \"name_long\": \"Montenegro\",\n        \"brk_a3\": \"MNE\",\n        \"brk_name\": \"Montenegro\",\n        \"brk_group\": null,\n        \"abbrev\": \"Mont.\",\n        \"postal\": \"ME\",\n        \"formal_en\": \"Montenegro\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Montenegro\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Montenegro\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 5,\n        \"pop_est\": 622137,\n        \"pop_rank\": 11,\n        \"pop_year\": 2019,\n        \"gdp_md\": 5542,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"MJ\",\n        \"iso_a2\": \"ME\",\n        \"iso_a2_eh\": \"ME\",\n        \"iso_a3\": \"MNE\",\n        \"iso_a3_eh\": \"MNE\",\n        \"iso_n3\": \"499\",\n        \"iso_n3_eh\": \"499\",\n        \"un_a3\": \"499\",\n        \"wb_a2\": \"ME\",\n        \"wb_a3\": \"MNE\",\n        \"woe_id\": 20069817,\n        \"woe_id_eh\": 20069817,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"MNE\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"MNE\",\n        \"adm0_a3_us\": \"MNE\",\n        \"adm0_a3_fr\": \"MNE\",\n        \"adm0_a3_ru\": \"MNE\",\n        \"adm0_a3_es\": \"MNE\",\n        \"adm0_a3_cn\": \"MNE\",\n        \"adm0_a3_tw\": \"MNE\",\n        \"adm0_a3_in\": \"MNE\",\n        \"adm0_a3_np\": \"MNE\",\n        \"adm0_a3_pk\": \"MNE\",\n        \"adm0_a3_de\": \"MNE\",\n        \"adm0_a3_gb\": \"MNE\",\n        \"adm0_a3_br\": \"MNE\",\n        \"adm0_a3_il\": \"MNE\",\n        \"adm0_a3_ps\": \"MNE\",\n        \"adm0_a3_sa\": \"MNE\",\n        \"adm0_a3_eg\": \"MNE\",\n        \"adm0_a3_ma\": \"MNE\",\n        \"adm0_a3_pt\": \"MNE\",\n        \"adm0_a3_ar\": \"MNE\",\n        \"adm0_a3_jp\": \"MNE\",\n        \"adm0_a3_ko\": \"MNE\",\n        \"adm0_a3_vn\": \"MNE\",\n        \"adm0_a3_tr\": \"MNE\",\n        \"adm0_a3_id\": \"MNE\",\n        \"adm0_a3_pl\": \"MNE\",\n        \"adm0_a3_gr\": \"MNE\",\n        \"adm0_a3_it\": \"MNE\",\n        \"adm0_a3_nl\": \"MNE\",\n        \"adm0_a3_se\": \"MNE\",\n        \"adm0_a3_bd\": \"MNE\",\n        \"adm0_a3_ua\": \"MNE\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Southern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 10,\n        \"long_len\": 10,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 5,\n        \"max_label\": 10,\n        \"label_x\": 19.143727,\n        \"label_y\": 42.803101,\n        \"ne_id\": 1159321069,\n        \"wikidataid\": \"Q236\",\n        \"name_ar\": \"الجبل الأسود\",\n        \"name_bn\": \"মন্টিনিগ্রো\",\n        \"name_de\": \"Montenegro\",\n        \"name_en\": \"Montenegro\",\n        \"name_es\": \"Montenegro\",\n        \"name_fa\": \"مونتهنگرو\",\n        \"name_fr\": \"Monténégro\",\n        \"name_el\": \"Μαυροβούνιο\",\n        \"name_he\": \"מונטנגרו\",\n        \"name_hi\": \"मॉन्टेनीग्रो\",\n        \"name_hu\": \"Montenegró\",\n        \"name_id\": \"Montenegro\",\n        \"name_it\": \"Montenegro\",\n        \"name_ja\": \"モンテネグロ\",\n        \"name_ko\": \"몬테네그로\",\n        \"name_nl\": \"Montenegro\",\n        \"name_pl\": \"Czarnogóra\",\n        \"name_pt\": \"Montenegro\",\n        \"name_ru\": \"Черногория\",\n        \"name_sv\": \"Montenegro\",\n        \"name_tr\": \"Karadağ\",\n        \"name_uk\": \"Чорногорія\",\n        \"name_ur\": \"مونٹینیگرو\",\n        \"name_vi\": \"Montenegro\",\n        \"name_zh\": \"黑山\",\n        \"name_zht\": \"蒙特內哥羅\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"MNE.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [20.0707, 42.58863],\n            [19.801613396898688, 42.50009349219084],\n            [19.73805138517963, 42.68824738216557],\n            [19.304486118250793, 42.19574514420782],\n            [19.37176816334725, 41.877550679783496],\n            [19.16246, 41.95502],\n            [18.88214, 42.28151],\n            [18.45001688302086, 42.47999224531218],\n            [18.56, 42.65],\n            [18.70648, 43.20011],\n            [19.03165, 43.43253],\n            [19.21852, 43.52384],\n            [19.48389, 43.35229],\n            [19.63, 43.21377997027054],\n            [19.95857, 43.10604],\n            [20.3398, 42.89852],\n            [20.25758, 42.81275000000011],\n            [20.0707, 42.58863]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 5,\n        \"sovereignt\": \"Bosnia and Herzegovina\",\n        \"sov_a3\": \"BIH\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Bosnia and Herzegovina\",\n        \"adm0_a3\": \"BIH\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Bosnia and Herzegovina\",\n        \"gu_a3\": \"BIH\",\n        \"su_dif\": 0,\n        \"subunit\": \"Bosnia and Herzegovina\",\n        \"su_a3\": \"BIH\",\n        \"brk_diff\": 0,\n        \"name\": \"Bosnia and Herz.\",\n        \"name_long\": \"Bosnia and Herzegovina\",\n        \"brk_a3\": \"BIH\",\n        \"brk_name\": \"Bosnia and Herz.\",\n        \"brk_group\": null,\n        \"abbrev\": \"B.H.\",\n        \"postal\": \"BiH\",\n        \"formal_en\": \"Bosnia and Herzegovina\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Bosnia and Herzegovina\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Bosnia and Herzegovina\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 2,\n        \"pop_est\": 3301000,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 20164,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"3. Upper middle income\",\n        \"fips_10\": \"BK\",\n        \"iso_a2\": \"BA\",\n        \"iso_a2_eh\": \"BA\",\n        \"iso_a3\": \"BIH\",\n        \"iso_a3_eh\": \"BIH\",\n        \"iso_n3\": \"070\",\n        \"iso_n3_eh\": \"070\",\n        \"un_a3\": \"070\",\n        \"wb_a2\": \"BA\",\n        \"wb_a3\": \"BIH\",\n        \"woe_id\": 23424761,\n        \"woe_id_eh\": 23424761,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"BIH\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"BIH\",\n        \"adm0_a3_us\": \"BIH\",\n        \"adm0_a3_fr\": \"BIH\",\n        \"adm0_a3_ru\": \"BIH\",\n        \"adm0_a3_es\": \"BIH\",\n        \"adm0_a3_cn\": \"BIH\",\n        \"adm0_a3_tw\": \"BIH\",\n        \"adm0_a3_in\": \"BIH\",\n        \"adm0_a3_np\": \"BIH\",\n        \"adm0_a3_pk\": \"BIH\",\n        \"adm0_a3_de\": \"BIH\",\n        \"adm0_a3_gb\": \"BIH\",\n        \"adm0_a3_br\": \"BIH\",\n        \"adm0_a3_il\": \"BIH\",\n        \"adm0_a3_ps\": \"BIH\",\n        \"adm0_a3_sa\": \"BIH\",\n        \"adm0_a3_eg\": \"BIH\",\n        \"adm0_a3_ma\": \"BIH\",\n        \"adm0_a3_pt\": \"BIH\",\n        \"adm0_a3_ar\": \"BIH\",\n        \"adm0_a3_jp\": \"BIH\",\n        \"adm0_a3_ko\": \"BIH\",\n        \"adm0_a3_vn\": \"BIH\",\n        \"adm0_a3_tr\": \"BIH\",\n        \"adm0_a3_id\": \"BIH\",\n        \"adm0_a3_pl\": \"BIH\",\n        \"adm0_a3_gr\": \"BIH\",\n        \"adm0_a3_it\": \"BIH\",\n        \"adm0_a3_nl\": \"BIH\",\n        \"adm0_a3_se\": \"BIH\",\n        \"adm0_a3_bd\": \"BIH\",\n        \"adm0_a3_ua\": \"BIH\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Southern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 16,\n        \"long_len\": 22,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4.5,\n        \"max_label\": 6.8,\n        \"label_x\": 18.06841,\n        \"label_y\": 44.091051,\n        \"ne_id\": 1159320417,\n        \"wikidataid\": \"Q225\",\n        \"name_ar\": \"البوسنة والهرسك\",\n        \"name_bn\": \"বসনিয়া ও হার্জেগোভিনা\",\n        \"name_de\": \"Bosnien und Herzegowina\",\n        \"name_en\": \"Bosnia and Herzegovina\",\n        \"name_es\": \"Bosnia y Herzegovina\",\n        \"name_fa\": \"بوسنی و هرزگوین\",\n        \"name_fr\": \"Bosnie-Herzégovine\",\n        \"name_el\": \"Βοσνία και Ερζεγοβίνη\",\n        \"name_he\": \"בוסניה והרצגובינה\",\n        \"name_hi\": \"बॉस्निया और हर्ज़ेगोविना\",\n        \"name_hu\": \"Bosznia-Hercegovina\",\n        \"name_id\": \"Bosnia dan Herzegovina\",\n        \"name_it\": \"Bosnia ed Erzegovina\",\n        \"name_ja\": \"ボスニア・ヘルツェゴビナ\",\n        \"name_ko\": \"보스니아 헤르체고비나\",\n        \"name_nl\": \"Bosnië en Herzegovina\",\n        \"name_pl\": \"Bośnia i Hercegowina\",\n        \"name_pt\": \"Bósnia e Herzegovina\",\n        \"name_ru\": \"Босния и Герцеговина\",\n        \"name_sv\": \"Bosnien och Hercegovina\",\n        \"name_tr\": \"Bosna-Hersek\",\n        \"name_uk\": \"Боснія і Герцеговина\",\n        \"name_ur\": \"بوسنیا و ہرزیگووینا\",\n        \"name_vi\": \"Bosna và Hercegovina\",\n        \"name_zh\": \"波斯尼亚和黑塞哥维那\",\n        \"name_zht\": \"波士尼亞與赫塞哥維納\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"BIH.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [18.56, 42.65],\n            [17.674921502358984, 43.02856252702361],\n            [17.297373488034452, 43.44634064388737],\n            [16.91615644701733, 43.66772247982567],\n            [16.456442905348865, 44.04123973243128],\n            [16.23966027188453, 44.35114329688571],\n            [15.750026075918981, 44.818711656262565],\n            [15.959367303133376, 45.23377676043094],\n            [16.318156772535872, 45.00412669532591],\n            [16.534939406000206, 45.21160757097772],\n            [17.002146030351014, 45.23377676043094],\n            [17.861783481526402, 45.067740383477144],\n            [18.553214145591653, 45.08158966733146],\n            [19.005484597557594, 44.86023449354299],\n            [19.00548, 44.86023],\n            [19.36803, 44.863],\n            [19.11761, 44.42307000000011],\n            [19.59976, 44.03847],\n            [19.454, 43.56810000000013],\n            [19.21852, 43.52384],\n            [19.03165, 43.43253],\n            [18.70648, 43.20011],\n            [18.56, 42.65]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Portugal\",\n        \"sov_a3\": \"PRT\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Portugal\",\n        \"adm0_a3\": \"PRT\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Portugal\",\n        \"gu_a3\": \"PRT\",\n        \"su_dif\": 1,\n        \"subunit\": \"Portugal\",\n        \"su_a3\": \"PR1\",\n        \"brk_diff\": 0,\n        \"name\": \"Portugal\",\n        \"name_long\": \"Portugal\",\n        \"brk_a3\": \"PR1\",\n        \"brk_name\": \"Portugal\",\n        \"brk_group\": null,\n        \"abbrev\": \"Port.\",\n        \"postal\": \"P\",\n        \"formal_en\": \"Portuguese Republic\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Portugal\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Portugal\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 7,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 4,\n        \"pop_est\": 10269417,\n        \"pop_rank\": 14,\n        \"pop_year\": 2019,\n        \"gdp_md\": 238785,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"PO\",\n        \"iso_a2\": \"PT\",\n        \"iso_a2_eh\": \"PT\",\n        \"iso_a3\": \"PRT\",\n        \"iso_a3_eh\": \"PRT\",\n        \"iso_n3\": \"620\",\n        \"iso_n3_eh\": \"620\",\n        \"un_a3\": \"620\",\n        \"wb_a2\": \"PT\",\n        \"wb_a3\": \"PRT\",\n        \"woe_id\": 23424925,\n        \"woe_id_eh\": 23424925,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"PR1\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"PR1\",\n        \"adm0_a3_us\": \"PRT\",\n        \"adm0_a3_fr\": \"PRT\",\n        \"adm0_a3_ru\": \"PRT\",\n        \"adm0_a3_es\": \"PRT\",\n        \"adm0_a3_cn\": \"PRT\",\n        \"adm0_a3_tw\": \"PRT\",\n        \"adm0_a3_in\": \"PRT\",\n        \"adm0_a3_np\": \"PRT\",\n        \"adm0_a3_pk\": \"PRT\",\n        \"adm0_a3_de\": \"PRT\",\n        \"adm0_a3_gb\": \"PRT\",\n        \"adm0_a3_br\": \"PRT\",\n        \"adm0_a3_il\": \"PRT\",\n        \"adm0_a3_ps\": \"PRT\",\n        \"adm0_a3_sa\": \"PRT\",\n        \"adm0_a3_eg\": \"PRT\",\n        \"adm0_a3_ma\": \"PRT\",\n        \"adm0_a3_pt\": \"PRT\",\n        \"adm0_a3_ar\": \"PRT\",\n        \"adm0_a3_jp\": \"PRT\",\n        \"adm0_a3_ko\": \"PRT\",\n        \"adm0_a3_vn\": \"PRT\",\n        \"adm0_a3_tr\": \"PRT\",\n        \"adm0_a3_id\": \"PRT\",\n        \"adm0_a3_pl\": \"PRT\",\n        \"adm0_a3_gr\": \"PRT\",\n        \"adm0_a3_it\": \"PRT\",\n        \"adm0_a3_nl\": \"PRT\",\n        \"adm0_a3_se\": \"PRT\",\n        \"adm0_a3_bd\": \"PRT\",\n        \"adm0_a3_ua\": \"PRT\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Southern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 8,\n        \"long_len\": 8,\n        \"abbrev_len\": 5,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": -8.271754,\n        \"label_y\": 39.606675,\n        \"ne_id\": 1159321187,\n        \"wikidataid\": \"Q45\",\n        \"name_ar\": \"البرتغال\",\n        \"name_bn\": \"পর্তুগাল\",\n        \"name_de\": \"Portugal\",\n        \"name_en\": \"Portugal\",\n        \"name_es\": \"Portugal\",\n        \"name_fa\": \"پرتغال\",\n        \"name_fr\": \"Portugal\",\n        \"name_el\": \"Πορτογαλία\",\n        \"name_he\": \"פורטוגל\",\n        \"name_hi\": \"पुर्तगाल\",\n        \"name_hu\": \"Portugália\",\n        \"name_id\": \"Portugal\",\n        \"name_it\": \"Portogallo\",\n        \"name_ja\": \"ポルトガル\",\n        \"name_ko\": \"포르투갈\",\n        \"name_nl\": \"Portugal\",\n        \"name_pl\": \"Portugalia\",\n        \"name_pt\": \"Portugal\",\n        \"name_ru\": \"Португалия\",\n        \"name_sv\": \"Portugal\",\n        \"name_tr\": \"Portekiz\",\n        \"name_uk\": \"Португалія\",\n        \"name_ur\": \"پرتگال\",\n        \"name_vi\": \"Bồ Đào Nha\",\n        \"name_zh\": \"葡萄牙\",\n        \"name_zht\": \"葡萄牙\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"PRT.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-9.034817674180246, 41.880570583659676],\n            [-8.67194576662672, 42.13468943945496],\n            [-8.263856980817792, 42.28046865495034],\n            [-8.013174607769912, 41.790886135417125],\n            [-7.422512986673795, 41.79207469335984],\n            [-7.251308966490824, 41.91834605566505],\n            [-6.668605515967656, 41.883386949219584],\n            [-6.389087693700915, 41.381815497394655],\n            [-6.851126674822552, 41.11108266861753],\n            [-6.864019944679385, 40.33087189387483],\n            [-7.026413133156595, 40.184524237624245],\n            [-7.066591559263529, 39.711891587882775],\n            [-7.498632371439726, 39.62957103124181],\n            [-7.098036668313128, 39.03007274022379],\n            [-7.374092169616318, 38.37305858006492],\n            [-7.029281175148796, 38.07576406508977],\n            [-7.166507941099865, 37.803894354802225],\n            [-7.537105475281024, 37.42890432387624],\n            [-7.453725551778092, 37.09778758396607],\n            [-7.855613165711986, 36.83826854099627],\n            [-8.382816127953689, 36.97888011326246],\n            [-8.898856980820327, 36.86880931248078],\n            [-8.746101446965554, 37.65134552667661],\n            [-8.83999752443988, 38.266243394517616],\n            [-9.287463751655224, 38.3584858261586],\n            [-9.526570603869715, 38.73742910415491],\n            [-9.446988898140233, 39.39206614842837],\n            [-9.048305223008427, 39.75509308527877],\n            [-8.977353481471681, 40.15930613866581],\n            [-8.768684047877102, 40.76063894303019],\n            [-8.79085323733031, 41.18433401139126],\n            [-8.99078935386757, 41.54345937760364],\n            [-9.034817674180246, 41.880570583659676]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Moldova\",\n        \"sov_a3\": \"MDA\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Moldova\",\n        \"adm0_a3\": \"MDA\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Moldova\",\n        \"gu_a3\": \"MDA\",\n        \"su_dif\": 0,\n        \"subunit\": \"Moldova\",\n        \"su_a3\": \"MDA\",\n        \"brk_diff\": 0,\n        \"name\": \"Moldova\",\n        \"name_long\": \"Moldova\",\n        \"brk_a3\": \"MDA\",\n        \"brk_name\": \"Moldova\",\n        \"brk_group\": null,\n        \"abbrev\": \"Mda.\",\n        \"postal\": \"MD\",\n        \"formal_en\": \"Republic of Moldova\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Moldova\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Moldova\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 12,\n        \"pop_est\": 2657637,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 11968,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"MD\",\n        \"iso_a2\": \"MD\",\n        \"iso_a2_eh\": \"MD\",\n        \"iso_a3\": \"MDA\",\n        \"iso_a3_eh\": \"MDA\",\n        \"iso_n3\": \"498\",\n        \"iso_n3_eh\": \"498\",\n        \"un_a3\": \"498\",\n        \"wb_a2\": \"MD\",\n        \"wb_a3\": \"MDA\",\n        \"woe_id\": 23424885,\n        \"woe_id_eh\": 23424885,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"MDA\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"MDA\",\n        \"adm0_a3_us\": \"MDA\",\n        \"adm0_a3_fr\": \"MDA\",\n        \"adm0_a3_ru\": \"MDA\",\n        \"adm0_a3_es\": \"MDA\",\n        \"adm0_a3_cn\": \"MDA\",\n        \"adm0_a3_tw\": \"MDA\",\n        \"adm0_a3_in\": \"MDA\",\n        \"adm0_a3_np\": \"MDA\",\n        \"adm0_a3_pk\": \"MDA\",\n        \"adm0_a3_de\": \"MDA\",\n        \"adm0_a3_gb\": \"MDA\",\n        \"adm0_a3_br\": \"MDA\",\n        \"adm0_a3_il\": \"MDA\",\n        \"adm0_a3_ps\": \"MDA\",\n        \"adm0_a3_sa\": \"MDA\",\n        \"adm0_a3_eg\": \"MDA\",\n        \"adm0_a3_ma\": \"MDA\",\n        \"adm0_a3_pt\": \"MDA\",\n        \"adm0_a3_ar\": \"MDA\",\n        \"adm0_a3_jp\": \"MDA\",\n        \"adm0_a3_ko\": \"MDA\",\n        \"adm0_a3_vn\": \"MDA\",\n        \"adm0_a3_tr\": \"MDA\",\n        \"adm0_a3_id\": \"MDA\",\n        \"adm0_a3_pl\": \"MDA\",\n        \"adm0_a3_gr\": \"MDA\",\n        \"adm0_a3_it\": \"MDA\",\n        \"adm0_a3_nl\": \"MDA\",\n        \"adm0_a3_se\": \"MDA\",\n        \"adm0_a3_bd\": \"MDA\",\n        \"adm0_a3_ua\": \"MDA\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Eastern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 5,\n        \"max_label\": 10,\n        \"label_x\": 28.487904,\n        \"label_y\": 47.434999,\n        \"ne_id\": 1159321045,\n        \"wikidataid\": \"Q217\",\n        \"name_ar\": \"مولدوفا\",\n        \"name_bn\": \"মলদোভা\",\n        \"name_de\": \"Republik Moldau\",\n        \"name_en\": \"Moldova\",\n        \"name_es\": \"Moldavia\",\n        \"name_fa\": \"مولداوی\",\n        \"name_fr\": \"Moldavie\",\n        \"name_el\": \"Μολδαβία\",\n        \"name_he\": \"מולדובה\",\n        \"name_hi\": \"मॉल्डोवा\",\n        \"name_hu\": \"Moldova\",\n        \"name_id\": \"Moldova\",\n        \"name_it\": \"Moldavia\",\n        \"name_ja\": \"モルドバ\",\n        \"name_ko\": \"몰도바\",\n        \"name_nl\": \"Moldavië\",\n        \"name_pl\": \"Mołdawia\",\n        \"name_pt\": \"Moldávia\",\n        \"name_ru\": \"Молдавия\",\n        \"name_sv\": \"Moldavien\",\n        \"name_tr\": \"Moldova\",\n        \"name_uk\": \"Молдова\",\n        \"name_ur\": \"مالدووا\",\n        \"name_vi\": \"Moldova\",\n        \"name_zh\": \"摩尔多瓦\",\n        \"name_zht\": \"摩爾多瓦\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"MDA.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [26.619336785597795, 48.22072622333347],\n            [26.857823520624805, 48.368210761094495],\n            [27.522537469195157, 48.467119452501116],\n            [28.259546746541844, 48.15556224221342],\n            [28.670891147585166, 48.1181485052341],\n            [29.12269819511303, 47.849095160506465],\n            [29.05086795422727, 47.5102269557525],\n            [29.415135125452736, 47.34664520933258],\n            [29.559674106573112, 46.928582872091326],\n            [29.908851759569302, 46.67436066343146],\n            [29.838210076626297, 46.52532583270169],\n            [30.024658644335375, 46.42393667254504],\n            [29.759971958136394, 46.34998769793536],\n            [29.170653924279804, 46.37926239682872],\n            [29.07210696789929, 46.517677720722496],\n            [28.862972446414062, 46.43788930926383],\n            [28.933717482221596, 46.25883047137256],\n            [28.65998742037158, 45.93998688413164],\n            [28.485269402792767, 45.5969070501459],\n            [28.23355350109904, 45.48828318946829],\n            [28.0544429867754, 45.944586086605625],\n            [28.160017937947714, 46.37156260841722],\n            [28.128030226359044, 46.810476386088254],\n            [27.551166212684848, 47.40511709247083],\n            [27.233872918412743, 47.82677094175638],\n            [26.924176059687568, 48.123264472030996],\n            [26.619336785597795, 48.22072622333347]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Iceland\",\n        \"sov_a3\": \"ISL\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Iceland\",\n        \"adm0_a3\": \"ISL\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Iceland\",\n        \"gu_a3\": \"ISL\",\n        \"su_dif\": 0,\n        \"subunit\": \"Iceland\",\n        \"su_a3\": \"ISL\",\n        \"brk_diff\": 0,\n        \"name\": \"Iceland\",\n        \"name_long\": \"Iceland\",\n        \"brk_a3\": \"ISL\",\n        \"brk_name\": \"Iceland\",\n        \"brk_group\": null,\n        \"abbrev\": \"Iceland\",\n        \"postal\": \"IS\",\n        \"formal_en\": \"Republic of Iceland\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Iceland\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Iceland\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 9,\n        \"pop_est\": 361313,\n        \"pop_rank\": 10,\n        \"pop_year\": 2019,\n        \"gdp_md\": 24188,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"IC\",\n        \"iso_a2\": \"IS\",\n        \"iso_a2_eh\": \"IS\",\n        \"iso_a3\": \"ISL\",\n        \"iso_a3_eh\": \"ISL\",\n        \"iso_n3\": \"352\",\n        \"iso_n3_eh\": \"352\",\n        \"un_a3\": \"352\",\n        \"wb_a2\": \"IS\",\n        \"wb_a3\": \"ISL\",\n        \"woe_id\": 23424845,\n        \"woe_id_eh\": 23424845,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"ISL\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"ISL\",\n        \"adm0_a3_us\": \"ISL\",\n        \"adm0_a3_fr\": \"ISL\",\n        \"adm0_a3_ru\": \"ISL\",\n        \"adm0_a3_es\": \"ISL\",\n        \"adm0_a3_cn\": \"ISL\",\n        \"adm0_a3_tw\": \"ISL\",\n        \"adm0_a3_in\": \"ISL\",\n        \"adm0_a3_np\": \"ISL\",\n        \"adm0_a3_pk\": \"ISL\",\n        \"adm0_a3_de\": \"ISL\",\n        \"adm0_a3_gb\": \"ISL\",\n        \"adm0_a3_br\": \"ISL\",\n        \"adm0_a3_il\": \"ISL\",\n        \"adm0_a3_ps\": \"ISL\",\n        \"adm0_a3_sa\": \"ISL\",\n        \"adm0_a3_eg\": \"ISL\",\n        \"adm0_a3_ma\": \"ISL\",\n        \"adm0_a3_pt\": \"ISL\",\n        \"adm0_a3_ar\": \"ISL\",\n        \"adm0_a3_jp\": \"ISL\",\n        \"adm0_a3_ko\": \"ISL\",\n        \"adm0_a3_vn\": \"ISL\",\n        \"adm0_a3_tr\": \"ISL\",\n        \"adm0_a3_id\": \"ISL\",\n        \"adm0_a3_pl\": \"ISL\",\n        \"adm0_a3_gr\": \"ISL\",\n        \"adm0_a3_it\": \"ISL\",\n        \"adm0_a3_nl\": \"ISL\",\n        \"adm0_a3_se\": \"ISL\",\n        \"adm0_a3_bd\": \"ISL\",\n        \"adm0_a3_ua\": \"ISL\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Europe\",\n        \"region_un\": \"Europe\",\n        \"subregion\": \"Northern Europe\",\n        \"region_wb\": \"Europe & Central Asia\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 7,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2,\n        \"max_label\": 7,\n        \"label_x\": -18.673711,\n        \"label_y\": 64.779286,\n        \"ne_id\": 1159320917,\n        \"wikidataid\": \"Q189\",\n        \"name_ar\": \"آيسلندا\",\n        \"name_bn\": \"আইসল্যান্ড\",\n        \"name_de\": \"Island\",\n        \"name_en\": \"Iceland\",\n        \"name_es\": \"Islandia\",\n        \"name_fa\": \"ایسلند\",\n        \"name_fr\": \"Islande\",\n        \"name_el\": \"Ισλανδία\",\n        \"name_he\": \"איסלנד\",\n        \"name_hi\": \"आइसलैण्ड\",\n        \"name_hu\": \"Izland\",\n        \"name_id\": \"Islandia\",\n        \"name_it\": \"Islanda\",\n        \"name_ja\": \"アイスランド\",\n        \"name_ko\": \"아이슬란드\",\n        \"name_nl\": \"IJsland\",\n        \"name_pl\": \"Islandia\",\n        \"name_pt\": \"Islândia\",\n        \"name_ru\": \"Исландия\",\n        \"name_sv\": \"Island\",\n        \"name_tr\": \"İzlanda\",\n        \"name_uk\": \"Ісландія\",\n        \"name_ur\": \"آئس لینڈ\",\n        \"name_vi\": \"Iceland\",\n        \"name_zh\": \"冰岛\",\n        \"name_zht\": \"冰島\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"ISL.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [-14.508695441129234, 66.45589223903143],\n            [-14.739637417041607, 65.8087482774403],\n            [-13.60973222497981, 65.12667104761987],\n            [-14.909833746794902, 64.36408193628868],\n            [-17.794438035543422, 63.678749091233854],\n            [-18.656245896874992, 63.49638296167582],\n            [-19.97275468594276, 63.64363495549153],\n            [-22.762971971110158, 63.960178941495386],\n            [-21.778484259517683, 64.40211579045551],\n            [-23.95504391121911, 64.8911298692335],\n            [-22.184402635170358, 65.0849681667603],\n            [-22.227423265053332, 65.37859365504274],\n            [-24.326184047939336, 65.61118927678847],\n            [-23.65051469572309, 66.26251902939522],\n            [-22.134922451250887, 66.41046865504687],\n            [-20.57628373867955, 65.73211212835143],\n            [-19.05684160000159, 66.27660085719477],\n            [-17.79862382655905, 65.99385325790978],\n            [-16.167818976292125, 66.52679230413587],\n            [-14.508695441129234, 66.45589223903143]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Papua New Guinea\",\n        \"sov_a3\": \"PNG\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Papua New Guinea\",\n        \"adm0_a3\": \"PNG\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Papua New Guinea\",\n        \"gu_a3\": \"PNG\",\n        \"su_dif\": 1,\n        \"subunit\": \"Papua New Guinea\",\n        \"su_a3\": \"PN1\",\n        \"brk_diff\": 0,\n        \"name\": \"Papua New Guinea\",\n        \"name_long\": \"Papua New Guinea\",\n        \"brk_a3\": \"PN1\",\n        \"brk_name\": \"Papua New Guinea\",\n        \"brk_group\": null,\n        \"abbrev\": \"P.N.G.\",\n        \"postal\": \"PG\",\n        \"formal_en\": \"Independent State of Papua New Guinea\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Papua New Guinea\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Papua New Guinea\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 3,\n        \"mapcolor13\": 1,\n        \"pop_est\": 8776109,\n        \"pop_rank\": 13,\n        \"pop_year\": 2019,\n        \"gdp_md\": 24829,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"PP\",\n        \"iso_a2\": \"PG\",\n        \"iso_a2_eh\": \"PG\",\n        \"iso_a3\": \"PNG\",\n        \"iso_a3_eh\": \"PNG\",\n        \"iso_n3\": \"598\",\n        \"iso_n3_eh\": \"598\",\n        \"un_a3\": \"598\",\n        \"wb_a2\": \"PG\",\n        \"wb_a3\": \"PNG\",\n        \"woe_id\": 23424926,\n        \"woe_id_eh\": 23424926,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"PN1\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"PN1\",\n        \"adm0_a3_us\": \"PNG\",\n        \"adm0_a3_fr\": \"PNG\",\n        \"adm0_a3_ru\": \"PNG\",\n        \"adm0_a3_es\": \"PNG\",\n        \"adm0_a3_cn\": \"PNG\",\n        \"adm0_a3_tw\": \"PNG\",\n        \"adm0_a3_in\": \"PNG\",\n        \"adm0_a3_np\": \"PNG\",\n        \"adm0_a3_pk\": \"PNG\",\n        \"adm0_a3_de\": \"PNG\",\n        \"adm0_a3_gb\": \"PNG\",\n        \"adm0_a3_br\": \"PNG\",\n        \"adm0_a3_il\": \"PNG\",\n        \"adm0_a3_ps\": \"PNG\",\n        \"adm0_a3_sa\": \"PNG\",\n        \"adm0_a3_eg\": \"PNG\",\n        \"adm0_a3_ma\": \"PNG\",\n        \"adm0_a3_pt\": \"PNG\",\n        \"adm0_a3_ar\": \"PNG\",\n        \"adm0_a3_jp\": \"PNG\",\n        \"adm0_a3_ko\": \"PNG\",\n        \"adm0_a3_vn\": \"PNG\",\n        \"adm0_a3_tr\": \"PNG\",\n        \"adm0_a3_id\": \"PNG\",\n        \"adm0_a3_pl\": \"PNG\",\n        \"adm0_a3_gr\": \"PNG\",\n        \"adm0_a3_it\": \"PNG\",\n        \"adm0_a3_nl\": \"PNG\",\n        \"adm0_a3_se\": \"PNG\",\n        \"adm0_a3_bd\": \"PNG\",\n        \"adm0_a3_ua\": \"PNG\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Oceania\",\n        \"region_un\": \"Oceania\",\n        \"subregion\": \"Melanesia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 16,\n        \"long_len\": 16,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2.5,\n        \"max_label\": 7.5,\n        \"label_x\": 143.910216,\n        \"label_y\": -5.695285,\n        \"ne_id\": 1159321173,\n        \"wikidataid\": \"Q691\",\n        \"name_ar\": \"بابوا غينيا الجديدة\",\n        \"name_bn\": \"পাপুয়া নিউগিনি\",\n        \"name_de\": \"Papua-Neuguinea\",\n        \"name_en\": \"Papua New Guinea\",\n        \"name_es\": \"Papúa Nueva Guinea\",\n        \"name_fa\": \"پاپوآ گینه نو\",\n        \"name_fr\": \"Papouasie-Nouvelle-Guinée\",\n        \"name_el\": \"Παπούα Νέα Γουινέα\",\n        \"name_he\": \"פפואה גינאה החדשה\",\n        \"name_hi\": \"पापुआ न्यू गिनी\",\n        \"name_hu\": \"Pápua Új-Guinea\",\n        \"name_id\": \"Papua Nugini\",\n        \"name_it\": \"Papua Nuova Guinea\",\n        \"name_ja\": \"パプアニューギニア\",\n        \"name_ko\": \"파푸아뉴기니\",\n        \"name_nl\": \"Papoea-Nieuw-Guinea\",\n        \"name_pl\": \"Papua-Nowa Gwinea\",\n        \"name_pt\": \"Papua-Nova Guiné\",\n        \"name_ru\": \"Папуа — Новая Гвинея\",\n        \"name_sv\": \"Papua Nya Guinea\",\n        \"name_tr\": \"Papua Yeni Gine\",\n        \"name_uk\": \"Папуа Нова Гвінея\",\n        \"name_ur\": \"پاپوا نیو گنی\",\n        \"name_vi\": \"Papua New Guinea\",\n        \"name_zh\": \"巴布亚新几内亚\",\n        \"name_zht\": \"巴布亞紐幾內亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"PNG.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [141.00021040259185, -2.60015105551566],\n              [142.73524661679147, -3.28915292726321],\n              [144.58397098203324, -3.861417738463416],\n              [145.27317955950997, -4.373737888205049],\n              [145.8297864117257, -4.876497897972683],\n              [145.981921828393, -5.465609226100043],\n              [147.64807335834757, -6.083659356310847],\n              [147.89110761941623, -6.614014580922343],\n              [146.97090538959486, -6.721656589386313],\n              [147.19187381407494, -7.388024183790023],\n              [148.08463585834932, -8.044108168167647],\n              [148.73410525939357, -9.104663588093764],\n              [149.30683515848443, -9.07143564213009],\n              [149.26663089416132, -9.514406019736029],\n              [150.03872846903425, -9.684318129111709],\n              [149.7387984560122, -9.872937106977048],\n              [150.80162763895913, -10.293686618697478],\n              [150.6905749859639, -10.582712904505925],\n              [150.02839318257583, -10.652476088099952],\n              [149.78231001200197, -10.393267103723923],\n              [148.92313764871727, -10.280922539921384],\n              [147.913018426708, -10.13044076908745],\n              [147.13544315001218, -9.492443536011983],\n              [146.56788089415056, -8.942554619994155],\n              [146.04848107318492, -8.067414239131281],\n              [144.74416792213805, -7.630128269077446],\n              [143.89708784400966, -7.915330498896296],\n              [143.28637576718432, -8.24549122480908],\n              [143.41391320208066, -8.983068942910982],\n              [142.62843143124417, -9.326820570516524],\n              [142.06825890520025, -9.159595635620022],\n              [141.03385176001382, -9.117892754760483],\n              [141.01705691951895, -5.859021905138071],\n              [141.00021040259185, -2.60015105551566]\n            ]\n          ],\n          [\n            [\n              [152.64001671774253, -3.659983005389691],\n              [153.0199935243847, -3.980015150573265],\n              [153.14003787659874, -4.499983412294092],\n              [152.82729210836828, -4.766427097190991],\n              [152.63867313050298, -4.176127211120921],\n              [152.40602583232493, -3.789742526874583],\n              [151.95323693258354, -3.462062269711816],\n              [151.38427941305002, -3.035421644710112],\n              [150.66204959533883, -2.741486097833935],\n              [150.93996544820448, -2.500002129734007],\n              [151.47998416565457, -2.779985039891379],\n              [151.8200150901351, -2.999971612157886],\n              [152.23998945537113, -3.24000864015364],\n              [152.64001671774253, -3.659983005389691]\n            ]\n          ],\n          [\n            [\n              [151.30139041565388, -5.840728448106752],\n              [150.75444705627666, -6.083762709175431],\n              [150.2411967307538, -6.317753594593028],\n              [149.70996300679332, -6.316513360218025],\n              [148.89006473205046, -6.026040134305404],\n              [148.31893680236067, -5.747142429226166],\n              [148.40182579975686, -5.437755629094717],\n              [149.29841190002082, -5.58374155031926],\n              [149.84556196512722, -5.505503431829368],\n              [149.99625044169028, -5.026101169457654],\n              [150.13975589416486, -5.001348158389852],\n              [150.23690758687354, -5.532220147324267],\n              [150.80746707580812, -5.455842380396874],\n              [151.08967207255404, -5.113692722192383],\n              [151.6478808941709, -4.757073662946162],\n              [151.53786176982146, -4.167807305521933],\n              [152.1367916200843, -4.14879037843852],\n              [152.33874311748093, -4.312966403829805],\n              [152.3186926617517, -4.867661228050771],\n              [151.98279585185452, -5.478063246282382],\n              [151.45910688700866, -5.560280450058754],\n              [151.30139041565388, -5.840728448106752]\n            ]\n          ],\n          [\n            [\n              [154.75999067608439, -5.339983819198495],\n              [155.06291792217934, -5.56679168052753],\n              [155.5477462099417, -6.200654799019645],\n              [156.0199654482248, -6.540013929880381],\n              [155.8800256695784, -6.819996840037753],\n              [155.59999108298877, -6.919990736522522],\n              [155.16699425681514, -6.535931491729322],\n              [154.72919152243838, -5.900828138862195],\n              [154.51411421123964, -5.139117526879986],\n              [154.65250369691728, -5.04243092206189],\n              [154.75999067608439, -5.339983819198495]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"Australia\",\n        \"sov_a3\": \"AU1\",\n        \"adm0_dif\": 1,\n        \"level\": 2,\n        \"type\": \"Country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Australia\",\n        \"adm0_a3\": \"AUS\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Australia\",\n        \"gu_a3\": \"AUS\",\n        \"su_dif\": 0,\n        \"subunit\": \"Australia\",\n        \"su_a3\": \"AUS\",\n        \"brk_diff\": 0,\n        \"name\": \"Australia\",\n        \"name_long\": \"Australia\",\n        \"brk_a3\": \"AUS\",\n        \"brk_name\": \"Australia\",\n        \"brk_group\": null,\n        \"abbrev\": \"Auz.\",\n        \"postal\": \"AU\",\n        \"formal_en\": \"Commonwealth of Australia\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Australia\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Australia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 2,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 7,\n        \"pop_est\": 25364307,\n        \"pop_rank\": 15,\n        \"pop_year\": 2019,\n        \"gdp_md\": 1396567,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"AS\",\n        \"iso_a2\": \"AU\",\n        \"iso_a2_eh\": \"AU\",\n        \"iso_a3\": \"AUS\",\n        \"iso_a3_eh\": \"AUS\",\n        \"iso_n3\": \"036\",\n        \"iso_n3_eh\": \"036\",\n        \"un_a3\": \"036\",\n        \"wb_a2\": \"AU\",\n        \"wb_a3\": \"AUS\",\n        \"woe_id\": -90,\n        \"woe_id_eh\": 23424748,\n        \"woe_note\": \"Includes Ashmore and Cartier Islands (23424749) and Coral Sea Islands (23424790).\",\n        \"adm0_iso\": \"AUS\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"AUS\",\n        \"adm0_a3_us\": \"AUS\",\n        \"adm0_a3_fr\": \"AUS\",\n        \"adm0_a3_ru\": \"AUS\",\n        \"adm0_a3_es\": \"AUS\",\n        \"adm0_a3_cn\": \"AUS\",\n        \"adm0_a3_tw\": \"AUS\",\n        \"adm0_a3_in\": \"AUS\",\n        \"adm0_a3_np\": \"AUS\",\n        \"adm0_a3_pk\": \"AUS\",\n        \"adm0_a3_de\": \"AUS\",\n        \"adm0_a3_gb\": \"AUS\",\n        \"adm0_a3_br\": \"AUS\",\n        \"adm0_a3_il\": \"AUS\",\n        \"adm0_a3_ps\": \"AUS\",\n        \"adm0_a3_sa\": \"AUS\",\n        \"adm0_a3_eg\": \"AUS\",\n        \"adm0_a3_ma\": \"AUS\",\n        \"adm0_a3_pt\": \"AUS\",\n        \"adm0_a3_ar\": \"AUS\",\n        \"adm0_a3_jp\": \"AUS\",\n        \"adm0_a3_ko\": \"AUS\",\n        \"adm0_a3_vn\": \"AUS\",\n        \"adm0_a3_tr\": \"AUS\",\n        \"adm0_a3_id\": \"AUS\",\n        \"adm0_a3_pl\": \"AUS\",\n        \"adm0_a3_gr\": \"AUS\",\n        \"adm0_a3_it\": \"AUS\",\n        \"adm0_a3_nl\": \"AUS\",\n        \"adm0_a3_se\": \"AUS\",\n        \"adm0_a3_bd\": \"AUS\",\n        \"adm0_a3_ua\": \"AUS\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Oceania\",\n        \"region_un\": \"Oceania\",\n        \"subregion\": \"Australia and New Zealand\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 9,\n        \"long_len\": 9,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 1.7,\n        \"max_label\": 5.7,\n        \"label_x\": 134.04972,\n        \"label_y\": -24.129522,\n        \"ne_id\": 1159320355,\n        \"wikidataid\": \"Q408\",\n        \"name_ar\": \"أستراليا\",\n        \"name_bn\": \"অস্ট্রেলিয়া\",\n        \"name_de\": \"Australien\",\n        \"name_en\": \"Australia\",\n        \"name_es\": \"Australia\",\n        \"name_fa\": \"استرالیا\",\n        \"name_fr\": \"Australie\",\n        \"name_el\": \"Αυστραλία\",\n        \"name_he\": \"אוסטרליה\",\n        \"name_hi\": \"ऑस्ट्रेलिया\",\n        \"name_hu\": \"Ausztrália\",\n        \"name_id\": \"Australia\",\n        \"name_it\": \"Australia\",\n        \"name_ja\": \"オーストラリア\",\n        \"name_ko\": \"오스트레일리아\",\n        \"name_nl\": \"Australië\",\n        \"name_pl\": \"Australia\",\n        \"name_pt\": \"Austrália\",\n        \"name_ru\": \"Австралия\",\n        \"name_sv\": \"Australien\",\n        \"name_tr\": \"Avustralya\",\n        \"name_uk\": \"Австралія\",\n        \"name_ur\": \"آسٹریلیا\",\n        \"name_vi\": \"Úc\",\n        \"name_zh\": \"澳大利亚\",\n        \"name_zht\": \"澳大利亞\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"AUS.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [147.68925947488418, -40.808258152022674],\n              [148.289067824496, -40.87543751400211],\n              [148.35986453673587, -42.06244516374644],\n              [148.01730146707303, -42.40702361426865],\n              [147.91405195535384, -43.211522312188535],\n              [147.56456424376393, -42.937688897473905],\n              [146.87034305235488, -43.6345972633621],\n              [146.66332726459365, -43.58085377377856],\n              [146.04837772032033, -43.549744561538844],\n              [145.4319295595106, -42.693776137056254],\n              [145.29509036680173, -42.033609714527564],\n              [144.71807132383066, -41.16255177181576],\n              [144.7437545106797, -40.70397511165767],\n              [145.3979781434948, -40.79254851660594],\n              [146.3641207216237, -41.13769540788336],\n              [146.90858361225088, -41.00054615658073],\n              [147.68925947488418, -40.808258152022674]\n            ]\n          ],\n          [\n            [\n              [126.14871382050114, -32.21596607842059],\n              [125.08862348846566, -32.72875131605285],\n              [124.22164798390492, -32.95948658623607],\n              [124.02894656788851, -33.4838473447017],\n              [123.65966678273077, -33.89017913181271],\n              [122.81103641163364, -33.914467054989885],\n              [122.1830644064228, -34.0034021949642],\n              [121.29919070850259, -33.821036065406176],\n              [120.58026818245806, -33.93017669040661],\n              [119.89369510302822, -33.9760653622818],\n              [119.29889936734875, -34.50936614353394],\n              [119.00734093635802, -34.46414926527854],\n              [118.5057178081008, -34.74681934991509],\n              [118.02497195848949, -35.0647327613747],\n              [117.29550744025741, -35.02545867283287],\n              [116.62510908413495, -35.02509693780683],\n              [115.56434695847966, -34.38642791111157],\n              [115.02680870977957, -34.19651702243893],\n              [115.04861616420676, -33.623425388322055],\n              [115.54512332566708, -33.48725798923297],\n              [115.7146737000167, -33.25957162855497],\n              [115.67937869676135, -32.900368747694166],\n              [115.80164513556394, -32.205062351207005],\n              [115.68961063035516, -31.612437025683807],\n              [115.160909051577, -30.601594333622465],\n              [114.99704308477948, -30.03072478609414],\n              [115.04003787644629, -29.46109547294082],\n              [114.64197431850201, -28.81023080822467],\n              [114.6164978373821, -28.51639861421308],\n              [114.17357913620847, -28.11807667410732],\n              [114.04888390508816, -27.334765313427106],\n              [113.47749759323692, -26.543134047147902],\n              [113.33895307826242, -26.116545098578484],\n              [113.77835778204022, -26.549025160429174],\n              [113.44096235560656, -25.621278171493167],\n              [113.93690107631167, -25.91123463308287],\n              [114.23285200404723, -26.29844614024588],\n              [114.21616051641698, -25.786281019801123],\n              [113.7212553243577, -24.99893889740214],\n              [113.62534386602397, -24.683971042583167],\n              [113.39352339076264, -24.384764499613226],\n              [113.5020438985756, -23.806350192970285],\n              [113.70699262904515, -23.56021534596409],\n              [113.84341841029567, -23.059987481378755],\n              [113.73655154831609, -22.47547535572538],\n              [114.1497563009219, -21.75588103606104],\n              [114.22530724493262, -22.517488295178673],\n              [114.6477620789187, -21.829519952076954],\n              [115.46016727097924, -21.495173435148537],\n              [115.94737267462702, -21.068687839443704],\n              [116.71161543179153, -20.701681817306824],\n              [117.16631635952771, -20.623598728113805],\n              [117.44154503791424, -20.74689869556221],\n              [118.229558953933, -20.37420826587322],\n              [118.83608523974274, -20.263310642174858],\n              [118.98780724495168, -20.044202569257315],\n              [119.25249393115067, -19.952941989829867],\n              [119.80522505094451, -19.976506442954964],\n              [120.85622033089668, -19.683707777589206],\n              [121.39985639860717, -19.239755547769725],\n              [121.65513797412902, -18.70531788500717],\n              [122.24166548064179, -18.197648614171804],\n              [122.28662397673571, -17.798603204013958],\n              [122.3127722514754, -17.25496713630345],\n              [123.01257449757193, -16.405199883695886],\n              [123.43378909718304, -17.268558037996215],\n              [123.85934451710659, -17.069035332917288],\n              [123.50324222218329, -16.596506036040402],\n              [123.81707319549184, -16.111316013252],\n              [124.25828657439985, -16.327943617419535],\n              [124.37972619028575, -15.56705982835399],\n              [124.92615278534004, -15.07510019293536],\n              [125.16727501841387, -14.680395603090028],\n              [125.67008670461381, -14.510070082256014],\n              [125.68579634003055, -14.23065561285385],\n              [126.12514936737608, -14.347340996968903],\n              [126.14282270721986, -14.095986830301227],\n              [126.58258914602374, -13.952791436420448],\n              [127.06586714081732, -13.817967624570954],\n              [127.80463341686196, -14.27690601975508],\n              [128.35968997610894, -14.869169610252243],\n              [128.98554324759584, -14.875990899314765],\n              [129.62147342337965, -14.969783623924522],\n              [129.40960005098293, -14.42066985439107],\n              [129.8886405783286, -13.618703301653492],\n              [130.33946577364293, -13.357375583553484],\n              [130.18350630098604, -13.107520033422276],\n              [130.61779503796697, -12.536392103732489],\n              [131.22349450086, -12.183648776908166],\n              [131.73509118054955, -12.302452894747184],\n              [132.5752982931831, -12.114040622611007],\n              [132.55721154188097, -11.603012383676678],\n              [131.82469811414364, -11.27378183354515],\n              [132.3572237489114, -11.128519382372696],\n              [133.01956058159635, -11.376411228076812],\n              [133.55084598198908, -11.786515394745116],\n              [134.39306847548204, -12.042365411022182],\n              [134.67863244032696, -11.941182956594693],\n              [135.29849124566795, -12.248606052299046],\n              [135.8826933127276, -11.962266940969776],\n              [136.2583809754895, -12.049341729381588],\n              [136.49247521377168, -11.857208754120398],\n              [136.951620314685, -12.351958916882793],\n              [136.6851249533558, -12.887223402562022],\n              [136.3054065288751, -13.291229750219884],\n              [135.96175825413417, -13.324509372615852],\n              [136.07761681533253, -13.724278252825783],\n              [135.78383629775323, -14.2239893530882],\n              [135.4286641786112, -14.715432224183912],\n              [135.50018436090318, -14.997740573794424],\n              [136.2951745952813, -15.55026498785913],\n              [137.06536014215942, -15.87076222093333],\n              [137.5804708192448, -16.21508228929408],\n              [138.30321740127897, -16.807604261952704],\n              [138.58516401586343, -16.806622409739155],\n              [139.10854292211548, -17.06267913174539],\n              [139.2605749859182, -17.371600843986208],\n              [140.21524539607827, -17.710804945550066],\n              [140.87546349503924, -17.369068698803908],\n              [141.07111046769626, -16.83204721442676],\n              [141.27409549373874, -16.38887013109165],\n              [141.39822228410384, -15.840531508042588],\n              [141.70218305884464, -15.044921156476901],\n              [141.56338016170866, -14.561333103089552],\n              [141.6355204611881, -14.270394789286307],\n              [141.5198686057189, -13.698078301653808],\n              [141.65092003801107, -12.944687595270585],\n              [141.8426912782462, -12.741547539931231],\n              [141.68699018775084, -12.407614434461145],\n              [141.9286291851476, -11.877465915578817],\n              [142.11848839738798, -11.328042087451612],\n              [142.1437064963464, -11.042736504768186],\n              [142.51526004452495, -10.668185723516686],\n              [142.797310011974, -11.157354831591562],\n              [142.86676313697427, -11.784706719614903],\n              [143.11594689348573, -11.905629571177885],\n              [143.15863162655876, -12.325655612846232],\n              [143.5221236512998, -12.834358412327433],\n              [143.5971578309876, -13.400422051652612],\n              [143.5618111513, -13.763655694232192],\n              [143.9220992372389, -14.548310642151996],\n              [144.56371382057483, -14.171176039285903],\n              [144.89490807513346, -14.594457696188641],\n              [145.3747237489635, -14.98497649501833],\n              [145.27199100156724, -15.428205254785732],\n              [145.4852596376358, -16.28567229580478],\n              [145.637033319277, -16.78491830817657],\n              [145.88890425026761, -16.906926364817686],\n              [146.16030887266453, -17.761654554925272],\n              [146.06367394427872, -18.28007252367734],\n              [146.38747846901964, -18.958274021075887],\n              [147.4710815777479, -19.48072275154673],\n              [148.17760176004242, -19.9559392229028],\n              [148.84841352762322, -20.391209812097244],\n              [148.71746544819558, -20.63346892668155],\n              [149.28942020080206, -21.260510756111135],\n              [149.6783370302307, -22.342511895438385],\n              [150.07738244038853, -22.122783705333337],\n              [150.48293908101516, -22.556142266532994],\n              [150.72726525289113, -22.402404880464665],\n              [150.89955447815225, -23.462236830338696],\n              [151.60917524638427, -24.07625619883074],\n              [152.07353966695905, -24.457886651306225],\n              [152.8551973818059, -25.267501316023],\n              [153.1361621441768, -26.071173191026215],\n              [153.16194868389044, -26.641319268502457],\n              [153.0929089703485, -27.260299574494514],\n              [153.56946902894418, -28.11006682710208],\n              [153.51210818910022, -28.99507740653271],\n              [153.339095493787, -29.45820159273248],\n              [153.06924116435886, -30.350240166954794],\n              [153.08960167868184, -30.923641859665423],\n              [152.89157759013938, -31.640445651986],\n              [152.45000247620533, -32.550002536755265],\n              [151.70911746643674, -33.041342054986394],\n              [151.3439717958624, -33.81602345147387],\n              [151.0105554547152, -34.31036020277793],\n              [150.71413943908902, -35.173459974916796],\n              [150.3282198427333, -35.671879164371916],\n              [150.0752120302323, -36.42020558039054],\n              [149.9461243023672, -37.10905242284121],\n              [149.99728397033613, -37.42526051203518],\n              [149.42388227762552, -37.77268116633344],\n              [148.30462243061584, -37.809061374666925],\n              [147.38173302631526, -38.21921721776752],\n              [146.92212283751132, -38.606532077795116],\n              [146.31792199115478, -39.03575652441141],\n              [145.4896521343806, -38.59376799901902],\n              [144.87697635312816, -38.41744801203915],\n              [145.03221235573295, -37.89618783951102],\n              [144.48568240781407, -38.085323581699285],\n              [143.60997358619602, -38.8094654274053],\n              [142.74542687395297, -38.538267510737555],\n              [142.17832970598192, -38.380034275059835],\n              [141.60658165910468, -38.30851409276788],\n              [140.63857872941327, -38.019332777662555],\n              [139.99215823787426, -37.402936293285094],\n              [139.8065881695141, -36.64360279718831],\n              [139.57414757706528, -36.13836231867066],\n              [139.08280805883413, -35.732754001611745],\n              [138.12074791885635, -35.61229623793939],\n              [138.44946170466494, -35.127261244447865],\n              [138.20756432510672, -34.38472258884593],\n              [137.71917036351618, -35.076825046531],\n              [136.8294055523147, -35.26053476332861],\n              [137.35237104710848, -34.7073385556441],\n              [137.50388634658827, -34.13026783624075],\n              [137.8901160015377, -33.64047861097838],\n              [137.81032759007905, -32.90000701266812],\n              [136.9968371929404, -33.752771498348615],\n              [136.37206912653164, -34.094766127256236],\n              [135.98904341038428, -34.89011809666046],\n              [135.20821251845405, -34.478670342752565],\n              [135.23921837782916, -33.94795338311502],\n              [134.6134167827746, -33.222778008763164],\n              [134.08590376193916, -32.84807219821479],\n              [134.27390262261702, -32.61723357516699],\n              [132.99077680880976, -32.01122405368019],\n              [132.28808068250487, -31.982646986622782],\n              [131.32633060112084, -31.49580331800104],\n              [129.53579389863972, -31.590422865527465],\n              [128.24093753470225, -31.948488864877852],\n              [127.1028674663383, -32.28226694105106],\n              [126.14871382050114, -32.21596607842059]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 6,\n        \"sovereignt\": \"Fiji\",\n        \"sov_a3\": \"FJI\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Fiji\",\n        \"adm0_a3\": \"FJI\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Fiji\",\n        \"gu_a3\": \"FJI\",\n        \"su_dif\": 0,\n        \"subunit\": \"Fiji\",\n        \"su_a3\": \"FJI\",\n        \"brk_diff\": 0,\n        \"name\": \"Fiji\",\n        \"name_long\": \"Fiji\",\n        \"brk_a3\": \"FJI\",\n        \"brk_name\": \"Fiji\",\n        \"brk_group\": null,\n        \"abbrev\": \"Fiji\",\n        \"postal\": \"FJ\",\n        \"formal_en\": \"Republic of Fiji\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Fiji\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Fiji\",\n        \"name_alt\": null,\n        \"mapcolor7\": 5,\n        \"mapcolor8\": 1,\n        \"mapcolor9\": 2,\n        \"mapcolor13\": 2,\n        \"pop_est\": 889953,\n        \"pop_rank\": 11,\n        \"pop_year\": 2019,\n        \"gdp_md\": 5496,\n        \"gdp_year\": 2019,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"FJ\",\n        \"iso_a2\": \"FJ\",\n        \"iso_a2_eh\": \"FJ\",\n        \"iso_a3\": \"FJI\",\n        \"iso_a3_eh\": \"FJI\",\n        \"iso_n3\": \"242\",\n        \"iso_n3_eh\": \"242\",\n        \"un_a3\": \"242\",\n        \"wb_a2\": \"FJ\",\n        \"wb_a3\": \"FJI\",\n        \"woe_id\": 23424813,\n        \"woe_id_eh\": 23424813,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"FJI\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"FJI\",\n        \"adm0_a3_us\": \"FJI\",\n        \"adm0_a3_fr\": \"FJI\",\n        \"adm0_a3_ru\": \"FJI\",\n        \"adm0_a3_es\": \"FJI\",\n        \"adm0_a3_cn\": \"FJI\",\n        \"adm0_a3_tw\": \"FJI\",\n        \"adm0_a3_in\": \"FJI\",\n        \"adm0_a3_np\": \"FJI\",\n        \"adm0_a3_pk\": \"FJI\",\n        \"adm0_a3_de\": \"FJI\",\n        \"adm0_a3_gb\": \"FJI\",\n        \"adm0_a3_br\": \"FJI\",\n        \"adm0_a3_il\": \"FJI\",\n        \"adm0_a3_ps\": \"FJI\",\n        \"adm0_a3_sa\": \"FJI\",\n        \"adm0_a3_eg\": \"FJI\",\n        \"adm0_a3_ma\": \"FJI\",\n        \"adm0_a3_pt\": \"FJI\",\n        \"adm0_a3_ar\": \"FJI\",\n        \"adm0_a3_jp\": \"FJI\",\n        \"adm0_a3_ko\": \"FJI\",\n        \"adm0_a3_vn\": \"FJI\",\n        \"adm0_a3_tr\": \"FJI\",\n        \"adm0_a3_id\": \"FJI\",\n        \"adm0_a3_pl\": \"FJI\",\n        \"adm0_a3_gr\": \"FJI\",\n        \"adm0_a3_it\": \"FJI\",\n        \"adm0_a3_nl\": \"FJI\",\n        \"adm0_a3_se\": \"FJI\",\n        \"adm0_a3_bd\": \"FJI\",\n        \"adm0_a3_ua\": \"FJI\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Oceania\",\n        \"region_un\": \"Oceania\",\n        \"subregion\": \"Melanesia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 4,\n        \"long_len\": 4,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 177.975427,\n        \"label_y\": -17.826099,\n        \"ne_id\": 1159320625,\n        \"wikidataid\": \"Q712\",\n        \"name_ar\": \"فيجي\",\n        \"name_bn\": \"ফিজি\",\n        \"name_de\": \"Fidschi\",\n        \"name_en\": \"Fiji\",\n        \"name_es\": \"Fiyi\",\n        \"name_fa\": \"فیجی\",\n        \"name_fr\": \"Fidji\",\n        \"name_el\": \"Φίτζι\",\n        \"name_he\": \"פיג'י\",\n        \"name_hi\": \"फ़िजी\",\n        \"name_hu\": \"Fidzsi-szigetek\",\n        \"name_id\": \"Fiji\",\n        \"name_it\": \"Figi\",\n        \"name_ja\": \"フィジー\",\n        \"name_ko\": \"피지\",\n        \"name_nl\": \"Fiji\",\n        \"name_pl\": \"Fidżi\",\n        \"name_pt\": \"Fiji\",\n        \"name_ru\": \"Фиджи\",\n        \"name_sv\": \"Fiji\",\n        \"name_tr\": \"Fiji\",\n        \"name_uk\": \"Фіджі\",\n        \"name_ur\": \"فجی\",\n        \"name_vi\": \"Fiji\",\n        \"name_zh\": \"斐济\",\n        \"name_zht\": \"斐濟\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"FJI.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [180, -16.067132663642447],\n              [180, -16.555216566639196],\n              [179.36414266196414, -16.801354076946883],\n              [178.72505936299711, -17.01204167436804],\n              [178.59683859511713, -16.63915],\n              [179.0966093629971, -16.433984277547403],\n              [179.4135093629971, -16.379054277547404],\n              [180, -16.067132663642447]\n            ]\n          ],\n          [\n            [\n              [178.12557, -17.50481],\n              [178.3736, -17.33992],\n              [178.71806, -17.62846],\n              [178.55271, -18.15059],\n              [177.93266, -18.28799],\n              [177.38146, -18.16432],\n              [177.28504, -17.72465],\n              [177.67087, -17.38114],\n              [178.12557, -17.50481]\n            ]\n          ],\n          [\n            [\n              [-179.79332010904864, -16.020882256741224],\n              [-179.9173693847653, -16.501783135649397],\n              [-180, -16.555216566639196],\n              [-180, -16.067132663642447],\n              [-179.79332010904864, -16.020882256741224]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 2,\n        \"sovereignt\": \"New Zealand\",\n        \"sov_a3\": \"NZ1\",\n        \"adm0_dif\": 1,\n        \"level\": 2,\n        \"type\": \"Country\",\n        \"tlc\": \"1\",\n        \"admin\": \"New Zealand\",\n        \"adm0_a3\": \"NZL\",\n        \"geou_dif\": 0,\n        \"geounit\": \"New Zealand\",\n        \"gu_a3\": \"NZL\",\n        \"su_dif\": 0,\n        \"subunit\": \"New Zealand\",\n        \"su_a3\": \"NZL\",\n        \"brk_diff\": 0,\n        \"name\": \"New Zealand\",\n        \"name_long\": \"New Zealand\",\n        \"brk_a3\": \"NZL\",\n        \"brk_name\": \"New Zealand\",\n        \"brk_group\": null,\n        \"abbrev\": \"N.Z.\",\n        \"postal\": \"NZ\",\n        \"formal_en\": \"New Zealand\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"New Zealand\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"New Zealand\",\n        \"name_alt\": null,\n        \"mapcolor7\": 3,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 4,\n        \"mapcolor13\": 4,\n        \"pop_est\": 4917000,\n        \"pop_rank\": 12,\n        \"pop_year\": 2019,\n        \"gdp_md\": 206928,\n        \"gdp_year\": 2019,\n        \"economy\": \"2. Developed region: nonG7\",\n        \"income_grp\": \"1. High income: OECD\",\n        \"fips_10\": \"NZ\",\n        \"iso_a2\": \"NZ\",\n        \"iso_a2_eh\": \"NZ\",\n        \"iso_a3\": \"NZL\",\n        \"iso_a3_eh\": \"NZL\",\n        \"iso_n3\": \"554\",\n        \"iso_n3_eh\": \"554\",\n        \"un_a3\": \"554\",\n        \"wb_a2\": \"NZ\",\n        \"wb_a3\": \"NZL\",\n        \"woe_id\": 23424916,\n        \"woe_id_eh\": 23424916,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"NZL\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"NZL\",\n        \"adm0_a3_us\": \"NZL\",\n        \"adm0_a3_fr\": \"NZL\",\n        \"adm0_a3_ru\": \"NZL\",\n        \"adm0_a3_es\": \"NZL\",\n        \"adm0_a3_cn\": \"NZL\",\n        \"adm0_a3_tw\": \"NZL\",\n        \"adm0_a3_in\": \"NZL\",\n        \"adm0_a3_np\": \"NZL\",\n        \"adm0_a3_pk\": \"NZL\",\n        \"adm0_a3_de\": \"NZL\",\n        \"adm0_a3_gb\": \"NZL\",\n        \"adm0_a3_br\": \"NZL\",\n        \"adm0_a3_il\": \"NZL\",\n        \"adm0_a3_ps\": \"NZL\",\n        \"adm0_a3_sa\": \"NZL\",\n        \"adm0_a3_eg\": \"NZL\",\n        \"adm0_a3_ma\": \"NZL\",\n        \"adm0_a3_pt\": \"NZL\",\n        \"adm0_a3_ar\": \"NZL\",\n        \"adm0_a3_jp\": \"NZL\",\n        \"adm0_a3_ko\": \"NZL\",\n        \"adm0_a3_vn\": \"NZL\",\n        \"adm0_a3_tr\": \"NZL\",\n        \"adm0_a3_id\": \"NZL\",\n        \"adm0_a3_pl\": \"NZL\",\n        \"adm0_a3_gr\": \"NZL\",\n        \"adm0_a3_it\": \"NZL\",\n        \"adm0_a3_nl\": \"NZL\",\n        \"adm0_a3_se\": \"NZL\",\n        \"adm0_a3_bd\": \"NZL\",\n        \"adm0_a3_ua\": \"NZL\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Oceania\",\n        \"region_un\": \"Oceania\",\n        \"subregion\": \"Australia and New Zealand\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 11,\n        \"long_len\": 11,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 2,\n        \"max_label\": 6.7,\n        \"label_x\": 172.787,\n        \"label_y\": -39.759,\n        \"ne_id\": 1159321135,\n        \"wikidataid\": \"Q664\",\n        \"name_ar\": \"نيوزيلندا\",\n        \"name_bn\": \"নিউজিল্যান্ড\",\n        \"name_de\": \"Neuseeland\",\n        \"name_en\": \"New Zealand\",\n        \"name_es\": \"Nueva Zelanda\",\n        \"name_fa\": \"نیوزیلند\",\n        \"name_fr\": \"Nouvelle-Zélande\",\n        \"name_el\": \"Νέα Ζηλανδία\",\n        \"name_he\": \"ניו זילנד\",\n        \"name_hi\": \"न्यूज़ीलैण्ड\",\n        \"name_hu\": \"Új-Zéland\",\n        \"name_id\": \"Selandia Baru\",\n        \"name_it\": \"Nuova Zelanda\",\n        \"name_ja\": \"ニュージーランド\",\n        \"name_ko\": \"뉴질랜드\",\n        \"name_nl\": \"Nieuw-Zeeland\",\n        \"name_pl\": \"Nowa Zelandia\",\n        \"name_pt\": \"Nova Zelândia\",\n        \"name_ru\": \"Новая Зеландия\",\n        \"name_sv\": \"Nya Zeeland\",\n        \"name_tr\": \"Yeni Zelanda\",\n        \"name_uk\": \"Нова Зеландія\",\n        \"name_ur\": \"نیوزی لینڈ\",\n        \"name_vi\": \"New Zealand\",\n        \"name_zh\": \"新西兰\",\n        \"name_zht\": \"新西蘭\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"NZL.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [176.8858236026052, -40.0659778785822],\n              [176.50801720611926, -40.60480803808957],\n              [176.01244022044023, -41.28962411882147],\n              [175.23956749908297, -41.68830779395328],\n              [175.06789839100935, -41.42589487077513],\n              [174.65097293527847, -41.2818209775454],\n              [175.22763024322356, -40.45923552832336],\n              [174.9001566917899, -39.9089332008472],\n              [173.82404666574394, -39.50885426204351],\n              [173.85226199777532, -39.14660247167748],\n              [174.57480187408035, -38.797683200842755],\n              [174.74347374908098, -38.02780771255843],\n              [174.6970166364506, -37.38112883885792],\n              [174.2920284365792, -36.71109221776149],\n              [174.31900353423552, -36.53482390721391],\n              [173.8409965355357, -36.12198088963413],\n              [173.0541711774596, -35.23712533950039],\n              [172.63600548735377, -34.52910654066943],\n              [173.00704227120946, -34.45066171645037],\n              [173.55129845610747, -35.00618336358801],\n              [174.3293904971262, -35.26549570082862],\n              [174.61200890533044, -36.15639739354052],\n              [175.33661583892712, -37.20909799575827],\n              [175.3575964704376, -36.52619394302117],\n              [175.80888675364253, -36.79894215265767],\n              [175.9584900251275, -37.55538176854612],\n              [176.76319542877656, -37.881253350578675],\n              [177.4388131045605, -37.961248467766495],\n              [178.01035444570866, -37.579824721020174],\n              [178.51709354076274, -37.6953732236248],\n              [178.27473107331383, -38.58281259537314],\n              [177.97046023997927, -39.166342868812976],\n              [177.20699262929918, -39.14577564876082],\n              [176.93998050364706, -39.44973642350161],\n              [177.0329464053401, -39.879942722331464],\n              [176.8858236026052, -40.0659778785822]\n            ]\n          ],\n          [\n            [\n              [169.66781456937315, -43.555325616226376],\n              [170.52491987536615, -43.031688327812816],\n              [171.125089960004, -42.51275359473782],\n              [171.56971398344325, -41.767424411792135],\n              [171.94870893787186, -41.514416599291124],\n              [172.0972270042787, -40.956104424809716],\n              [172.79857954334403, -40.4939620908235],\n              [173.02037479074076, -40.919052422856446],\n              [173.2472343285021, -41.33199879330081],\n              [173.9584053897028, -40.926700534835646],\n              [174.24758670480816, -41.34915536882171],\n              [174.24851688058942, -41.77000823340673],\n              [173.87644656808794, -42.23318409603879],\n              [173.2227396995957, -42.970038344088614],\n              [172.71124637277074, -43.372287693048555],\n              [173.08011274647015, -43.853343601253606],\n              [172.3085836123525, -43.86569426857136],\n              [171.45292524646362, -44.2425188128437],\n              [171.18513797432718, -44.89710418068486],\n              [170.61669721911653, -45.908928724959736],\n              [169.8314221540093, -46.35577483498757],\n              [169.33233117093428, -46.641235446967876],\n              [168.41135379462855, -46.61994475686363],\n              [167.76374474514682, -46.29019744240919],\n              [166.67688602118417, -46.219917494492236],\n              [166.50914432196467, -45.85270476662619],\n              [167.0464241885033, -45.110941257508635],\n              [168.30376346259686, -44.12397307716614],\n              [168.94940880765157, -43.935819187191434],\n              [169.66781456937315, -43.555325616226376]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"France\",\n        \"sov_a3\": \"FR1\",\n        \"adm0_dif\": 1,\n        \"level\": 2,\n        \"type\": \"Dependency\",\n        \"tlc\": \"1\",\n        \"admin\": \"New Caledonia\",\n        \"adm0_a3\": \"NCL\",\n        \"geou_dif\": 0,\n        \"geounit\": \"New Caledonia\",\n        \"gu_a3\": \"NCL\",\n        \"su_dif\": 0,\n        \"subunit\": \"New Caledonia\",\n        \"su_a3\": \"NCL\",\n        \"brk_diff\": 0,\n        \"name\": \"New Caledonia\",\n        \"name_long\": \"New Caledonia\",\n        \"brk_a3\": \"NCL\",\n        \"brk_name\": \"New Caledonia\",\n        \"brk_group\": null,\n        \"abbrev\": \"New C.\",\n        \"postal\": \"NC\",\n        \"formal_en\": \"New Caledonia\",\n        \"formal_fr\": \"Nouvelle-Calédonie\",\n        \"name_ciawf\": \"New Caledonia\",\n        \"note_adm0\": \"Fr.\",\n        \"note_brk\": null,\n        \"name_sort\": \"New Caledonia\",\n        \"name_alt\": null,\n        \"mapcolor7\": 7,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 9,\n        \"mapcolor13\": 11,\n        \"pop_est\": 287800,\n        \"pop_rank\": 10,\n        \"pop_year\": 2019,\n        \"gdp_md\": 10770,\n        \"gdp_year\": 2016,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"2. High income: nonOECD\",\n        \"fips_10\": \"NC\",\n        \"iso_a2\": \"NC\",\n        \"iso_a2_eh\": \"NC\",\n        \"iso_a3\": \"NCL\",\n        \"iso_a3_eh\": \"NCL\",\n        \"iso_n3\": \"540\",\n        \"iso_n3_eh\": \"540\",\n        \"un_a3\": \"540\",\n        \"wb_a2\": \"NC\",\n        \"wb_a3\": \"NCL\",\n        \"woe_id\": 23424903,\n        \"woe_id_eh\": 23424903,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"NCL\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"NCL\",\n        \"adm0_a3_us\": \"NCL\",\n        \"adm0_a3_fr\": \"NCL\",\n        \"adm0_a3_ru\": \"NCL\",\n        \"adm0_a3_es\": \"NCL\",\n        \"adm0_a3_cn\": \"NCL\",\n        \"adm0_a3_tw\": \"NCL\",\n        \"adm0_a3_in\": \"NCL\",\n        \"adm0_a3_np\": \"NCL\",\n        \"adm0_a3_pk\": \"NCL\",\n        \"adm0_a3_de\": \"NCL\",\n        \"adm0_a3_gb\": \"NCL\",\n        \"adm0_a3_br\": \"NCL\",\n        \"adm0_a3_il\": \"NCL\",\n        \"adm0_a3_ps\": \"NCL\",\n        \"adm0_a3_sa\": \"NCL\",\n        \"adm0_a3_eg\": \"NCL\",\n        \"adm0_a3_ma\": \"NCL\",\n        \"adm0_a3_pt\": \"NCL\",\n        \"adm0_a3_ar\": \"NCL\",\n        \"adm0_a3_jp\": \"NCL\",\n        \"adm0_a3_ko\": \"NCL\",\n        \"adm0_a3_vn\": \"NCL\",\n        \"adm0_a3_tr\": \"NCL\",\n        \"adm0_a3_id\": \"NCL\",\n        \"adm0_a3_pl\": \"NCL\",\n        \"adm0_a3_gr\": \"NCL\",\n        \"adm0_a3_it\": \"NCL\",\n        \"adm0_a3_nl\": \"NCL\",\n        \"adm0_a3_se\": \"NCL\",\n        \"adm0_a3_bd\": \"NCL\",\n        \"adm0_a3_ua\": \"NCL\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Oceania\",\n        \"region_un\": \"Oceania\",\n        \"subregion\": \"Melanesia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 13,\n        \"long_len\": 13,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": -99,\n        \"min_zoom\": 0,\n        \"min_label\": 4.6,\n        \"max_label\": 8,\n        \"label_x\": 165.084004,\n        \"label_y\": -21.064697,\n        \"ne_id\": 1159320641,\n        \"wikidataid\": \"Q33788\",\n        \"name_ar\": \"كاليدونيا الجديدة\",\n        \"name_bn\": \"নতুন ক্যালিডোনিয়া\",\n        \"name_de\": \"Neukaledonien\",\n        \"name_en\": \"New Caledonia\",\n        \"name_es\": \"Nueva Caledonia\",\n        \"name_fa\": \"کالدونیای جدید\",\n        \"name_fr\": \"Nouvelle-Calédonie\",\n        \"name_el\": \"Νέα Καληδονία\",\n        \"name_he\": \"קלדוניה החדשה\",\n        \"name_hi\": \"नया कैलेडोनिया\",\n        \"name_hu\": \"Új-Kaledónia\",\n        \"name_id\": \"Kaledonia Baru\",\n        \"name_it\": \"Nuova Caledonia\",\n        \"name_ja\": \"ニューカレドニア\",\n        \"name_ko\": \"누벨칼레도니\",\n        \"name_nl\": \"Nieuw-Caledonië\",\n        \"name_pl\": \"Nowa Kaledonia\",\n        \"name_pt\": \"Nova Caledónia\",\n        \"name_ru\": \"Новая Каледония\",\n        \"name_sv\": \"Nya Kaledonien\",\n        \"name_tr\": \"Yeni Kaledonya\",\n        \"name_uk\": \"Нова Каледонія\",\n        \"name_ur\": \"نیو کیلیڈونیا\",\n        \"name_vi\": \"Nouvelle-Calédonie\",\n        \"name_zh\": \"新喀里多尼亚\",\n        \"name_zht\": \"新喀里多尼亞\",\n        \"fclass_iso\": \"Admin-0 dependency\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 dependency\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"NCL.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [165.77998986232637, -21.08000497811563],\n            [166.59999148993384, -21.700018812753527],\n            [167.1200114280869, -22.15999073658349],\n            [166.7400346214448, -22.39997608814695],\n            [166.18973229396866, -22.129708347260454],\n            [165.47437544175222, -21.679606621998232],\n            [164.82981530177568, -21.14981983814195],\n            [164.16799523341365, -20.444746595951628],\n            [164.029605747736, -20.105645847252354],\n            [164.45996707586272, -20.1200118954295],\n            [165.02003624904205, -20.45999114347773],\n            [165.46000939357512, -20.80002206795826],\n            [165.77998986232637, -21.08000497811563]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 3,\n        \"sovereignt\": \"Solomon Islands\",\n        \"sov_a3\": \"SLB\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Solomon Islands\",\n        \"adm0_a3\": \"SLB\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Solomon Islands\",\n        \"gu_a3\": \"SLB\",\n        \"su_dif\": 0,\n        \"subunit\": \"Solomon Islands\",\n        \"su_a3\": \"SLB\",\n        \"brk_diff\": 0,\n        \"name\": \"Solomon Is.\",\n        \"name_long\": \"Solomon Islands\",\n        \"brk_a3\": \"SLB\",\n        \"brk_name\": \"Solomon Is.\",\n        \"brk_group\": null,\n        \"abbrev\": \"S. Is.\",\n        \"postal\": \"SB\",\n        \"formal_en\": null,\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Solomon Islands\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Solomon Islands\",\n        \"name_alt\": null,\n        \"mapcolor7\": 1,\n        \"mapcolor8\": 4,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": 6,\n        \"pop_est\": 669823,\n        \"pop_rank\": 11,\n        \"pop_year\": 2019,\n        \"gdp_md\": 1589,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"BP\",\n        \"iso_a2\": \"SB\",\n        \"iso_a2_eh\": \"SB\",\n        \"iso_a3\": \"SLB\",\n        \"iso_a3_eh\": \"SLB\",\n        \"iso_n3\": \"090\",\n        \"iso_n3_eh\": \"090\",\n        \"un_a3\": \"090\",\n        \"wb_a2\": \"SB\",\n        \"wb_a3\": \"SLB\",\n        \"woe_id\": 23424766,\n        \"woe_id_eh\": 23424766,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"SLB\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"SLB\",\n        \"adm0_a3_us\": \"SLB\",\n        \"adm0_a3_fr\": \"SLB\",\n        \"adm0_a3_ru\": \"SLB\",\n        \"adm0_a3_es\": \"SLB\",\n        \"adm0_a3_cn\": \"SLB\",\n        \"adm0_a3_tw\": \"SLB\",\n        \"adm0_a3_in\": \"SLB\",\n        \"adm0_a3_np\": \"SLB\",\n        \"adm0_a3_pk\": \"SLB\",\n        \"adm0_a3_de\": \"SLB\",\n        \"adm0_a3_gb\": \"SLB\",\n        \"adm0_a3_br\": \"SLB\",\n        \"adm0_a3_il\": \"SLB\",\n        \"adm0_a3_ps\": \"SLB\",\n        \"adm0_a3_sa\": \"SLB\",\n        \"adm0_a3_eg\": \"SLB\",\n        \"adm0_a3_ma\": \"SLB\",\n        \"adm0_a3_pt\": \"SLB\",\n        \"adm0_a3_ar\": \"SLB\",\n        \"adm0_a3_jp\": \"SLB\",\n        \"adm0_a3_ko\": \"SLB\",\n        \"adm0_a3_vn\": \"SLB\",\n        \"adm0_a3_tr\": \"SLB\",\n        \"adm0_a3_id\": \"SLB\",\n        \"adm0_a3_pl\": \"SLB\",\n        \"adm0_a3_gr\": \"SLB\",\n        \"adm0_a3_it\": \"SLB\",\n        \"adm0_a3_nl\": \"SLB\",\n        \"adm0_a3_se\": \"SLB\",\n        \"adm0_a3_bd\": \"SLB\",\n        \"adm0_a3_ua\": \"SLB\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Oceania\",\n        \"region_un\": \"Oceania\",\n        \"subregion\": \"Melanesia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 11,\n        \"long_len\": 15,\n        \"abbrev_len\": 6,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 3,\n        \"max_label\": 8,\n        \"label_x\": 159.170468,\n        \"label_y\": -8.029548,\n        \"ne_id\": 1159321249,\n        \"wikidataid\": \"Q685\",\n        \"name_ar\": \"جزر سليمان\",\n        \"name_bn\": \"সলোমন দ্বীপপুঞ্জ\",\n        \"name_de\": \"Salomonen\",\n        \"name_en\": \"Solomon Islands\",\n        \"name_es\": \"Islas Salomón\",\n        \"name_fa\": \"جزایر سلیمان\",\n        \"name_fr\": \"Îles Salomon\",\n        \"name_el\": \"Νησιά Σολομώντα\",\n        \"name_he\": \"איי שלמה\",\n        \"name_hi\": \"सोलोमन द्वीपसमूह\",\n        \"name_hu\": \"Salamon-szigetek\",\n        \"name_id\": \"Kepulauan Solomon\",\n        \"name_it\": \"Isole Salomone\",\n        \"name_ja\": \"ソロモン諸島\",\n        \"name_ko\": \"솔로몬 제도\",\n        \"name_nl\": \"Salomonseilanden\",\n        \"name_pl\": \"Wyspy Salomona\",\n        \"name_pt\": \"Ilhas Salomão\",\n        \"name_ru\": \"Соломоновы Острова\",\n        \"name_sv\": \"Salomonöarna\",\n        \"name_tr\": \"Solomon Adaları\",\n        \"name_uk\": \"Соломонові Острови\",\n        \"name_ur\": \"جزائر سلیمان\",\n        \"name_vi\": \"Quần đảo Solomon\",\n        \"name_zh\": \"所罗门群岛\",\n        \"name_zht\": \"索羅門群島\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"SLB.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [162.1190246930409, -10.48271900802115],\n              [162.3986458681722, -10.826367282762106],\n              [161.70003218001835, -10.820011081590211],\n              [161.31979699121476, -10.204751478723168],\n              [161.91738325423802, -10.446700534713713],\n              [162.1190246930409, -10.48271900802115]\n            ]\n          ],\n          [\n            [\n              [161.67998172428912, -9.599982191611367],\n              [161.5293966005906, -9.784312025596485],\n              [160.78825320866054, -8.917543226764892],\n              [160.57999718652434, -8.32000864017396],\n              [160.92002811100485, -8.32000864017396],\n              [161.28000613835, -9.120011488484451],\n              [161.67998172428912, -9.599982191611367]\n            ]\n          ],\n          [\n            [\n              [160.85222863183787, -9.872937106977048],\n              [160.4625883323572, -9.895209649294841],\n              [159.84944746321412, -9.794027194867354],\n              [159.64000288313514, -9.639979750205278],\n              [159.70294477766663, -9.242949720906815],\n              [160.36295617089843, -9.40030445723557],\n              [160.68851769433724, -9.610162448772869],\n              [160.85222863183787, -9.872937106977048]\n            ]\n          ],\n          [\n            [\n              [159.64000288313514, -8.020026950719632],\n              [159.87502729719859, -8.337320244991737],\n              [159.91740197167792, -8.53828989017483],\n              [159.13367719953936, -8.114181410355428],\n              [158.5861137229747, -7.754823500197737],\n              [158.21114953026483, -7.421872246941199],\n              [158.35997765526542, -7.320017998893917],\n              [158.8200012555277, -7.560003350457379],\n              [159.64000288313514, -8.020026950719632]\n            ]\n          ],\n          [\n            [\n              [157.14000044171888, -7.021638278840641],\n              [157.5384257346892, -7.347819919466943],\n              [157.33941979393325, -7.404767347852592],\n              [156.90203047101483, -7.176874281445428],\n              [156.4913578635913, -6.765943291860452],\n              [156.542827590154, -6.599338474151452],\n              [157.14000044171888, -7.021638278840641]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Vanuatu\",\n        \"sov_a3\": \"VUT\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Sovereign country\",\n        \"tlc\": \"1\",\n        \"admin\": \"Vanuatu\",\n        \"adm0_a3\": \"VUT\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Vanuatu\",\n        \"gu_a3\": \"VUT\",\n        \"su_dif\": 0,\n        \"subunit\": \"Vanuatu\",\n        \"su_a3\": \"VUT\",\n        \"brk_diff\": 0,\n        \"name\": \"Vanuatu\",\n        \"name_long\": \"Vanuatu\",\n        \"brk_a3\": \"VUT\",\n        \"brk_name\": \"Vanuatu\",\n        \"brk_group\": null,\n        \"abbrev\": \"Van.\",\n        \"postal\": \"VU\",\n        \"formal_en\": \"Republic of Vanuatu\",\n        \"formal_fr\": null,\n        \"name_ciawf\": \"Vanuatu\",\n        \"note_adm0\": null,\n        \"note_brk\": null,\n        \"name_sort\": \"Vanuatu\",\n        \"name_alt\": null,\n        \"mapcolor7\": 6,\n        \"mapcolor8\": 3,\n        \"mapcolor9\": 7,\n        \"mapcolor13\": 3,\n        \"pop_est\": 299882,\n        \"pop_rank\": 10,\n        \"pop_year\": 2019,\n        \"gdp_md\": 934,\n        \"gdp_year\": 2019,\n        \"economy\": \"7. Least developed region\",\n        \"income_grp\": \"4. Lower middle income\",\n        \"fips_10\": \"NH\",\n        \"iso_a2\": \"VU\",\n        \"iso_a2_eh\": \"VU\",\n        \"iso_a3\": \"VUT\",\n        \"iso_a3_eh\": \"VUT\",\n        \"iso_n3\": \"548\",\n        \"iso_n3_eh\": \"548\",\n        \"un_a3\": \"548\",\n        \"wb_a2\": \"VU\",\n        \"wb_a3\": \"VUT\",\n        \"woe_id\": 23424907,\n        \"woe_id_eh\": 23424907,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"VUT\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"VUT\",\n        \"adm0_a3_us\": \"VUT\",\n        \"adm0_a3_fr\": \"VUT\",\n        \"adm0_a3_ru\": \"VUT\",\n        \"adm0_a3_es\": \"VUT\",\n        \"adm0_a3_cn\": \"VUT\",\n        \"adm0_a3_tw\": \"VUT\",\n        \"adm0_a3_in\": \"VUT\",\n        \"adm0_a3_np\": \"VUT\",\n        \"adm0_a3_pk\": \"VUT\",\n        \"adm0_a3_de\": \"VUT\",\n        \"adm0_a3_gb\": \"VUT\",\n        \"adm0_a3_br\": \"VUT\",\n        \"adm0_a3_il\": \"VUT\",\n        \"adm0_a3_ps\": \"VUT\",\n        \"adm0_a3_sa\": \"VUT\",\n        \"adm0_a3_eg\": \"VUT\",\n        \"adm0_a3_ma\": \"VUT\",\n        \"adm0_a3_pt\": \"VUT\",\n        \"adm0_a3_ar\": \"VUT\",\n        \"adm0_a3_jp\": \"VUT\",\n        \"adm0_a3_ko\": \"VUT\",\n        \"adm0_a3_vn\": \"VUT\",\n        \"adm0_a3_tr\": \"VUT\",\n        \"adm0_a3_id\": \"VUT\",\n        \"adm0_a3_pl\": \"VUT\",\n        \"adm0_a3_gr\": \"VUT\",\n        \"adm0_a3_it\": \"VUT\",\n        \"adm0_a3_nl\": \"VUT\",\n        \"adm0_a3_se\": \"VUT\",\n        \"adm0_a3_bd\": \"VUT\",\n        \"adm0_a3_ua\": \"VUT\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Oceania\",\n        \"region_un\": \"Oceania\",\n        \"subregion\": \"Melanesia\",\n        \"region_wb\": \"East Asia & Pacific\",\n        \"name_len\": 7,\n        \"long_len\": 7,\n        \"abbrev_len\": 4,\n        \"tiny\": 2,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 166.908762,\n        \"label_y\": -15.37153,\n        \"ne_id\": 1159321421,\n        \"wikidataid\": \"Q686\",\n        \"name_ar\": \"فانواتو\",\n        \"name_bn\": \"ভানুয়াতু\",\n        \"name_de\": \"Vanuatu\",\n        \"name_en\": \"Vanuatu\",\n        \"name_es\": \"Vanuatu\",\n        \"name_fa\": \"وانواتو\",\n        \"name_fr\": \"Vanuatu\",\n        \"name_el\": \"Βανουάτου\",\n        \"name_he\": \"ונואטו\",\n        \"name_hi\": \"वानूआटू\",\n        \"name_hu\": \"Vanuatu\",\n        \"name_id\": \"Vanuatu\",\n        \"name_it\": \"Vanuatu\",\n        \"name_ja\": \"バヌアツ\",\n        \"name_ko\": \"바누아투\",\n        \"name_nl\": \"Vanuatu\",\n        \"name_pl\": \"Vanuatu\",\n        \"name_pt\": \"Vanuatu\",\n        \"name_ru\": \"Вануату\",\n        \"name_sv\": \"Vanuatu\",\n        \"name_tr\": \"Vanuatu\",\n        \"name_uk\": \"Вануату\",\n        \"name_ur\": \"وانواتو\",\n        \"name_vi\": \"Vanuatu\",\n        \"name_zh\": \"瓦努阿图\",\n        \"name_zht\": \"萬那杜\",\n        \"fclass_iso\": \"Admin-0 country\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 country\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"VUT.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [167.2168013857696, -15.89184620530842],\n              [167.84487674384502, -16.46633310309717],\n              [167.51518110582288, -16.59784962327999],\n              [167.1800077659778, -16.159995212470946],\n              [167.2168013857696, -15.89184620530842]\n            ]\n          ],\n          [\n            [\n              [166.79315799384085, -15.668810723536687],\n              [166.6498592470955, -15.392703545801211],\n              [166.6291369977464, -14.626497084209605],\n              [167.10771243720149, -14.933920179913954],\n              [167.27002811103023, -15.740020847234888],\n              [167.00120731024793, -15.614602146062516],\n              [166.79315799384085, -15.668810723536687]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 1,\n        \"labelrank\": 4,\n        \"sovereignt\": \"Antarctica\",\n        \"sov_a3\": \"ATA\",\n        \"adm0_dif\": 0,\n        \"level\": 2,\n        \"type\": \"Indeterminate\",\n        \"tlc\": \"1\",\n        \"admin\": \"Antarctica\",\n        \"adm0_a3\": \"ATA\",\n        \"geou_dif\": 0,\n        \"geounit\": \"Antarctica\",\n        \"gu_a3\": \"ATA\",\n        \"su_dif\": 0,\n        \"subunit\": \"Antarctica\",\n        \"su_a3\": \"ATA\",\n        \"brk_diff\": 0,\n        \"name\": \"Antarctica\",\n        \"name_long\": \"Antarctica\",\n        \"brk_a3\": \"ATA\",\n        \"brk_name\": \"Antarctica\",\n        \"brk_group\": null,\n        \"abbrev\": \"Ant.\",\n        \"postal\": \"AQ\",\n        \"formal_en\": null,\n        \"formal_fr\": null,\n        \"name_ciawf\": null,\n        \"note_adm0\": \"By treaty\",\n        \"note_brk\": \"Multiple claims held in abeyance by treaty\",\n        \"name_sort\": \"Antarctica\",\n        \"name_alt\": null,\n        \"mapcolor7\": 4,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 1,\n        \"mapcolor13\": -99,\n        \"pop_est\": 4490,\n        \"pop_rank\": 4,\n        \"pop_year\": 2019,\n        \"gdp_md\": 898,\n        \"gdp_year\": 2013,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"2. High income: nonOECD\",\n        \"fips_10\": \"AY\",\n        \"iso_a2\": \"AQ\",\n        \"iso_a2_eh\": \"AQ\",\n        \"iso_a3\": \"ATA\",\n        \"iso_a3_eh\": \"ATA\",\n        \"iso_n3\": \"010\",\n        \"iso_n3_eh\": \"010\",\n        \"un_a3\": \"010\",\n        \"wb_a2\": \"-99\",\n        \"wb_a3\": \"-99\",\n        \"woe_id\": 28289409,\n        \"woe_id_eh\": 28289409,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"ATA\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"ATA\",\n        \"adm0_a3_us\": \"ATA\",\n        \"adm0_a3_fr\": \"ATA\",\n        \"adm0_a3_ru\": \"ATA\",\n        \"adm0_a3_es\": \"ATA\",\n        \"adm0_a3_cn\": \"ATA\",\n        \"adm0_a3_tw\": \"ATA\",\n        \"adm0_a3_in\": \"ATA\",\n        \"adm0_a3_np\": \"ATA\",\n        \"adm0_a3_pk\": \"ATA\",\n        \"adm0_a3_de\": \"ATA\",\n        \"adm0_a3_gb\": \"ATA\",\n        \"adm0_a3_br\": \"ATA\",\n        \"adm0_a3_il\": \"ATA\",\n        \"adm0_a3_ps\": \"ATA\",\n        \"adm0_a3_sa\": \"ATA\",\n        \"adm0_a3_eg\": \"ATA\",\n        \"adm0_a3_ma\": \"ATA\",\n        \"adm0_a3_pt\": \"ATA\",\n        \"adm0_a3_ar\": \"ATA\",\n        \"adm0_a3_jp\": \"ATA\",\n        \"adm0_a3_ko\": \"ATA\",\n        \"adm0_a3_vn\": \"ATA\",\n        \"adm0_a3_tr\": \"ATA\",\n        \"adm0_a3_id\": \"ATA\",\n        \"adm0_a3_pl\": \"ATA\",\n        \"adm0_a3_gr\": \"ATA\",\n        \"adm0_a3_it\": \"ATA\",\n        \"adm0_a3_nl\": \"ATA\",\n        \"adm0_a3_se\": \"ATA\",\n        \"adm0_a3_bd\": \"ATA\",\n        \"adm0_a3_ua\": \"ATA\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Antarctica\",\n        \"region_un\": \"Antarctica\",\n        \"subregion\": \"Antarctica\",\n        \"region_wb\": \"Antarctica\",\n        \"name_len\": 10,\n        \"long_len\": 10,\n        \"abbrev_len\": 4,\n        \"tiny\": -99,\n        \"homepart\": 1,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 35.885455,\n        \"label_y\": -79.843222,\n        \"ne_id\": 1159320335,\n        \"wikidataid\": \"Q51\",\n        \"name_ar\": \"القارة القطبية الجنوبية\",\n        \"name_bn\": \"অ্যান্টার্কটিকা\",\n        \"name_de\": \"Antarktika\",\n        \"name_en\": \"Antarctica\",\n        \"name_es\": \"Antártida\",\n        \"name_fa\": \"جنوبگان\",\n        \"name_fr\": \"Antarctique\",\n        \"name_el\": \"Ανταρκτική\",\n        \"name_he\": \"אנטארקטיקה\",\n        \"name_hi\": \"अंटार्कटिका\",\n        \"name_hu\": \"Antarktika\",\n        \"name_id\": \"Antartika\",\n        \"name_it\": \"Antartide\",\n        \"name_ja\": \"南極大陸\",\n        \"name_ko\": \"남극\",\n        \"name_nl\": \"Antarctica\",\n        \"name_pl\": \"Antarktyda\",\n        \"name_pt\": \"Antártida\",\n        \"name_ru\": \"Антарктида\",\n        \"name_sv\": \"Antarktis\",\n        \"name_tr\": \"Antarktika\",\n        \"name_uk\": \"Антарктида\",\n        \"name_ur\": \"انٹارکٹکا\",\n        \"name_vi\": \"Châu Nam Cực\",\n        \"name_zh\": \"南极洲\",\n        \"name_zht\": \"南極洲\",\n        \"fclass_iso\": \"Admin-0 dependency\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 dependency\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"ATA.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"MultiPolygon\",\n        \"coordinates\": [\n          [\n            [\n              [-48.66061601418252, -78.04701873159873],\n              [-48.1513964503784, -78.04706960058677],\n              [-46.66285681821098, -77.83147552506506],\n              [-45.15475765642109, -78.04706960058677],\n              [-43.92082780615574, -78.47810272233328],\n              [-43.48994971370611, -79.0855599913685],\n              [-43.37243750667439, -79.51664478954731],\n              [-43.33326677099714, -80.0261227355129],\n              [-44.880536668464266, -80.33964365022769],\n              [-46.50617387550203, -80.59435678499433],\n              [-48.38642086444183, -80.82948455192233],\n              [-50.48210689960646, -81.02544158317313],\n              [-52.85198808451179, -80.96668547965729],\n              [-54.16425940613162, -80.63352752067158],\n              [-53.987991095584036, -80.22202809033138],\n              [-51.85313432474216, -79.94772958772612],\n              [-50.99132646341059, -79.6146233051727],\n              [-50.364594692574755, -79.1834868305616],\n              [-49.91413123228649, -78.81120900488669],\n              [-49.30695899107312, -78.45856903092695],\n              [-48.66061601418252, -78.04701792415447],\n              [-48.66061601418252, -78.04701873159873]\n            ]\n          ],\n          [\n            [\n              [-66.29003089055513, -80.25577280061798],\n              [-64.03768775089767, -80.29494353629522],\n              [-61.88324561221718, -80.39287037548831],\n              [-61.13897579613348, -79.98137094514813],\n              [-60.61011918805844, -79.6286792947561],\n              [-59.572094692611586, -80.04017872509628],\n              [-59.86584937197473, -80.54965667106185],\n              [-60.15965572777019, -81.00032683707929],\n              [-62.25539343936711, -80.86317758577665],\n              [-64.48812537296979, -80.92193368929253],\n              [-65.74166642928991, -80.5888274067391],\n              [-65.74166642928991, -80.54965667106185],\n              [-66.29003089055513, -80.25577280061798]\n            ]\n          ],\n          [\n            [\n              [-73.9158186510023, -71.26934457792578],\n              [-73.9158186510023, -71.26934377048153],\n              [-73.23033077665059, -71.15177988701751],\n              [-72.07471655952358, -71.19095062269476],\n              [-71.78096188016042, -70.68147267672917],\n              [-71.72217993842841, -70.30919565849851],\n              [-71.74179114448319, -69.50578216565675],\n              [-71.1738154771632, -69.03547495536841],\n              [-70.25325151231577, -68.87874033622717],\n              [-69.72444658067303, -69.25101735445783],\n              [-69.48942216660959, -69.62334604912077],\n              [-69.05851823594381, -70.0740162151382],\n              [-68.72554114447112, -70.5051526897493],\n              [-68.45134599473043, -70.95582285576673],\n              [-68.33383378769872, -71.40649302178416],\n              [-68.51012793646244, -71.79840708428573],\n              [-68.78429724798698, -72.17073577894867],\n              [-69.95947099473648, -72.3078850302513],\n              [-71.07588863797011, -72.50384206150208],\n              [-72.38813412137378, -72.48425669366347],\n              [-71.89849992540829, -72.0923426311619],\n              [-73.07362199572549, -72.22949188246453],\n              [-74.19003963895912, -72.36669281019945],\n              [-74.95389482288145, -72.07275726332328],\n              [-75.01262508818117, -71.6612578329831],\n              [-73.9158186510023, -71.26934457792578]\n            ]\n          ],\n          [\n            [\n              [-102.33072506387639, -71.89416432076682],\n              [-102.33072506387639, -71.89416351332257],\n              [-101.70396745482441, -71.7177918499104],\n              [-100.43091854531409, -71.85499277764532],\n              [-98.98154964882391, -71.9333342489998],\n              [-97.88474321164506, -72.07053517673472],\n              [-96.78793677446619, -71.95297129327072],\n              [-96.20034990109144, -72.52120534275215],\n              [-96.98376461463623, -72.44286387139768],\n              [-98.19808325884682, -72.48203460707492],\n              [-99.43201310911218, -72.44286387139768],\n              [-100.78345516640925, -72.50161997491354],\n              [-101.80186845580137, -72.30566294366275],\n              [-102.33072506387639, -71.89416432076682]\n            ]\n          ],\n          [\n            [\n              [-122.62173458544193, -73.65777760202387],\n              [-122.6217353928862, -73.65777679457962],\n              [-122.40624467022907, -73.32461883559391],\n              [-121.21151139385711, -73.50099049900608],\n              [-119.91885127829204, -73.65772511814733],\n              [-118.72414303269196, -73.48135345473517],\n              [-119.29211870001194, -73.8340967815595],\n              [-120.23221716370998, -74.08880991632614],\n              [-121.62282995668428, -74.01046844497165],\n              [-122.62173458544193, -73.65777760202387]\n            ]\n          ],\n          [\n            [\n              [-127.28312964568192, -73.46176889434079],\n              [-127.28313045312619, -73.46176808689654],\n              [-126.55847184309725, -73.24622568780714],\n              [-125.55956640689534, -73.48135345473517],\n              [-124.03188187726683, -73.87326751723673],\n              [-124.61946875064157, -73.8340967815595],\n              [-125.91218054263894, -73.7361182659341],\n              [-127.28312964568192, -73.46176889434079]\n            ]\n          ],\n          [\n            [\n              [-163.7128956777287, -78.59566741324154],\n              [-163.7128956777287, -78.59566660579729],\n              [-163.1058009511638, -78.22333791113434],\n              [-161.24511349184644, -78.38017588314018],\n              [-160.24620805564453, -78.69364512142268],\n              [-159.48240454815448, -79.04633757925897],\n              [-159.20818356019765, -79.49705942170868],\n              [-161.12760128481472, -79.63420867301133],\n              [-162.43984676821842, -79.28146534618699],\n              [-163.027407803377, -78.92877369579496],\n              [-163.06660437727038, -78.8699659158468],\n              [-163.7128956777287, -78.59566741324154]\n            ]\n          ],\n          [\n            [\n              [180, -84.71338],\n              [180, -90],\n              [-180, -90],\n              [-180, -84.71338],\n              [-179.94249935617898, -84.72144337355252],\n              [-179.05867733469117, -84.13941171664914],\n              [-177.25677181710577, -84.45293263136392],\n              [-177.1408066732658, -84.41794122714828],\n              [-176.08467281807765, -84.09925912875838],\n              [-175.94723461362773, -84.11044871021659],\n              [-175.82988216866258, -84.11791432081571],\n              [-174.38250281481567, -84.53432301222352],\n              [-173.11655941474544, -84.11791432081571],\n              [-172.88910559801278, -84.06101856886238],\n              [-169.9512229075714, -83.88464690545015],\n              [-168.9999889801587, -84.11791432081571],\n              [-168.5301985341933, -84.23739023227444],\n              [-167.02209937240337, -84.57049651482794],\n              [-164.1821435211551, -84.82520964959463],\n              [-161.9297745432814, -85.13873056430941],\n              [-158.07137956442492, -85.37391000766968],\n              [-155.19225297749927, -85.09955982863215],\n              [-150.942098965438, -85.29551685988292],\n              [-148.53307288307155, -85.60903777459771],\n              [-145.88891822633295, -85.31510222772158],\n              [-143.10771847860048, -85.04075204868394],\n              [-142.89227943237557, -84.57049651482794],\n              [-146.82906836646328, -84.53127410271838],\n              [-150.06073157448392, -84.29614633579035],\n              [-150.9029282297608, -83.90423227328881],\n              [-153.58620113830017, -83.68868987419938],\n              [-153.4099069895364, -83.23801970818204],\n              [-153.03775916238646, -82.82652027784184],\n              [-152.66563717345272, -82.45419158317884],\n              [-152.86151669005503, -82.04269215283858],\n              [-154.52629879455392, -81.76839365023335],\n              [-155.29017981669236, -81.41565032340901],\n              [-156.83744971415953, -81.10212940869428],\n              [-154.4087865875222, -81.16093718864244],\n              [-152.0976615061328, -81.00415089306881],\n              [-150.6482926096426, -81.33730885205455],\n              [-148.86599829811203, -81.0433733051783],\n              [-147.22074988501947, -80.67104461051548],\n              [-146.41774899619182, -80.33793832796204],\n              [-146.77028642473124, -79.92643889762189],\n              [-148.06294654029634, -79.65208871858425],\n              [-149.53190080462508, -79.35820484814042],\n              [-151.58841610411247, -79.29939706819226],\n              [-153.39032162169778, -79.16224781688965],\n              [-155.32937639058574, -79.06426930126423],\n              [-155.97566769104412, -78.69193979915707],\n              [-157.26830196839302, -78.37841888444223],\n              [-158.05176835837008, -78.02567555761794],\n              [-158.365134243788, -76.889207458655],\n              [-157.8754742096064, -76.98723765071264],\n              [-156.974573127246, -77.30075856542754],\n              [-155.32937639058574, -77.20272837336978],\n              [-153.74283240457677, -77.06557912206722],\n              [-152.92024695535474, -77.49666392024602],\n              [-151.33378048399427, -77.39873708105284],\n              [-150.00194963275192, -77.18314300553124],\n              [-148.7484860910803, -76.90884450292594],\n              [-147.61248308000805, -76.57573822037256],\n              [-146.10440894899006, -76.47775970474709],\n              [-146.14352800823497, -76.1054310100842],\n              [-146.4960912749905, -75.7331539918535],\n              [-146.20230994996697, -75.38041066502922],\n              [-144.9096239961858, -75.20403900161699],\n              [-144.32203712281103, -75.53719696060273],\n              [-142.79435259318257, -75.34123992935196],\n              [-141.63876421427165, -75.08647511815298],\n              [-140.2090065238362, -75.06688975031443],\n              [-138.85759030475532, -74.96891123468896],\n              [-137.5061999238905, -74.73378346776099],\n              [-136.42890133990187, -74.51824106867161],\n              [-135.21458269569132, -74.30269866958218],\n              [-134.43119382036258, -74.36145477309799],\n              [-133.7456542695786, -74.43984792088486],\n              [-132.25716792873203, -74.30269866958218],\n              [-130.92531123927358, -74.47901865656195],\n              [-129.55428381413782, -74.45943328872346],\n              [-128.2420383307342, -74.32228403742073],\n              [-126.89062211165322, -74.4202625530462],\n              [-125.40208247948584, -74.51824106867161],\n              [-124.01149552472765, -74.47901865656195],\n              [-122.56215246645365, -74.49860402440066],\n              [-121.07361283428622, -74.51824106867161],\n              [-119.70255957093428, -74.47901865656195],\n              [-118.68414547409799, -74.18508310968588],\n              [-117.46980099167126, -74.02834849054466],\n              [-116.21631161178345, -74.24389088963397],\n              [-115.02155249719539, -74.06751922622186],\n              [-113.9443314278551, -73.71482757582987],\n              [-113.29798845096451, -74.02834849054466],\n              [-112.94545182986934, -74.38104014093665],\n              [-112.29908301476263, -74.71419809992238],\n              [-111.26105851931567, -74.4202625530462],\n              [-110.06632524294378, -74.79253957127685],\n              [-108.71490902386279, -74.91010345474086],\n              [-107.55934648316816, -75.18445363377845],\n              [-106.14914832235507, -75.12569753026253],\n              [-104.87607357462872, -74.94932586685042],\n              [-103.36794857462269, -74.98849660252768],\n              [-102.01650651732564, -75.12569753026253],\n              [-100.64553076862228, -75.30201751724246],\n              [-100.1166999987633, -74.87093271906349],\n              [-100.763042975654, -74.53782643651022],\n              [-101.25270300983556, -74.18508310968588],\n              [-102.54533728718457, -74.10674163833141],\n              [-103.11331295450452, -73.73441294366842],\n              [-103.32875200072931, -73.36208424900553],\n              [-103.68128862182442, -72.61753021254418],\n              [-102.9174851143344, -72.75467946384686],\n              [-101.60523963093078, -72.81343556736266],\n              [-100.31252783893342, -72.75467946384686],\n              [-99.13737993040007, -72.91141408298807],\n              [-98.11888912635953, -73.2053496298642],\n              [-97.68803687212608, -73.5580412802563],\n              [-96.33659481482897, -73.6168490602044],\n              [-95.0439605374799, -73.47969980890184],\n              [-93.67290727412814, -73.28374277765096],\n              [-92.43900326207898, -73.16617889418706],\n              [-91.42056413447074, -73.40130666111509],\n              [-90.08873328322846, -73.32291351332816],\n              [-89.22695126011297, -72.55872243259591],\n              [-88.42395117872957, -73.00939259861343],\n              [-87.26833696160259, -73.18576426202566],\n              [-86.01482174349849, -73.08778574640019],\n              [-85.19223629427654, -73.47969980890184],\n              [-83.87999081087281, -73.51887054457893],\n              [-82.66564632844609, -73.63643442804306],\n              [-81.4709130520742, -73.85197682713243],\n              [-80.68744666209705, -73.47969980890184],\n              [-80.29579098175702, -73.12695648207739],\n              [-79.29688554555503, -73.51887054457893],\n              [-77.92585812041932, -73.42089202895363],\n              [-76.90736731637878, -73.63643442804306],\n              [-76.2218794420271, -73.96954071059645],\n              [-74.89004859078483, -73.87161387140338],\n              [-73.85202409533798, -73.65601979588166],\n              [-72.83353329129744, -73.40130666111509],\n              [-71.61921464708689, -73.26415740981241],\n              [-70.20904232448999, -73.1465418499161],\n              [-68.93591590033128, -73.00939259861343],\n              [-67.95662167018412, -72.79385019952406],\n              [-67.36906063502556, -72.48032928480927],\n              [-67.13403622096206, -72.04924448663041],\n              [-67.25154842799373, -71.63774505629027],\n              [-67.56494015162792, -71.24583099378873],\n              [-67.91747677272303, -70.85391693128707],\n              [-68.23084265814094, -70.46205454521782],\n              [-68.48545244004305, -70.10931121839354],\n              [-68.54420854355897, -69.717397155892],\n              [-68.44628170436579, -69.3255347698227],\n              [-67.97623287623895, -68.95320607515976],\n              [-67.58449968125035, -68.5417066448195],\n              [-67.42784257675754, -68.14984425875025],\n              [-67.62367041692767, -67.7187594605715],\n              [-67.74118262395939, -67.3268453980699],\n              [-67.25154842799373, -66.87617523205245],\n              [-66.7031839667286, -66.5822396851762],\n              [-66.05681515162189, -66.20996266694567],\n              [-65.37132727727015, -65.89639007579859],\n              [-64.56827551945446, -65.6025062053547],\n              [-64.17654232446586, -65.1714230220644],\n              [-63.62815202498456, -64.8970728430267],\n              [-63.00139441593262, -64.6423080318279],\n              [-62.041685553624006, -64.58355192831198],\n              [-61.41492794457207, -64.27003101359719],\n              [-60.70985470238173, -64.07407398234642],\n              [-59.887269253159616, -63.956510098882404],\n              [-59.16258480491456, -63.701745287683536],\n              [-58.59455746116231, -63.38822437296864],\n              [-57.811142747617566, -63.27066048950462],\n              [-57.223581712458895, -63.52542530070366],\n              [-57.5957295396089, -63.85853158325705],\n              [-58.61414282900097, -64.15246713013318],\n              [-59.04507259788289, -64.3680095292226],\n              [-59.78934241396661, -64.2112232336491],\n              [-60.61192786318867, -64.3092017492744],\n              [-61.29741573754035, -64.54432951620254],\n              [-62.02210018578546, -64.7990943274014],\n              [-62.51176021996696, -65.09302987427748],\n              [-62.6488577948374, -65.48494232189068],\n              [-62.59012752953771, -65.85721934012133],\n              [-62.12007870141076, -66.19032562267466],\n              [-62.80556657576244, -66.42550506603499],\n              [-63.7456900702324, -66.50384653738956],\n              [-64.29410620792999, -66.83700449637524],\n              [-64.88169308130466, -67.15047373465768],\n              [-65.50842485214054, -67.58161020926889],\n              [-65.66508195663334, -67.95388722749948],\n              [-65.31254533553812, -68.36533498140739],\n              [-64.7837145656793, -68.67890757255452],\n              [-63.961103278241126, -68.9139836630502],\n              [-63.1972997707511, -69.22755625419728],\n              [-62.78595536970778, -69.61941864026653],\n              [-62.570516323482934, -69.99174733492953],\n              [-62.27673580590357, -70.38366139743107],\n              [-61.80666113956062, -70.71676767998451],\n              [-61.51290646019743, -71.0890446982151],\n              [-61.37580888532716, -72.01007375095315],\n              [-61.08197669131556, -72.38235076918386],\n              [-61.003661058177215, -72.7742648316854],\n              [-60.69026933454313, -73.16617889418706],\n              [-60.827366909413456, -73.69524220799121],\n              [-61.37580888532716, -74.10674163833141],\n              [-61.96336992048572, -74.43984792088486],\n              [-63.29520077172799, -74.57699717218742],\n              [-63.7456900702324, -74.92974049901176],\n              [-64.35283647322962, -75.2628467815652],\n              [-65.86098731145182, -75.63512379979574],\n              [-67.19281816269415, -75.79191009536942],\n              [-68.44628170436579, -76.00745249445879],\n              [-69.7977237616629, -76.22299489354822],\n              [-70.6007238430463, -76.63449432388842],\n              [-72.2067756822454, -76.67366505956568],\n              [-73.9695363023697, -76.63449432388842],\n              [-75.55597693551408, -76.71288747167517],\n              [-77.24037024606764, -76.71288747167517],\n              [-76.92697852243361, -77.10480153417677],\n              [-75.39929399280499, -77.28106984472436],\n              [-74.28287634957144, -77.55542002376177],\n              [-73.6561187405195, -77.90811167415393],\n              [-74.7725363837531, -78.22163258886872],\n              [-76.49610042998398, -78.12365407324324],\n              [-77.92585812041932, -78.37841888444223],\n              [-77.98466590036753, -78.78991831478237],\n              [-78.0237849596125, -79.18183318472825],\n              [-76.8486370510791, -79.51493946728169],\n              [-76.63322384307043, -79.88721648551223],\n              [-75.36009741891172, -80.25954518017522],\n              [-73.24485185412459, -80.41633147574879],\n              [-71.44294633653925, -80.69062997835402],\n              [-70.01316280788774, -81.00415089306881],\n              [-68.19164608424757, -81.3176718077836],\n              [-65.70427853052672, -81.47445810335722],\n              [-63.25603003605073, -81.74875660596251],\n              [-61.55202551944234, -82.04269215283858],\n              [-59.69141557477349, -82.37585011182438],\n              [-58.71212134462627, -82.84610564568038],\n              [-58.22248714866089, -83.21843434034338],\n              [-57.008116828017876, -82.86569101351904],\n              [-55.362894253141576, -82.5717554666428],\n              [-53.61977067728827, -82.25823455192807],\n              [-51.54364417174605, -82.00352141716132],\n              [-49.76134986021549, -81.7291712381238],\n              [-47.27393063006224, -81.70958587028525],\n              [-44.82570797380254, -81.84673512158781],\n              [-42.80836340999241, -82.08191456494814],\n              [-42.162020433101816, -81.65082976676933],\n              [-40.771433478343624, -81.3568942198932],\n              [-38.24481767429711, -81.33730885205455],\n              [-36.26666968438025, -81.12171477653294],\n              [-34.38639685722438, -80.90617237744351],\n              [-32.31029618989834, -80.76902312614078],\n              [-30.097097947702025, -80.59265146272867],\n              [-28.549802212018733, -80.33793832796204],\n              [-29.25490129242513, -79.9851950011377],\n              [-29.685805223090995, -79.63250335074571],\n              [-29.685805223090995, -79.260226332515],\n              [-31.62480831554666, -79.29939706819226],\n              [-33.68132361503399, -79.45613168733348],\n              [-35.63991207532831, -79.45613168733348],\n              [-35.91410722506902, -79.08385466910289],\n              [-35.77700965019869, -78.33924814876502],\n              [-35.32654618991046, -78.12365407324324],\n              [-33.89676266125889, -77.88852630631527],\n              [-32.21236935070527, -77.65345021581953],\n              [-30.99805070649461, -77.35951466894335],\n              [-29.783732062284116, -77.06557912206722],\n              [-28.882779303491418, -76.67366505956568],\n              [-27.511751878355653, -76.49734507258574],\n              [-26.16033565927478, -76.36014414485078],\n              [-25.474821946706925, -76.28180267349632],\n              [-23.927552049239807, -76.24258026138676],\n              [-22.458597784910978, -76.1054310100842],\n              [-21.224693772861826, -75.90947397883343],\n              [-20.010375128651106, -75.6743462119054],\n              [-18.913542853256217, -75.43921844497731],\n              [-17.5229817367142, -75.12569753026253],\n              [-16.641588507544043, -74.79253957127685],\n              [-15.70149085129026, -74.49860402440066],\n              [-15.407710333710895, -74.10674163833141],\n              [-16.4653201969964, -73.87161387140338],\n              [-16.11278357590129, -73.46011444106318],\n              [-15.44685523117198, -73.1465418499161],\n              [-14.408804897509015, -72.95058481866533],\n              [-13.311972622114013, -72.7154570517373],\n              [-12.293507656289592, -72.40193613702252],\n              [-11.510067104528616, -72.01007375095315],\n              [-11.020432908563066, -71.53976654066486],\n              [-10.295774298534184, -71.26541636162733],\n              [-9.101015183946117, -71.32422414157548],\n              [-8.611380987980624, -71.65733042412887],\n              [-7.416621873392444, -71.69650115980608],\n              [-7.377451137715298, -71.32422414157548],\n              [-6.868231573911146, -70.93231007907394],\n              [-5.790984666354802, -71.0302885946993],\n              [-5.536374884452698, -71.4026172893623],\n              [-4.341667446296924, -71.4613733928781],\n              [-3.048981492515622, -71.28505340589817],\n              [-1.795492112627812, -71.16743784600186],\n              [-0.65948910155555, -71.22624562595007],\n              [-0.228636847322093, -71.63774505629027],\n              [0.868195428072909, -71.30463877373683],\n              [1.886686232113505, -71.12826711032471],\n              [3.022637566753417, -70.9911178590221],\n              [4.139055209987021, -70.85391693128707],\n              [5.157546014027616, -70.61878916435904],\n              [6.273911980828871, -70.46205454521782],\n              [7.135719842160597, -70.24651214612834],\n              [7.742866245157813, -69.89376881930406],\n              [8.487110223025297, -70.14853363050304],\n              [9.525134718472202, -70.01133270276819],\n              [10.249845004933434, -70.48163991305648],\n              [10.817820672253333, -70.83433156344853],\n              [11.953823683325595, -70.63837453219776],\n              [12.404287143613942, -70.24651214612834],\n              [13.422777947654367, -69.97216196709093],\n              [14.734997592841978, -70.03091807060673],\n              [15.126756626046586, -70.40324676526973],\n              [15.94934207526859, -70.03091807060673],\n              [17.02658898282516, -69.91335418714277],\n              [18.201711053142276, -69.87418345146551],\n              [19.259372592860018, -69.89376881930406],\n              [20.375738559661443, -70.01133270276819],\n              [21.452985467217786, -70.07014048271628],\n              [21.923034295344735, -70.40324676526973],\n              [22.56940311045139, -70.69718231214586],\n              [23.666183709414213, -70.52081064873374],\n              [24.841357456163564, -70.48163991305648],\n              [25.977308790803647, -70.48163991305648],\n              [27.09372643403725, -70.46205454521782],\n              [28.09258019380684, -70.32485361748297],\n              [29.15024173352458, -70.20728973401896],\n              [30.031583286262503, -69.93293955498132],\n              [30.97173261894858, -69.7566195680015],\n              [31.990171746556825, -69.65864105237603],\n              [32.75405276869532, -69.3842908733385],\n              [33.30244306817667, -68.83564219169574],\n              [33.87041873549657, -68.50258758557459],\n              [34.908494907375825, -68.65927052828351],\n              [35.300202264148254, -69.01201385510791],\n              [36.16201012547975, -69.24714162203594],\n              [37.2000346209266, -69.16874847424907],\n              [37.905107863116825, -69.52144012464123],\n              [38.649403517416886, -69.77620493584016],\n              [39.66789432145737, -69.54107716891207],\n              [40.02043094255248, -69.10994069430097],\n              [40.92135786312906, -68.93362070732115],\n              [41.959434035008144, -68.60051442476771],\n              [42.938702426939074, -68.46331349703274],\n              [44.11387617368865, -68.26740814221426],\n              [44.897290887233396, -68.05186574312489],\n              [45.719928012887806, -67.8167379761968],\n              [46.50334272643261, -67.60119557710749],\n              [47.443440382686276, -67.7187594605715],\n              [48.34441897969509, -67.36606781017946],\n              [48.99073611836957, -67.09171763114188],\n              [49.930885451055644, -67.11130299898048],\n              [50.753470900277705, -66.87617523205245],\n              [50.94932457866389, -66.52348358166046],\n              [51.79154707215696, -66.24913340262287],\n              [52.61413252137896, -66.0531763713721],\n              [53.61303795758079, -65.89639007579859],\n              [54.533550245996025, -65.81804860444396],\n              [55.41494347516618, -65.87680470795993],\n              [56.35504113141985, -65.97478322358535],\n              [57.15809288923566, -66.24913340262287],\n              [57.25596805199649, -66.68021820080168],\n              [58.13736128116665, -67.01332448335512],\n              [58.744507684163864, -67.28767466239265],\n              [59.93931847518422, -67.40523854585672],\n              [60.60522098169736, -67.67958872489424],\n              [61.42780643091936, -67.95388722749948],\n              [62.38748945501169, -68.01269500744758],\n              [63.19048953639515, -67.8167379761968],\n              [64.052349074159, -67.40523854585672],\n              [64.9924467304129, -67.62072926851374],\n              [65.97171512234388, -67.73834482840999],\n              [66.91186445502973, -67.85590871187412],\n              [67.89113284696089, -67.93430185966076],\n              [68.89003828316288, -67.93430185966076],\n              [69.71262373238477, -68.97279144299841],\n              [69.67345299670745, -69.22755625419728],\n              [69.55594078967584, -69.67822642021474],\n              [68.59625776558352, -69.93293955498132],\n              [67.81273969917413, -70.30526824964431],\n              [67.94988895047663, -70.69718231214586],\n              [69.06630659371024, -70.67754526787496],\n              [68.92915734240779, -71.06945933037656],\n              [68.41998945503593, -71.4417880250395],\n              [67.94988895047663, -71.85328745537964],\n              [68.71376997261513, -72.16680837009437],\n              [69.86930667509387, -72.26478688571984],\n              [71.02489505400456, -72.08841522230773],\n              [71.57328535348603, -71.69650115980608],\n              [71.90628828317489, -71.32422414157548],\n              [72.45462690622401, -71.01070322686058],\n              [73.08141035349206, -70.71676767998451],\n              [73.33602013539416, -70.36402435316018],\n              [73.86487674346921, -69.87418345146551],\n              [74.49155683787268, -69.77620493584016],\n              [75.62755984894494, -69.73703420016284],\n              [76.62646528514676, -69.61941864026653],\n              [77.64490441275518, -69.46268402112526],\n              [78.13453860872056, -69.07076995862371],\n              [78.42837080273216, -68.69844126396072],\n              [79.1138586770839, -68.32621592216248],\n              [80.09312706901488, -68.07150278739579],\n              [80.93534956250772, -67.87554575614502],\n              [81.48379153842143, -67.54238779715922],\n              [82.05176720574138, -67.36606781017946],\n              [82.77642581577044, -67.20928151460589],\n              [83.77533125197237, -67.30726003023125],\n              [84.6762064961166, -67.20928151460589],\n              [85.65552656447994, -67.09171763114188],\n              [86.75235883987477, -67.15047373465768],\n              [87.47701744990383, -66.87617523205245],\n              [87.98628869014021, -66.20991099051338],\n              [88.35841067907398, -66.4842611695509],\n              [88.82840783076853, -66.95456837983926],\n              [89.6706303242616, -67.15047373465768],\n              [90.63036502478627, -67.22886688244449],\n              [91.59009972531084, -67.11130299898048],\n              [92.60853885291903, -67.18969614676723],\n              [93.54863650917292, -67.20928151460589],\n              [94.17541995644098, -67.11130299898048],\n              [95.01759077350164, -67.17011077892869],\n              [95.78147179564019, -67.385653178018],\n              [96.68239871621677, -67.24850392671544],\n              [97.75964562377311, -67.24850392671544],\n              [98.68020958862053, -67.11130299898048],\n              [99.71818240763503, -67.24850392671544],\n              [100.38418826701275, -66.9153459677297],\n              [100.8933561543846, -66.5822396851762],\n              [101.57889570516852, -66.30788950613868],\n              [102.83241092327262, -65.56328379324515],\n              [103.47867638551475, -65.70048472098],\n              [104.24255740765307, -65.97478322358535],\n              [104.9084599141662, -66.32752655040969],\n              [106.18156050010873, -66.93493133556836],\n              [107.16088056847207, -66.95456837983926],\n              [108.08139285688713, -66.95456837983926],\n              [109.15863976444365, -66.83700449637524],\n              [110.23583499556781, -66.69980356864033],\n              [111.05847212122205, -66.42550506603499],\n              [111.74395999557385, -66.13156951915892],\n              [112.86037763880745, -66.09234710704936],\n              [113.60467329310734, -65.87680470795993],\n              [114.38808800665197, -66.0727617392107],\n              [114.89730757045618, -66.38628265392543],\n              [115.60238081264652, -66.69980356864033],\n              [116.69916141160934, -66.66063283296302],\n              [117.38470096239314, -66.9153459677297],\n              [118.57946007698126, -67.17011077892869],\n              [119.83292361865301, -67.26808929455399],\n              [120.8709997905321, -67.18969614676723],\n              [121.65441450407707, -66.87617523205245],\n              [122.32036868702232, -66.56265431733766],\n              [123.2212956075989, -66.4842611695509],\n              [124.1222742046076, -66.62146209728587],\n              [125.16024702362222, -66.71938893647894],\n              [126.10039635630835, -66.56265431733766],\n              [127.00142662974929, -66.56265431733766],\n              [127.88276818248721, -66.66063283296302],\n              [128.80328047090234, -66.75861134858849],\n              [129.70425906791115, -66.5822396851762],\n              [130.78145429903543, -66.42550506603499],\n              [131.79994510307586, -66.38628265392543],\n              [132.9358964377161, -66.38628265392543],\n              [133.85646040256336, -66.28830413830013],\n              [134.75738732313982, -66.20996266694567],\n              [135.0315824728807, -65.72007008881866],\n              [135.0707532085578, -65.30857065847846],\n              [135.6974849793935, -65.58286916108369],\n              [135.87380496637343, -66.03359100353345],\n              [136.2067045431977, -66.4450904338737],\n              [136.61804894424108, -66.77819671642698],\n              [137.46027143773392, -66.95456837983926],\n              [138.59622277237406, -66.8957605998911],\n              [139.90844241756145, -66.87617523205245],\n              [140.80942101457026, -66.81736745210435],\n              [142.1216923361901, -66.81736745210435],\n              [143.06184166887613, -66.79778208426569],\n              [144.37406131406362, -66.83700449637524],\n              [145.490427280865, -66.9153459677297],\n              [146.1955521994878, -67.22886688244449],\n              [145.99969852110144, -67.60119557710749],\n              [146.64606733620815, -67.89513112398367],\n              [147.7232625673323, -68.1302588909117],\n              [148.83962853413368, -68.38502370211057],\n              [150.13231448791487, -68.56129201265821],\n              [151.48370486877957, -68.71812998466402],\n              [152.50224734925246, -68.87481292737294],\n              [153.63819868389248, -68.89450164807613],\n              [154.2845674989992, -68.56129201265821],\n              [155.16585737530477, -68.83564219169574],\n              [155.92979007387544, -69.14921478284282],\n              [156.81113162661336, -69.3842908733385],\n              [158.02552778547238, -69.48226938896397],\n              [159.1810128115187, -69.59983327242799],\n              [159.6706986839165, -69.99174733492953],\n              [160.8066500185564, -70.2268751018575],\n              [161.57047936426272, -70.57961842868184],\n              [162.68689700749633, -70.73635304782317],\n              [163.8424337099749, -70.71676767998451],\n              [164.91968061753118, -70.77552378350032],\n              [166.11443973211942, -70.75593841566177],\n              [167.30909549384296, -70.83433156344853],\n              [168.42561648994115, -70.97148081475109],\n              [169.46358930895587, -71.20666025811136],\n              [170.50166548083496, -71.4026172893623],\n              [171.20679039945753, -71.69650115980608],\n              [171.0892265159937, -72.08841522230773],\n              [170.5604215843507, -72.44115854913207],\n              [170.10995812406236, -72.89182871514942],\n              [169.75736982653507, -73.24452036554152],\n              [169.2873209984083, -73.65601979588166],\n              [167.97510135322068, -73.81280609145517],\n              [167.38748864162972, -74.16549774184722],\n              [166.09480268784841, -74.38104014093665],\n              [165.64439090399242, -74.77295420343819],\n              [164.9588513532085, -75.14528289810119],\n              [164.23419274317962, -75.45880381281597],\n              [163.8227966657039, -75.87030324315617],\n              [163.56823856023425, -76.24258026138676],\n              [163.47026004460895, -76.69330210383652],\n              [163.48989708887973, -77.06557912206722],\n              [164.05787275619969, -77.45744150813647],\n              [164.27336347885694, -77.82977020279935],\n              [164.74346398341606, -78.18251352962375],\n              [166.60412560451732, -78.31961110449402],\n              [166.99578128485734, -78.75074757910522],\n              [165.19387576727195, -78.90748300569072],\n              [163.66621707585955, -79.12302540477998],\n              [161.7663847190811, -79.16224781688965],\n              [160.92416222558825, -79.73048186637101],\n              [160.74789391504066, -80.20073740022713],\n              [160.31696414615863, -80.57306609489001],\n              [159.78821089094833, -80.945394789553],\n              [161.12001590397438, -81.27850107210645],\n              [161.62928714421082, -81.6900005024466],\n              [162.49099165267796, -82.0622775206773],\n              [163.70533613510474, -82.39543547966286],\n              [165.09594892807877, -82.70895639437782],\n              [166.60412560451732, -83.02247730909255],\n              [168.89566531806793, -83.3359982238074],\n              [169.40478152900755, -83.82589080193435],\n              [172.28393395414935, -84.04143320102366],\n              [172.47704878162415, -84.11791432081571],\n              [173.22408328683537, -84.41371021925437],\n              [175.9856718285131, -84.15899708448768],\n              [178.27721154206392, -84.47251799920247],\n              [180, -84.71338]\n            ]\n          ]\n        ]\n      }\n    },\n    {\n      \"type\": \"Feature\",\n      \"properties\": {\n        \"featurecla\": \"Admin-0 country\",\n        \"scalerank\": 3,\n        \"labelrank\": 6,\n        \"sovereignt\": \"France\",\n        \"sov_a3\": \"FR1\",\n        \"adm0_dif\": 1,\n        \"level\": 2,\n        \"type\": \"Dependency\",\n        \"tlc\": \"1\",\n        \"admin\": \"French Southern and Antarctic Lands\",\n        \"adm0_a3\": \"ATF\",\n        \"geou_dif\": 0,\n        \"geounit\": \"French Southern and Antarctic Lands\",\n        \"gu_a3\": \"ATF\",\n        \"su_dif\": 0,\n        \"subunit\": \"French Southern and Antarctic Lands\",\n        \"su_a3\": \"ATF\",\n        \"brk_diff\": 0,\n        \"name\": \"Fr. S. Antarctic Lands\",\n        \"name_long\": \"French Southern and Antarctic Lands\",\n        \"brk_a3\": \"ATF\",\n        \"brk_name\": \"Fr. S. and Antarctic Lands\",\n        \"brk_group\": null,\n        \"abbrev\": \"Fr. S.A.L.\",\n        \"postal\": \"TF\",\n        \"formal_en\": \"Territory of the French Southern and Antarctic Lands\",\n        \"formal_fr\": null,\n        \"name_ciawf\": null,\n        \"note_adm0\": \"Fr.\",\n        \"note_brk\": null,\n        \"name_sort\": \"French Southern and Antarctic Lands\",\n        \"name_alt\": null,\n        \"mapcolor7\": 7,\n        \"mapcolor8\": 5,\n        \"mapcolor9\": 9,\n        \"mapcolor13\": 11,\n        \"pop_est\": 140,\n        \"pop_rank\": 1,\n        \"pop_year\": 2017,\n        \"gdp_md\": 16,\n        \"gdp_year\": 2016,\n        \"economy\": \"6. Developing region\",\n        \"income_grp\": \"2. High income: nonOECD\",\n        \"fips_10\": \"FS\",\n        \"iso_a2\": \"TF\",\n        \"iso_a2_eh\": \"TF\",\n        \"iso_a3\": \"ATF\",\n        \"iso_a3_eh\": \"ATF\",\n        \"iso_n3\": \"260\",\n        \"iso_n3_eh\": \"260\",\n        \"un_a3\": \"260\",\n        \"wb_a2\": \"-99\",\n        \"wb_a3\": \"-99\",\n        \"woe_id\": 28289406,\n        \"woe_id_eh\": 28289406,\n        \"woe_note\": \"Exact WOE match as country\",\n        \"adm0_iso\": \"ATF\",\n        \"adm0_diff\": null,\n        \"adm0_tlc\": \"ATF\",\n        \"adm0_a3_us\": \"ATF\",\n        \"adm0_a3_fr\": \"ATF\",\n        \"adm0_a3_ru\": \"ATF\",\n        \"adm0_a3_es\": \"ATF\",\n        \"adm0_a3_cn\": \"ATF\",\n        \"adm0_a3_tw\": \"ATF\",\n        \"adm0_a3_in\": \"ATF\",\n        \"adm0_a3_np\": \"ATF\",\n        \"adm0_a3_pk\": \"ATF\",\n        \"adm0_a3_de\": \"ATF\",\n        \"adm0_a3_gb\": \"ATF\",\n        \"adm0_a3_br\": \"ATF\",\n        \"adm0_a3_il\": \"ATF\",\n        \"adm0_a3_ps\": \"ATF\",\n        \"adm0_a3_sa\": \"ATF\",\n        \"adm0_a3_eg\": \"ATF\",\n        \"adm0_a3_ma\": \"ATF\",\n        \"adm0_a3_pt\": \"ATF\",\n        \"adm0_a3_ar\": \"ATF\",\n        \"adm0_a3_jp\": \"ATF\",\n        \"adm0_a3_ko\": \"ATF\",\n        \"adm0_a3_vn\": \"ATF\",\n        \"adm0_a3_tr\": \"ATF\",\n        \"adm0_a3_id\": \"ATF\",\n        \"adm0_a3_pl\": \"ATF\",\n        \"adm0_a3_gr\": \"ATF\",\n        \"adm0_a3_it\": \"ATF\",\n        \"adm0_a3_nl\": \"ATF\",\n        \"adm0_a3_se\": \"ATF\",\n        \"adm0_a3_bd\": \"ATF\",\n        \"adm0_a3_ua\": \"ATF\",\n        \"adm0_a3_un\": -99,\n        \"adm0_a3_wb\": -99,\n        \"continent\": \"Seven seas (open ocean)\",\n        \"region_un\": \"Africa\",\n        \"subregion\": \"Seven seas (open ocean)\",\n        \"region_wb\": \"Sub-Saharan Africa\",\n        \"name_len\": 22,\n        \"long_len\": 35,\n        \"abbrev_len\": 10,\n        \"tiny\": 2,\n        \"homepart\": -99,\n        \"min_zoom\": 0,\n        \"min_label\": 4,\n        \"max_label\": 9,\n        \"label_x\": 69.122136,\n        \"label_y\": -49.303721,\n        \"ne_id\": 1159320631,\n        \"wikidataid\": \"Q129003\",\n        \"name_ar\": \"أراض فرنسية جنوبية وأنتارتيكية\",\n        \"name_bn\": \"ফ্র. এস. অ্যান্ড অ্যান্টার্কটিক ল্যান্ড\",\n        \"name_de\": \"Französische Süd- und Antarktisgebiete\",\n        \"name_en\": \"French Southern and Antarctic Lands\",\n        \"name_es\": \"Tierras Australes y Antárticas Francesas\",\n        \"name_fa\": \"سرزمینهای جنوبی و جنوبگانی فرانسه\",\n        \"name_fr\": \"Terres australes et antarctiques françaises\",\n        \"name_el\": \"Γαλλικά Νότια και Ανταρκτικά Εδάφη\",\n        \"name_he\": \"הארצות הדרומיות והאנטארקטיות של צרפת\",\n        \"name_hi\": \"दक्षिण फ्रांसीसी और अंटार्कटिक लैंड\",\n        \"name_hu\": \"Francia déli és antarktiszi területek\",\n        \"name_id\": \"Daratan Selatan dan Antarktika Perancis\",\n        \"name_it\": \"Terre australi e antartiche francesi\",\n        \"name_ja\": \"フランス領南方・南極地域\",\n        \"name_ko\": \"프랑스령 남방 및 남극\",\n        \"name_nl\": \"Franse Zuidelijke Gebieden\",\n        \"name_pl\": \"Francuskie Terytoria Południowe i Antarktyczne\",\n        \"name_pt\": \"Terras Austrais e Antárticas Francesas\",\n        \"name_ru\": \"Французские Южные и Антарктические территории\",\n        \"name_sv\": \"Franska sydterritorierna\",\n        \"name_tr\": \"Fransız Güney ve Antarktika Toprakları\",\n        \"name_uk\": \"Французькі Південні і Антарктичні території\",\n        \"name_ur\": \"سرزمین جنوبی فرانسیسیہ و انٹارکٹیکا\",\n        \"name_vi\": \"Vùng đất phía Nam và châu Nam Cực thuộc Pháp\",\n        \"name_zh\": \"法属南部和南极领地\",\n        \"name_zht\": \"法屬南部和南極領地\",\n        \"fclass_iso\": \"Admin-0 dependency\",\n        \"tlc_diff\": null,\n        \"fclass_tlc\": \"Admin-0 dependency\",\n        \"fclass_us\": null,\n        \"fclass_fr\": null,\n        \"fclass_ru\": null,\n        \"fclass_es\": null,\n        \"fclass_cn\": null,\n        \"fclass_tw\": null,\n        \"fclass_in\": null,\n        \"fclass_np\": null,\n        \"fclass_pk\": null,\n        \"fclass_de\": null,\n        \"fclass_gb\": null,\n        \"fclass_br\": null,\n        \"fclass_il\": null,\n        \"fclass_ps\": null,\n        \"fclass_sa\": null,\n        \"fclass_eg\": null,\n        \"fclass_ma\": null,\n        \"fclass_pt\": null,\n        \"fclass_ar\": null,\n        \"fclass_jp\": null,\n        \"fclass_ko\": null,\n        \"fclass_vn\": null,\n        \"fclass_tr\": null,\n        \"fclass_id\": null,\n        \"fclass_pl\": null,\n        \"fclass_gr\": null,\n        \"fclass_it\": null,\n        \"fclass_nl\": null,\n        \"fclass_se\": null,\n        \"fclass_bd\": null,\n        \"fclass_ua\": null,\n        \"filename\": \"ATF.geojson\"\n      },\n      \"geometry\": {\n        \"type\": \"Polygon\",\n        \"coordinates\": [\n          [\n            [68.935, -48.625],\n            [69.58, -48.94],\n            [70.525, -49.065],\n            [70.56, -49.255],\n            [70.28, -49.71],\n            [68.745, -49.775],\n            [68.72, -49.2425],\n            [68.8675, -48.83],\n            [68.935, -48.625]\n          ]\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "src/data/pages/projects-db.json",
    "content": "[\n  {\n    \"id\": 0,\n    \"project_name\": \"Vuestic\",\n    \"project_owner\": 13,\n    \"team\": [13, 5, 28, 14, 17, 28, 23, 11, 16, 19, 12, 28, 11],\n    \"status\": \"in progress\",\n    \"creation_date\": \"20 Nov 2023\"\n  },\n  {\n    \"id\": 1,\n    \"project_name\": \"Mood board\",\n    \"project_owner\": 28,\n    \"team\": [28, 10, 12, 28, 14, 27, 5, 4, 8, 23, 19, 18, 24, 11, 18, 12, 28],\n    \"status\": \"important\",\n    \"creation_date\": \"16 Oct 2023\"\n  },\n  {\n    \"id\": 2,\n    \"project_name\": \"Jenkins\",\n    \"project_owner\": 3,\n    \"team\": [3, 21, 7, 19, 4, 4, 7, 24],\n    \"status\": \"important\",\n    \"creation_date\": \"1 Oct 2023\"\n  },\n  {\n    \"id\": 3,\n    \"project_name\": \"Springfield media\",\n    \"project_owner\": 17,\n    \"team\": [17, 25, 21, 9, 18, 12, 15, 0, 7, 2, 7],\n    \"status\": \"important\",\n    \"creation_date\": \"19 Sept 2023\"\n  },\n  {\n    \"id\": 4,\n    \"project_name\": \"Galileo\",\n    \"project_owner\": 7,\n    \"team\": [7, 1, 28, 19, 3],\n    \"status\": \"completed\",\n    \"creation_date\": \"23 Sept 2023\"\n  },\n  {\n    \"id\": 5,\n    \"project_name\": \"Website redesign\",\n    \"project_owner\": 24,\n    \"team\": [24, 19, 1, 8, 9],\n    \"status\": \"completed\",\n    \"creation_date\": \"9 Sept 2023\"\n  },\n  {\n    \"id\": 6,\n    \"project_name\": \"Toolset landing\",\n    \"project_owner\": 15,\n    \"team\": [15, 16, 8, 6, 11, 21, 3, 20],\n    \"status\": \"archived\",\n    \"creation_date\": \"17 Aug 2023\"\n  },\n  {\n    \"id\": 7,\n    \"project_name\": \"Complete product redesign\",\n    \"project_owner\": 25,\n    \"team\": [25, 18, 24, 13, 5, 3, 4, 16, 25, 12, 18, 9, 22],\n    \"status\": \"completed\",\n    \"creation_date\": \"11 Aug 2023\"\n  },\n  {\n    \"id\": 8,\n    \"project_name\": \"Design team project\",\n    \"project_owner\": 17,\n    \"team\": [17, 6, 21, 17, 7, 6, 14, 13, 27, 7, 20],\n    \"status\": \"archived\",\n    \"creation_date\": \"9 Aug 2023\"\n  },\n  {\n    \"id\": 9,\n    \"project_name\": \"Regular logistics\",\n    \"project_owner\": 3,\n    \"team\": [3, 26, 8, 15, 21, 23, 18, 11, 22, 6, 20, 9],\n    \"status\": \"archived\",\n    \"creation_date\": \"2 Aug 2023\"\n  },\n  {\n    \"id\": 10,\n    \"project_name\": \"Aurora Analytics\",\n    \"project_owner\": 12,\n    \"team\": [12, 7, 18, 24, 13, 5],\n    \"status\": \"in progress\",\n    \"creation_date\": \"10 Dec 2023\"\n  },\n  {\n    \"id\": 11,\n    \"project_name\": \"Quantum Leap\",\n    \"project_owner\": 14,\n    \"team\": [14, 17, 3, 21, 11, 20],\n    \"status\": \"planning\",\n    \"creation_date\": \"22 Nov 2023\"\n  },\n  {\n    \"id\": 12,\n    \"project_name\": \"Deep Dive Research\",\n    \"project_owner\": 8,\n    \"team\": [8, 15, 9, 3, 27, 6],\n    \"status\": \"important\",\n    \"creation_date\": \"15 Nov 2023\"\n  },\n  {\n    \"id\": 13,\n    \"project_name\": \"Sky High Architecture\",\n    \"project_owner\": 21,\n    \"team\": [21, 2, 17, 18, 4],\n    \"status\": \"completed\",\n    \"creation_date\": \"1 Nov 2023\"\n  },\n  {\n    \"id\": 14,\n    \"project_name\": \"Tech Horizon\",\n    \"project_owner\": 9,\n    \"team\": [9, 19, 24, 1, 22],\n    \"status\": \"in progress\",\n    \"creation_date\": \"28 Oct 2023\"\n  },\n  {\n    \"id\": 15,\n    \"project_name\": \"Edge of Innovation\",\n    \"project_owner\": 16,\n    \"team\": [16, 11, 5, 14, 23],\n    \"status\": \"planning\",\n    \"creation_date\": \"21 Oct 2023\"\n  },\n  {\n    \"id\": 16,\n    \"project_name\": \"Crypto Ventures\",\n    \"project_owner\": 20,\n    \"team\": [20, 7, 15, 26, 12],\n    \"status\": \"important\",\n    \"creation_date\": \"10 Oct 2023\"\n  },\n  {\n    \"id\": 17,\n    \"project_name\": \"Blockchain Basics\",\n    \"project_owner\": 4,\n    \"team\": [4, 8, 3, 22, 27],\n    \"status\": \"archived\",\n    \"creation_date\": \"5 Oct 2023\"\n  },\n  {\n    \"id\": 18,\n    \"project_name\": \"Virtual Reality Exploration\",\n    \"project_owner\": 26,\n    \"team\": [26, 2, 14, 20, 9],\n    \"status\": \"in progress\",\n    \"creation_date\": \"29 Sept 2023\"\n  },\n  {\n    \"id\": 19,\n    \"project_name\": \"AI in Daily Life\",\n    \"project_owner\": 2,\n    \"team\": [2, 13, 24, 5, 11],\n    \"status\": \"completed\",\n    \"creation_date\": \"22 Sept 2023\"\n  }\n]\n"
  },
  {
    "path": "src/data/pages/projects.ts",
    "content": "import api from '../../services/api'\nimport { Project } from '../../pages/projects/types'\n\nexport type Pagination = {\n  page: number\n  perPage: number\n  total: number\n}\n\nexport type Sorting = {\n  sortBy: 'project_owner' | 'team' | 'created_at'\n  sortingOrder: 'asc' | 'desc' | null\n}\n\nexport const getProjects = async (options: Partial<Sorting> & Pagination) => {\n  const projects: Project[] = await fetch(api.allProjects()).then((r) => r.json())\n\n  return {\n    data: projects,\n    pagination: {\n      page: options.page,\n      perPage: options.perPage,\n      total: projects.length,\n    },\n  }\n}\n\nexport const addProject = async (project: Omit<Project, 'id' | 'created_at'>) => {\n  const headers = new Headers()\n  headers.append('Content-Type', 'application/json')\n\n  return fetch(api.allProjects(), { method: 'POST', body: JSON.stringify(project), headers }).then((r) => r.json())\n}\n\nexport const updateProject = async (project: Omit<Project, 'created_at'>) => {\n  const headers = new Headers()\n  headers.append('Content-Type', 'application/json')\n  return fetch(api.project(project.id), { method: 'PUT', body: JSON.stringify(project), headers }).then((r) => r.json())\n}\n\nexport const removeProject = async (project: Project) => {\n  return fetch(api.project(project.id), { method: 'DELETE' })\n}\n"
  },
  {
    "path": "src/data/pages/users-db.json",
    "content": "[\n  {\n    \"id\": 1,\n    \"fullname\": \"Patrik Radkow\",\n    \"email\": \"magicpan@example.gg\",\n    \"username\": \"magicpan\",\n    \"role\": \"user\",\n    \"avatar\": \"\",\n    \"active\": true,\n    \"notes\": \"Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, voluptatum.\"\n  },\n  {\n    \"id\": 2,\n    \"fullname\": \"Martin Hoff\",\n    \"email\": \"niceadmin@mail.com\",\n    \"username\": \"admin\",\n    \"role\": \"admin\",\n    \"avatar\": \"😍\",\n    \"active\": true,\n    \"notes\": \"Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, voluptatum.\"\n  },\n  {\n    \"id\": 3,\n    \"fullname\": \"Liz Macintosh\",\n    \"email\": \"ebrown@gmail.com\",\n    \"username\": \"ebrown\",\n    \"role\": \"user\",\n    \"avatar\": \"https://randomuser.me/api/portraits/men/1.jpg\",\n    \"active\": true,\n    \"notes\": \"Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, voluptatum.\"\n  },\n  {\n    \"id\": 4,\n    \"fullname\": \"M2\",\n    \"email\": \"mrm@gmail.com\",\n    \"username\": \"mrm\",\n    \"role\": \"owner\",\n    \"avatar\": \"\",\n    \"active\": true,\n    \"notes\": \"Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, voluptatum.\"\n  },\n  {\n    \"id\": 5,\n    \"fullname\": \"Kevin Smith\",\n    \"email\": \"kevin@gmail.com\",\n    \"username\": \"kevin13\",\n    \"role\": \"user\",\n    \"avatar\": \"https://randomuser.me/api/portraits/men/2.jpg\",\n    \"active\": true,\n    \"notes\": \"Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, voluptatum.\"\n  },\n  {\n    \"id\": 6,\n    \"fullname\": \"Martin Hoff\",\n    \"email\": \"martin@gmail.com\",\n    \"username\": \"martin3\",\n    \"role\": \"user\",\n    \"avatar\": \"https://randomuser.me/api/portraits/men/3.jpg\",\n    \"active\": true,\n    \"notes\": \"Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, voluptatum.\"\n  },\n  {\n    \"id\": 7,\n    \"fullname\": \"John Doe\",\n    \"email\": \"john@mail.com\",\n    \"username\": \"john\",\n    \"role\": \"user\",\n    \"avatar\": \"\",\n    \"active\": true,\n    \"notes\": \"\"\n  },\n  {\n    \"id\": 8,\n    \"fullname\": \"Maksim Nedo\",\n    \"email\": \"maksim@epic.com\",\n    \"username\": \"maksim\",\n    \"role\": \"admin\",\n    \"avatar\": \"https://avatars.githubusercontent.com/u/23530004?v=4\",\n    \"active\": true,\n    \"notes\": \"Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, voluptatum.\"\n  },\n  {\n    \"id\": 9,\n    \"fullname\": \"Dmitry Kuzmenko\",\n    \"email\": \"dd@pp.com\",\n    \"username\": \"dd\",\n    \"role\": \"user\",\n    \"avatar\": \"\",\n    \"active\": true,\n    \"notes\": \"Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, voluptatum.\"\n  },\n  {\n    \"id\": 10,\n    \"fullname\": \"Rayan Gosling\",\n    \"email\": \"rayan@u.ua\",\n    \"username\": \"rayan\",\n    \"role\": \"user\",\n    \"avatar\": \"\",\n    \"active\": true,\n    \"notes\": \"Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, voluptatum.\"\n  },\n  {\n    \"id\": 11,\n    \"active\": true,\n    \"fullname\": \"Laura Smith\",\n    \"email\": \"laura@example.gg\",\n    \"username\": \"bbb\",\n    \"role\": \"user\",\n    \"avatar\": \"\",\n    \"notes\": \"Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, voluptatum.\"\n  },\n  {\n    \"id\": 12,\n    \"active\": true,\n    \"fullname\": \"Ted Mosby\",\n    \"email\": \"tedmosby@mail.com\",\n    \"username\": \"gamer777\",\n    \"role\": \"user\",\n    \"avatar\": \"😭\",\n    \"notes\": \"Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, voluptatum.\"\n  },\n  {\n    \"id\": 13,\n    \"active\": true,\n    \"fullname\": \"Forrest Schmidt Jr.\",\n    \"email\": \"Willard23@gmail.com\",\n    \"username\": \"Clementine72\",\n    \"role\": \"user\",\n    \"avatar\": \"https://randomuser.me/api/portraits/men/4.jpg\",\n    \"notes\": \"sed asperiores sed\"\n  },\n  {\n    \"id\": 14,\n    \"active\": true,\n    \"fullname\": \"Emilio Bruen\",\n    \"email\": \"Amya51@hotmail.com\",\n    \"username\": \"Madalyn_Brekke55\",\n    \"role\": \"user\",\n    \"avatar\": \"https://randomuser.me/api/portraits/men/5.jpg\",\n    \"notes\": \"architecto amet deleniti\"\n  },\n  {\n    \"id\": 15,\n    \"active\": false,\n    \"fullname\": \"Jenny Heathcote\",\n    \"email\": \"Granville_Lebsack38@yahoo.com\",\n    \"role\": \"user\",\n    \"username\": \"Vivienne98\",\n    \"avatar\": \"https://randomuser.me/api/portraits/men/6.jpg\",\n    \"notes\": \"provident ipsam recusandae\"\n  },\n  {\n    \"id\": 16,\n    \"active\": true,\n    \"fullname\": \"Sonya Cummerata III\",\n    \"email\": \"Toni2@yahoo.com\",\n    \"role\": \"user\",\n    \"username\": \"Norwood79\",\n    \"avatar\": \"https://randomuser.me/api/portraits/men/7.jpg\",\n    \"notes\": \"aut quaerat totam\"\n  },\n  {\n    \"id\": 17,\n    \"active\": true,\n    \"fullname\": \"Ruben Mitchell\",\n    \"email\": \"Lisette41@yahoo.com\",\n    \"role\": \"user\",\n    \"username\": \"Dariana_Schulist\",\n    \"avatar\": \"https://randomuser.me/api/portraits/men/8.jpg\",\n    \"notes\": \"minima harum ut\"\n  },\n  {\n    \"id\": 18,\n    \"active\": true,\n    \"fullname\": \"Blake Hudson I\",\n    \"email\": \"Israel88@hotmail.com\",\n    \"role\": \"user\",\n    \"username\": \"Crystal.Brakus29\",\n    \"avatar\": \"https://randomuser.me/api/portraits/men/9.jpg\",\n    \"notes\": \"sint culpa voluptatem\"\n  },\n  {\n    \"id\": 19,\n    \"active\": true,\n    \"fullname\": \"Alison Mueller\",\n    \"email\": \"Darien_Mayer@gmail.com\",\n    \"role\": \"user\",\n    \"username\": \"Cordie.Grant\",\n    \"avatar\": \"https://randomuser.me/api/portraits/men/10.jpg\",\n    \"notes\": \"officia autem aliquam\"\n  },\n  {\n    \"id\": 20,\n    \"active\": false,\n    \"fullname\": \"Miss Angelina Jenkins\",\n    \"email\": \"Cristal.Sauer@yahoo.com\",\n    \"role\": \"user\",\n    \"username\": \"Peggie.Runolfsdottir\",\n    \"avatar\": \"https://randomuser.me/api/portraits/men/11.jpg\",\n    \"notes\": \"rerum rerum rerum\"\n  },\n  {\n    \"id\": 21,\n    \"active\": true,\n    \"fullname\": \"Mack Boyle\",\n    \"email\": \"Shanny30@gmail.com\",\n    \"role\": \"user\",\n    \"username\": \"Phoebe67\",\n    \"avatar\": \"https://randomuser.me/api/portraits/men/12.jpg\",\n    \"notes\": \"voluptatibus et soluta\"\n  },\n  {\n    \"id\": 22,\n    \"active\": true,\n    \"fullname\": \"Raymond Simonis\",\n    \"email\": \"Tressie.Bruen45@gmail.com\",\n    \"role\": \"user\",\n    \"username\": \"Percy37\",\n    \"avatar\": \"https://randomuser.me/api/portraits/men/13.jpg\",\n    \"notes\": \"aut id molestiae\"\n  },\n  {\n    \"id\": 23,\n    \"active\": true,\n    \"fullname\": \"Janice Sporer\",\n    \"email\": \"Anastasia85@hotmail.com\",\n    \"role\": \"user\",\n    \"username\": \"Kali84\",\n    \"avatar\": \"https://randomuser.me/api/portraits/men/14.jpg\",\n    \"notes\": \"magnam eum aliquam\"\n  },\n  {\n    \"id\": 24,\n    \"active\": true,\n    \"fullname\": \"Francis Schowalter\",\n    \"email\": \"Tess56@gmail.com\",\n    \"role\": \"user\",\n    \"username\": \"Robyn.Kris\",\n    \"avatar\": \"https://randomuser.me/api/portraits/men/0.jpg\",\n    \"notes\": \"similique architecto in\"\n  },\n  {\n    \"id\": 25,\n    \"active\": true,\n    \"fullname\": \"Emilio Hoppe\",\n    \"email\": \"Bruce49@yahoo.com\",\n    \"role\": \"user\",\n    \"username\": \"Clemmie.Kutch\",\n    \"avatar\": \"https://randomuser.me/api/portraits/men/16.jpg\",\n    \"notes\": \"rerum quae dolorem\"\n  },\n  {\n    \"id\": 26,\n    \"active\": true,\n    \"fullname\": \"Janice Harber\",\n    \"email\": \"Jude38@hotmail.com\",\n    \"role\": \"user\",\n    \"username\": \"Neal70\",\n    \"avatar\": \"https://randomuser.me/api/portraits/men/17.jpg\",\n    \"notes\": \"iure dolor provident\"\n  },\n  {\n    \"id\": 27,\n    \"fullname\": \"Evelyn Morar\",\n    \"email\": \"Laverne.Roberts@hotmail.com\",\n    \"role\": \"user\",\n    \"username\": \"Neal_Thompson84\",\n    \"active\": true,\n    \"avatar\": \"https://randomuser.me/api/portraits/men/18.jpg\",\n    \"notes\": \"quae eos placeat\"\n  },\n  {\n    \"id\": 28,\n    \"fullname\": \"Antoinette Schneider\",\n    \"email\": \"Ambrose_Stehr25@gmail.com\",\n    \"role\": \"user\",\n    \"username\": \"Esta.Hickle\",\n    \"active\": true,\n    \"avatar\": \"https://randomuser.me/api/portraits/men/19.jpg\",\n    \"notes\": \"qui cumque unde\"\n  },\n  {\n    \"id\": 29,\n    \"fullname\": \"Daniel Ebony\",\n    \"email\": \"Nyah44@hotmail.com\",\n    \"role\": \"user\",\n    \"username\": \"Jade.Kuhlman90\",\n    \"active\": true,\n    \"avatar\": \"https://randomuser.me/api/portraits/men/20.jpg\",\n    \"notes\": \"exercitationem velit consectetur\"\n  }\n]\n"
  },
  {
    "path": "src/data/pages/users.ts",
    "content": "import { User } from '../../pages/users/types'\nimport api from '../../services/api'\n\nexport type Pagination = {\n  page: number\n  perPage: number\n  total: number\n}\n\nexport type Sorting = {\n  sortBy: keyof User | undefined\n  sortingOrder: 'asc' | 'desc' | null\n}\n\nexport type Filters = {\n  isActive: boolean\n  search: string\n}\n\nexport const getUsers = async (filters: Partial<Filters & Pagination & Sorting>) => {\n  const { isActive, search } = filters\n  let filteredUsers: User[] = await fetch(api.allUsers()).then((r) => r.json())\n\n  filteredUsers = filteredUsers.filter((user) => user.active === isActive)\n\n  if (search) {\n    filteredUsers = filteredUsers.filter((user) => user.fullname.toLowerCase().includes(search.toLowerCase()))\n  }\n\n  const { page = 1, perPage = 10 } = filters || {}\n  return {\n    data: filteredUsers,\n    pagination: {\n      page,\n      perPage,\n      total: filteredUsers.length,\n    },\n  }\n}\n\nexport const addUser = async (user: User) => {\n  const headers = new Headers()\n  headers.append('Content-Type', 'application/json')\n\n  const result = await fetch(api.allUsers(), { method: 'POST', body: JSON.stringify(user), headers }).then((r) =>\n    r.json(),\n  )\n\n  if (!result.error) {\n    return result\n  }\n\n  throw new Error(result.error)\n}\n\nexport const updateUser = async (user: User) => {\n  const headers = new Headers()\n  headers.append('Content-Type', 'application/json')\n\n  const result = await fetch(api.user(user.id), { method: 'PUT', body: JSON.stringify(user), headers }).then((r) =>\n    r.json(),\n  )\n\n  if (!result.error) {\n    return result\n  }\n\n  throw new Error(result.error)\n}\n\nexport const removeUser = async (user: User) => {\n  return fetch(api.user(user.id), { method: 'DELETE' })\n}\n\nexport const uploadAvatar = async (body: FormData) => {\n  return fetch(api.avatars(), { method: 'POST', body, redirect: 'follow' }).then((r) => r.json())\n}\n"
  },
  {
    "path": "src/data/types.ts",
    "content": "import type { ChartData } from 'chart.js'\n\nexport type ColorThemes = {\n  [key: string]: string\n}\n\nexport type TLineChartData = ChartData<'line', any, any>\nexport type TBarChartData = ChartData<'bar', any, any>\nexport type TBubbleChartData = ChartData<'bubble', any, any>\nexport type TDoughnutChartData = ChartData<'doughnut', any, any>\nexport type TPieChartData = ChartData<'pie', any, any>\n\nexport type TChartData = TLineChartData | TBarChartData | TBubbleChartData | TDoughnutChartData | TPieChartData\n"
  },
  {
    "path": "src/data/users.json",
    "content": "[\n  {\n    \"id\": \"5d2c865e9a0bae79a6ef7cfa\",\n    \"firstName\": \"Ashley\",\n    \"lastName\": \"Mcdaniel\",\n    \"fullName\": \"Ashley Mcdaniel\",\n    \"email\": \"ashleymcdaniel@nebulean.com\",\n    \"country\": \"Cayman Islands\",\n    \"starred\": true,\n    \"hasReport\": false,\n    \"status\": \"warning\",\n    \"checked\": false,\n    \"trend\": \"down\",\n    \"color\": \"warning\",\n    \"graph\": \"M 5 20 C 10 5, 15 5, 30 30 S 20 20, 70 20\",\n    \"graphColor\": \"#4ae387\"\n  },\n  {\n    \"id\": \"5d2c865ec73341e16e5f2251\",\n    \"firstName\": \"Sellers\",\n    \"lastName\": \"Todd\",\n    \"fullName\": \"Todd Sellers\",\n    \"email\": \"sellerstodd@nebulean.com\",\n    \"country\": \"Togo\",\n    \"starred\": false,\n    \"hasReport\": false,\n    \"status\": \"info\",\n    \"checked\": false,\n    \"trend\": \"none\",\n    \"color\": \"primary\",\n    \"graph\": \"M 5 30 C 10 5, 30 10, 40 30 S 30 30, 90 40\",\n    \"graphColor\": \"#e34a4a\"\n  },\n  {\n    \"id\": \"5d2c865e38800c5ce28f2f6b\",\n    \"firstName\": \"Sherman\",\n    \"lastName\": \"Knowles\",\n    \"fullName\": \"Sherman Knowles\",\n    \"email\": \"shermanknowles@nebulean.com\",\n    \"country\": \"Central African Republic\",\n    \"starred\": true,\n    \"hasReport\": true,\n    \"status\": \"warning\",\n    \"checked\": false,\n    \"trend\": \"none\",\n    \"color\": \"warning\",\n    \"graph\": \"M 5 20 C 10 5, 15 5, 30 30 S 20 20, 70 20\",\n    \"graphColor\": \"#4ae387\"\n  },\n  {\n    \"id\": \"5d2c865e957cd150b82e17a6\",\n    \"firstName\": \"Vasquez\",\n    \"lastName\": \"Lawson\",\n    \"fullName\": \"Vasquez Lawson\",\n    \"email\": \"vasquezlawson@nebulean.com\",\n    \"country\": \"Bouvet Island\",\n    \"starred\": true,\n    \"hasReport\": false,\n    \"status\": \"info\",\n    \"checked\": false,\n    \"trend\": \"down\",\n    \"color\": \"warning\",\n    \"graph\": \"M 5 30 C 10 5, 30 10, 40 30 S 30 30, 90 40\",\n    \"graphColor\": \"#e34a4a\"\n  },\n  {\n    \"id\": \"5d2c865e9194dbe2faf99227\",\n    \"firstName\": \"April\",\n    \"lastName\": \"Sykes\",\n    \"fullName\": \"April Sykes\",\n    \"email\": \"aprilsykes@nebulean.com\",\n    \"country\": \"Saint Vincent and The Grenadines\",\n    \"starred\": false,\n    \"hasReport\": true,\n    \"status\": \"warning\",\n    \"checked\": false,\n    \"trend\": \"down\",\n    \"color\": \"primary\",\n    \"graph\": \"M 5 20 C 10 5, 15 5, 30 30 S 20 20, 70 20\",\n    \"graphColor\": \"#4ae387\"\n  },\n  {\n    \"id\": \"5d2c865e1ed74d83f6b26934\",\n    \"firstName\": \"Hodges\",\n    \"lastName\": \"Garrison\",\n    \"fullName\": \"Hodges Garrison\",\n    \"email\": \"hodgesgarrison@nebulean.com\",\n    \"country\": \"Zimbabwe\",\n    \"starred\": true,\n    \"hasReport\": false,\n    \"status\": \"info\",\n    \"checked\": false,\n    \"trend\": \"none\",\n    \"color\": \"info\",\n    \"graph\": \"M 5 30 C 10 5, 30 10, 40 30 S 30 30, 90 40\",\n    \"graphColor\": \"#e34a4a\"\n  },\n  {\n    \"id\": \"5d2c865e0ef31380880c3de5\",\n    \"firstName\": \"Therese\",\n    \"lastName\": \"Stokes\",\n    \"fullName\": \"Therese Stokes\",\n    \"email\": \"theresestokes@nebulean.com\",\n    \"country\": \"Mali\",\n    \"starred\": true,\n    \"hasReport\": false,\n    \"status\": \"info\",\n    \"checked\": false,\n    \"trend\": \"up\",\n    \"color\": \"warning\",\n    \"graph\": \"M 5 20 C 10 5, 15 5, 30 30 S 20 20, 70 20\",\n    \"graphColor\": \"#4ae387\"\n  },\n  {\n    \"id\": \"5d2c865e4b5ab4727e5c8b69\",\n    \"firstName\": \"Goodwin\",\n    \"lastName\": \"Brewer\",\n    \"fullName\": \"Goodwin Brewer\",\n    \"email\": \"goodwinbrewer@nebulean.com\",\n    \"country\": \"Iraq\",\n    \"starred\": true,\n    \"hasReport\": true,\n    \"status\": \"info\",\n    \"checked\": false,\n    \"trend\": \"none\",\n    \"color\": \"info\",\n    \"graph\": \"M 5 30 C 10 5, 30 10, 40 30 S 30 30, 90 40\",\n    \"graphColor\": \"#e34a4a\"\n  },\n  {\n    \"id\": \"5d2c865e4c4d675787cfe1c0\",\n    \"firstName\": \"Gomez\",\n    \"lastName\": \"Wise\",\n    \"fullName\": \"Gomez Wise\",\n    \"email\": \"gomezwise@nebulean.com\",\n    \"country\": \"Portugal\",\n    \"starred\": true,\n    \"hasReport\": true,\n    \"status\": \"info\",\n    \"checked\": false,\n    \"trend\": \"none\",\n    \"color\": \"primary\",\n    \"graph\": \"M 5 30 C 10 5, 30 10, 40 30 S 30 30, 90 40\",\n    \"graphColor\": \"#e34a4a\"\n  },\n  {\n    \"id\": \"5d2c865e1017c3229017fc68\",\n    \"firstName\": \"Laverne\",\n    \"lastName\": \"Ayers\",\n    \"fullName\": \"Laverne Ayers\",\n    \"email\": \"laverneayers@nebulean.com\",\n    \"country\": \"Micronesia\",\n    \"starred\": false,\n    \"hasReport\": false,\n    \"status\": \"warning\",\n    \"checked\": false,\n    \"trend\": \"down\",\n    \"color\": \"info\",\n    \"graph\": \"M 5 20 C 10 5, 15 5, 30 30 S 20 20, 70 20\",\n    \"graphColor\": \"#4ae387\"\n  },\n  {\n    \"id\": \"5d2c865ee66676fd7464f8b9\",\n    \"firstName\": \"Stewart\",\n    \"lastName\": \"Leon\",\n    \"fullName\": \"Stewart Leon\",\n    \"email\": \"stewartleon@nebulean.com\",\n    \"country\": \"Seychelles\",\n    \"starred\": true,\n    \"hasReport\": false,\n    \"status\": \"info\",\n    \"checked\": false,\n    \"trend\": \"up\",\n    \"color\": \"info\",\n    \"graph\": \"M 5 30 C 10 5, 30 10, 40 30 S 30 30, 90 40\",\n    \"graphColor\": \"#e34a4a\"\n  },\n  {\n    \"id\": \"5d2c865e644d8acbed1e0e97\",\n    \"firstName\": \"Lindsey\",\n    \"lastName\": \"Hopkins\",\n    \"fullName\": \"Lindsey Hopkins\",\n    \"email\": \"lindseyhopkins@nebulean.com\",\n    \"country\": \"Costa Rica\",\n    \"starred\": false,\n    \"hasReport\": true,\n    \"status\": \"info\",\n    \"checked\": false,\n    \"trend\": \"up\",\n    \"color\": \"primary\",\n    \"graph\": \"M 5 20 C 10 5, 15 5, 30 30 S 20 20, 70 20\",\n    \"graphColor\": \"#4ae387\"\n  },\n  {\n    \"id\": \"5d2c865ef2b732c74dc3d6a2\",\n    \"firstName\": \"Head\",\n    \"lastName\": \"Lloyd\",\n    \"fullName\": \"Head Lloyd\",\n    \"email\": \"headlloyd@nebulean.com\",\n    \"country\": \"Turkey\",\n    \"starred\": true,\n    \"hasReport\": false,\n    \"status\": \"warning\",\n    \"checked\": false,\n    \"trend\": \"down\",\n    \"color\": \"info\",\n    \"graph\": \"M 5 30 C 10 5, 30 10, 40 30 S 30 30, 90 40\",\n    \"graphColor\": \"#e34a4a\"\n  },\n  {\n    \"id\": \"5d2c865e4ee4f09e92ead2e7\",\n    \"firstName\": \"Fisher\",\n    \"lastName\": \"Bradford\",\n    \"fullName\": \"Fisher Bradford\",\n    \"email\": \"fisherbradford@nebulean.com\",\n    \"country\": \"Ethiopia\",\n    \"starred\": true,\n    \"hasReport\": true,\n    \"status\": \"info\",\n    \"checked\": false,\n    \"trend\": \"up\",\n    \"color\": \"info\",\n    \"graph\": \"M 5 20 C 10 5, 15 5, 30 30 S 20 20, 70 20\",\n    \"graphColor\": \"#4ae387\"\n  },\n  {\n    \"id\": \"5d2c865e88d46a9e9049a549\",\n    \"firstName\": \"Aurora\",\n    \"lastName\": \"Bird\",\n    \"fullName\": \"Aurora Bird\",\n    \"email\": \"aurorabird@nebulean.com\",\n    \"country\": \"Burkina Faso\",\n    \"starred\": false,\n    \"hasReport\": true,\n    \"status\": \"warning\",\n    \"checked\": false,\n    \"trend\": \"up\",\n    \"color\": \"info\",\n    \"graph\": \"M 5 30 C 10 5, 30 10, 40 30 S 30 30, 90 40\",\n    \"graphColor\": \"#e34a4a\"\n  },\n  {\n    \"id\": \"5d2c865e44bf14ea96d6e752\",\n    \"firstName\": \"Bonita\",\n    \"lastName\": \"Shields\",\n    \"fullName\": \"Bonita Shields\",\n    \"email\": \"bonitashields@nebulean.com\",\n    \"country\": \"Cote D'Ivoire (Ivory Coast)\",\n    \"starred\": true,\n    \"hasReport\": true,\n    \"status\": \"warning\",\n    \"checked\": false,\n    \"trend\": \"down\",\n    \"color\": \"primary\",\n    \"graph\": \"M 5 20 C 10 5, 15 5, 30 30 S 20 20, 70 20\",\n    \"graphColor\": \"#4ae387\"\n  },\n  {\n    \"id\": \"5d2c865e2a8be26f6ac4369c\",\n    \"firstName\": \"Ethel\",\n    \"lastName\": \"Underwood\",\n    \"fullName\": \"Ethel Underwood\",\n    \"email\": \"ethelunderwood@nebulean.com\",\n    \"country\": \"Vanuatu\",\n    \"starred\": false,\n    \"hasReport\": false,\n    \"status\": \"warning\",\n    \"checked\": false,\n    \"trend\": \"down\",\n    \"color\": \"info\",\n    \"graph\": \"M 5 30 C 10 5, 30 10, 40 30 S 30 30, 90 40\",\n    \"graphColor\": \"#e34a4a\"\n  },\n  {\n    \"id\": \"5d2c865e5e0aea40111c37f8\",\n    \"firstName\": \"Parker\",\n    \"lastName\": \"May\",\n    \"fullName\": \"Parker May\",\n    \"email\": \"parkermay@nebulean.com\",\n    \"country\": \"Pakistan\",\n    \"starred\": true,\n    \"hasReport\": false,\n    \"status\": \"warning\",\n    \"checked\": false,\n    \"trend\": \"down\",\n    \"color\": \"warning\",\n    \"graph\": \"M 5 20 C 10 5, 15 5, 30 30 S 20 20, 70 20\",\n    \"graphColor\": \"#4ae387\"\n  },\n  {\n    \"id\": \"5d2c865e7e0c05ecc2d0c186\",\n    \"firstName\": \"Hillary\",\n    \"lastName\": \"Waters\",\n    \"fullName\": \"Hillary Waters\",\n    \"email\": \"hillarywaters@nebulean.com\",\n    \"country\": \"Comoros\",\n    \"starred\": true,\n    \"hasReport\": true,\n    \"status\": \"info\",\n    \"checked\": false,\n    \"trend\": \"down\",\n    \"color\": \"primary\",\n    \"graph\": \"M 5 30 C 10 5, 30 10, 40 30 S 30 30, 90 40\",\n    \"graphColor\": \"#e34a4a\"\n  },\n  {\n    \"id\": \"5d2c865e80a72eeda016b169\",\n    \"firstName\": \"Raquel\",\n    \"lastName\": \"Ferrell\",\n    \"fullName\": \"Raquel Ferrell\",\n    \"email\": \"raquelferrell@nebulean.com\",\n    \"country\": \"China\",\n    \"starred\": false,\n    \"hasReport\": false,\n    \"status\": \"warning\",\n    \"checked\": false,\n    \"trend\": \"down\",\n    \"color\": \"info\",\n    \"graph\": \"M 5 20 C 10 5, 15 5, 30 30 S 20 20, 70 20\",\n    \"graphColor\": \"#4ae387\"\n  },\n  {\n    \"id\": \"5d2c865eafacadd378add679\",\n    \"firstName\": \"Pickett\",\n    \"lastName\": \"Page\",\n    \"fullName\": \"Pickett Page\",\n    \"email\": \"pickettpage@nebulean.com\",\n    \"country\": \"Bermuda\",\n    \"starred\": true,\n    \"hasReport\": false,\n    \"status\": \"info\",\n    \"checked\": false,\n    \"trend\": \"up\",\n    \"color\": \"info\",\n    \"graph\": \"M 5 30 C 10 5, 30 10, 40 30 S 30 30, 90 40\",\n    \"graphColor\": \"#e34a4a\"\n  },\n  {\n    \"id\": \"5d2c865e772b1a75bb0a07b5\",\n    \"firstName\": \"Alyson\",\n    \"lastName\": \"Bailey\",\n    \"fullName\": \"Alyson Bailey\",\n    \"email\": \"alysonbailey@nebulean.com\",\n    \"country\": \"United Arab Emirates\",\n    \"starred\": false,\n    \"hasReport\": false,\n    \"status\": \"warning\",\n    \"checked\": false,\n    \"trend\": \"up\",\n    \"color\": \"warning\",\n    \"graph\": \"M 5 20 C 10 5, 15 5, 30 30 S 20 20, 70 20\",\n    \"graphColor\": \"#4ae387\"\n  },\n  {\n    \"id\": \"5d2c865e137c19a76b56210c\",\n    \"firstName\": \"Farley\",\n    \"lastName\": \"Meyers\",\n    \"fullName\": \"Farley Meyers\",\n    \"email\": \"farleymeyers@nebulean.com\",\n    \"country\": \"Christmas Island\",\n    \"starred\": false,\n    \"hasReport\": false,\n    \"status\": \"info\",\n    \"checked\": false,\n    \"trend\": \"up\",\n    \"color\": \"warning\",\n    \"graph\": \"M 5 30 C 10 5, 30 10, 40 30 S 30 30, 90 40\",\n    \"graphColor\": \"#e34a4a\"\n  },\n  {\n    \"id\": \"5d2c865eb0ba37a27aa9afe0\",\n    \"firstName\": \"Hinton\",\n    \"lastName\": \"Avery\",\n    \"fullName\": \"Hinton Avery\",\n    \"email\": \"hintonavery@nebulean.com\",\n    \"country\": \"Liechtenstein\",\n    \"starred\": false,\n    \"hasReport\": true,\n    \"status\": \"info\",\n    \"checked\": false,\n    \"trend\": \"up\",\n    \"color\": \"info\",\n    \"graph\": \"M 5 30 C 10 5, 30 10, 40 30 S 30 30, 90 40\",\n    \"graphColor\": \"#e34a4a\"\n  }\n]\n"
  },
  {
    "path": "src/env.d.ts",
    "content": "/// <reference types=\"vite/client\" />\n/// <reference types=\".vuestic\" />\n"
  },
  {
    "path": "src/i18n/index.ts",
    "content": "import { createI18n } from 'vue-i18n'\n\nconst fileNameToLocaleModuleDict = import.meta.glob<{ default: Record<string, string> }>('./locales/*.json', {\n  eager: true,\n})\n\nconst messages: { [P: string]: Record<string, string> } = {}\nObject.entries(fileNameToLocaleModuleDict)\n  .map(([fileName, localeModule]) => {\n    const fileNameParts = fileName.split('/')\n    const fileNameWithoutPath = fileNameParts[fileNameParts.length - 1]\n    const localeName = fileNameWithoutPath.split('.json')[0]\n\n    return [localeName, localeModule.default] as const\n  })\n  .forEach((localeNameLocaleMessagesTuple) => {\n    messages[localeNameLocaleMessagesTuple[0]] = localeNameLocaleMessagesTuple[1]\n  })\n\nexport default createI18n({\n  legacy: false,\n  locale: 'gb',\n  fallbackLocale: 'gb',\n  messages,\n})\n"
  },
  {
    "path": "src/i18n/locales/br.json",
    "content": "{\n  \"auth\": {\n    \"agree\": \"Eu aceito.\",\n    \"createAccount\": \"Criar conta\",\n    \"createNewAccount\": \"Criar uma nova conta\",\n    \"email\": \"Email\",\n    \"login\": \"Entrar\",\n    \"password\": \"Senha\",\n    \"recover_password\": \"Recuperar senha\",\n    \"sign_up\": \"Cadastrar-se\",\n    \"keep_logged_in\": \"Mantenha-me conectado\",\n    \"termsOfUse\": \"Termos de uso.\",\n    \"reset_password\": \"Redefinir senha\"\n  },\n  \"404\": {\n    \"title\": \"Esta página está pescando.\",\n    \"text\": \"Se você acha que isso não está certo, envie-nos uma mensagem em \",\n    \"back_button\": \"Voltar para o painel\"\n  },\n  \"typography\": {\n    \"primary\": \"Estilos de texto primários\",\n    \"secondary\": \"Estilos de texto secundários\"\n  },\n  \"dashboard\": {\n    \"versions\": \"Versões\",\n    \"setupRemoteConnections\": \"Configurar Conexões Remotas\",\n    \"currentVisitors\": \"Visitantes Atuais\",\n    \"charts\": {\n      \"trendyTrends\": \"Tendências na moda\",\n      \"showInMoreDetail\": \"Mostrar em mais detalhes\",\n      \"showInLessDetail\": \"Mostrar em menos detalhes\",\n      \"loadingSpeed\": \"Velocidade de carregamento\",\n      \"topContributors\": \"Principais colaboradores\",\n      \"showNextFive\": \"Mostrar próximos cinco\",\n      \"commits\": \"Commits\"\n    },\n    \"info\": {\n      \"componentRichTheme\": \"tema rico em componentes\",\n      \"completedPullRequests\": \"solicitações de pull concluídas\",\n      \"users\": \"usuários\",\n      \"points\": \"pontos\",\n      \"units\": \"unidades\",\n      \"exploreGallery\": \"Explorar galeria\",\n      \"viewLibrary\": \"Ver Biblioteca\",\n      \"commits\": \"commits\",\n      \"components\": \"componentes\",\n      \"teamMembers\": \"membros da equipe\"\n    },\n    \"tabs\": {\n      \"overview\": {\n        \"title\": \"Visão Geral\",\n        \"built\": \"Construído com o framework Vue.js\",\n        \"free\": \"Totalmente gratuito para todos\",\n        \"fresh\": \"Design fresco e nítido\",\n        \"mobile\": \"Responsivo e otimizado para dispositivos móveis\",\n        \"components\": \"Toneladas de componentes úteis\",\n        \"nojQuery\": \"Completamente livre de jQuery\"\n      },\n      \"billingAddress\": {\n        \"title\": \"Endereço de Cobrança\",\n        \"personalInfo\": \"Informação Pessoal\",\n        \"firstName\": \"Nome e Sobrenome\",\n        \"email\": \"Email\",\n        \"address\": \"Endereço\",\n        \"companyInfo\": \"Informação da Empresa\",\n        \"city\": \"Cidade\",\n        \"country\": \"País\",\n        \"infiniteConnections\": \"Conexões infinitas\",\n        \"addConnection\": \"Adicionar Conexão\"\n      },\n      \"bankDetails\": {\n        \"title\": \"Detalhes Bancários\",\n        \"detailsFields\": \"Campos de Detalhes\",\n        \"bankName\": \"Nome do Banco\",\n        \"accountName\": \"Nome da Conta\",\n        \"sortCode\": \"Código de Ordenação\",\n        \"accountNumber\": \"Número da Conta\",\n        \"notes\": \"Notas\",\n        \"sendDetails\": \"Enviar Detalhes\"\n      }\n    },\n    \"navigationLayout\": \"layout de navegação\",\n    \"topBarButton\": \"Barra Superior\",\n    \"sideBarButton\": \"Barra Lateral\"\n  },\n  \"language\": {\n    \"brazilian_portuguese\": \"Português\",\n    \"english\": \"Inglês\",\n    \"spanish\": \"Espanhol\",\n    \"simplified_chinese\": \"Chinês Simplificado\",\n    \"persian\": \"Persa\"\n  },\n  \"menu\": {\n    \"auth\": \"Autenticação\",\n    \"buttons\": \"Botões\",\n    \"timelines\": \"Linhas do Tempo\",\n    \"dashboard\": \"Painel de Controle\",\n    \"billing\": \"Cobrança\",\n    \"login\": \"Entrar\",\n    \"signUp\": \"Cadastrar-se\",\n    \"preferences\": \"Preferências\",\n    \"payments\": \"Pagamentos\",\n    \"pricing-plans\": \"Planos de Preços\",\n    \"login-singup\": \"Entrar/Cadastrar\",\n    \"404\": \"Páginas 404\",\n    \"faq\": \"FAQ\"\n  },\n  \"messages\": {\n    \"all\": \"Ver todas as mensagens\",\n    \"new\": \"Novas mensagens de {name}\",\n    \"mark_as_read\": \"Marcar como Lido\"\n  },\n  \"navbar\": {\n    \"messageUs\": \"Perguntas de desenvolvimento web:\",\n    \"repository\": \"Repositório GitHub\"\n  },\n  \"notifications\": {\n    \"all\": \"Ver todas as notificações\",\n    \"mark_as_read\": \"Marcar como lida\",\n    \"sentMessage\": \"enviou uma mensagem\",\n    \"uploadedZip\": \"fez upload de um novo arquivo Zip com {type}\",\n    \"startedTopic\": \"iniciou um novo tópico\"\n  },\n  \"user\": {\n    \"language\": \"Mudar Idioma\",\n    \"logout\": \"Sair\",\n    \"profile\": \"Meu Perfil\",\n    \"settings\": \"Configurações\",\n    \"billing\": \"Faturamento\",\n    \"faq\": \"FAQ\",\n    \"helpAndSupport\": \"Ajuda & Suporte\",\n    \"projects\": \"Projetos\",\n    \"account\": \"Conta\",\n    \"explore\": \"Explorar\"\n  },\n  \"treeView\": {\n    \"basic\": \"Básico\",\n    \"icons\": \"Icones\",\n    \"selectable\": \"Selecionável\",\n    \"editable\": \"Editável\",\n    \"advanced\": \"Advançado\"\n  },\n  \"chat\": {\n    \"title\": \"Gráficos\"\n  },\n  \"helpAndSupport\": \"Ajuda & Suporte\",\n  \"aboutVuesticAdmin\": \"Sobre Vuestic Admin\",\n  \"search\": {\n    \"placeholder\": \"Buscar...\"\n  },\n  \"vuestic\": {\n    \"search\": \"Pesquisar\",\n    \"noOptions\": \"Itens não encontrados\",\n    \"ok\": \"OK\",\n    \"cancel\": \"Cancelar\",\n    \"uploadFile\": \"Carregar arquivo\",\n    \"undo\": \"Desfazer\",\n    \"dropzone\": \"Solte os arquivos aqui para carregar\",\n    \"fileDeleted\": \"Arquivo excluído\",\n    \"closeAlert\": \"fechar alerta\",\n    \"backToTop\": \"voltar ao topo\",\n    \"toggleDropdown\": \"alternar dropdown\",\n    \"carousel\": \"carrossel\",\n    \"goPreviousSlide\": \"ir para o slide anterior\",\n    \"goNextSlide\": \"ir para o próximo slide\",\n    \"goSlide\": \"ir para o slide {index}\",\n    \"slideOf\": \"slide {index} de {length}\",\n    \"close\": \"fechar\",\n    \"openColorPicker\": \"abrir seletor de cores\",\n    \"colorSelection\": \"seleção de cores\",\n    \"colorName\": \"cor {color}\",\n    \"decreaseCounter\": \"diminuir contador\",\n    \"increaseCounter\": \"aumentar contador\",\n    \"selectAllRows\": \"selecionar todas as linhas\",\n    \"sortColumnBy\": \"ordenar coluna por {name}\",\n    \"selectRowByIndex\": \"selecionar linha {index}\",\n    \"resetDate\": \"redefinir data\",\n    \"nextPeriod\": \"próximo período\",\n    \"switchView\": \"alternar visualização\",\n    \"previousPeriod\": \"período anterior\",\n    \"removeFile\": \"remover arquivo\",\n    \"reset\": \"redefinir\",\n    \"pagination\": \"paginação\",\n    \"goToTheFirstPage\": \"ir para a primeira página\",\n    \"goToPreviousPage\": \"ir para a página anterior\",\n    \"goToSpecificPage\": \"ir para a página {page}\",\n    \"goToSpecificPageInput\": \"insira o número da página\",\n    \"goNextPage\": \"ir para a próxima página\",\n    \"goLastPage\": \"ir para a última página\",\n    \"currentRating\": \"classificação atual {value} de {max}\",\n    \"voteRating\": \"votar classificação {value} de {max}\",\n    \"optionsFilter\": \"filtro de opções\",\n    \"splitPanels\": \"dividir painéis\",\n    \"movePaginationLeft\": \"mover paginação para a esquerda\",\n    \"movePaginationRight\": \"mover paginação para a direita\",\n    \"resetTime\": \"redefinir horário\",\n    \"closeToast\": \"fechar notificação\",\n    \"selectedOption\": \"Opção selecionada\",\n    \"noSelectedOption\": \"Nenhuma opção selecionada\",\n    \"breadcrumbs\": \"caminho\",\n    \"counterValue\": \"valor do contador\",\n    \"selectedDate\": \"data selecionada\",\n    \"selectedTime\": \"horário selecionado\",\n    \"progressState\": \"estado de progresso\",\n    \"color\": \"cor\",\n    \"next\": \"Próximo\",\n    \"back\": \"Anterior\",\n    \"finish\": \"Finalizar\",\n    \"step\": \"etapa\",\n    \"progress\": \"progresso\",\n    \"loading\": \"Carregando\",\n    \"sliderValue\": \"O valor atual do controle deslizante é {value}\",\n    \"switch\": \"Alternar\",\n    \"inputField\": \"Campo de entrada\",\n    \"fileTypeIncorrect\": \"Tipo de arquivo incorreto\",\n    \"select\": \"Selecione uma opção\"\n  }\n}\n"
  },
  {
    "path": "src/i18n/locales/cn.json",
    "content": "{\n  \"auth\": {\n    \"agree\": \"我同意\",\n    \"createAccount\": \"创建账号\",\n    \"createNewAccount\": \"创建新账号\",\n    \"email\": \"电子邮箱\",\n    \"login\": \"登录\",\n    \"password\": \"密码\",\n    \"recover_password\": \"恢复密码\",\n    \"sign_up\": \"注册\",\n    \"keep_logged_in\": \"保持登录\",\n    \"termsOfUse\": \"使用条款\",\n    \"reset_password\": \"重置密码\"\n  },\n  \"404\": {\n    \"title\": \"此页面已去钓鱼\",\n    \"text\": \"如果您觉得这不对，请给我们发送消息\",\n    \"back_button\": \"返回仪表板\"\n  },\n  \"typography\": {\n    \"primary\": \"主要文本样式\",\n    \"secondary\": \"次要文本样式\"\n  },\n  \"dashboard\": {\n    \"versions\": \"版本\",\n    \"setupRemoteConnections\": \"设置远程连接\",\n    \"currentVisitors\": \"当前访问者\",\n    \"charts\": {\n      \"trendyTrends\": \"流行趋势\",\n      \"showInMoreDetail\": \"显示更多细节\",\n      \"showInLessDetail\": \"显示较少细节\",\n      \"loadingSpeed\": \"加载速度\",\n      \"topContributors\": \"主要贡献者\",\n      \"showNextFive\": \"显示接下来的五个\",\n      \"commits\": \"提交\"\n    },\n    \"info\": {\n      \"componentRichTheme\": \"组件丰富的主题\",\n      \"completedPullRequests\": \"已完成的拉取请求\",\n      \"users\": \"用户\",\n      \"points\": \"点数\",\n      \"units\": \"单位\",\n      \"exploreGallery\": \"探索画廊\",\n      \"viewLibrary\": \"查看库\",\n      \"commits\": \"提交\",\n      \"components\": \"组件\",\n      \"teamMembers\": \"团队成员\"\n    },\n    \"tabs\": {\n      \"overview\": {\n        \"title\": \"概述\",\n        \"built\": \"使用 Vue.js 框架构建\",\n        \"free\": \"对所有人完全免费\",\n        \"fresh\": \"新鲜和清新的设计\",\n        \"mobile\": \"响应式且优化移动\",\n        \"components\": \"大量有用的组件\",\n        \"nojQuery\": \"完全不使用 jQuery\"\n      },\n      \"billingAddress\": {\n        \"title\": \"账单地址\",\n        \"personalInfo\": \"个人信息\",\n        \"firstName\": \"名字 & 姓氏\",\n        \"email\": \"电子邮箱\",\n        \"address\": \"地址\",\n        \"companyInfo\": \"公司信息\",\n        \"city\": \"城市\",\n        \"country\": \"国家\",\n        \"infiniteConnections\": \"无限连接\",\n        \"addConnection\": \"添加连接\"\n      },\n      \"bankDetails\": {\n        \"title\": \"银行详情\",\n        \"detailsFields\": \"详情字段\",\n        \"bankName\": \"银行名称\",\n        \"accountName\": \"账户名称\",\n        \"sortCode\": \"排序代码\",\n        \"accountNumber\": \"账号\",\n        \"notes\": \"备注\",\n        \"sendDetails\": \"发送详情\"\n      }\n    },\n    \"navigationLayout\": \"导航布局\",\n    \"topBarButton\": \"顶部按钮\",\n    \"sideBarButton\": \"侧边按钮\"\n  },\n  \"language\": {\n    \"brazilian_portuguese\": \"葡萄牙语\",\n    \"english\": \"英语\",\n    \"spanish\": \"西班牙语\",\n    \"simplified_chinese\": \"简体中文\",\n    \"persian\": \"波斯语\"\n  },\n  \"menu\": {\n    \"auth\": \"授权\",\n    \"buttons\": \"按钮\",\n    \"timelines\": \"时间线\",\n    \"dashboard\": \"仪表板\",\n    \"billing\": \"计费\",\n    \"login\": \"登录\",\n    \"signUp\": \"注册\",\n    \"preferences\": \"偏好\",\n    \"payments\": \"支付\",\n    \"pricing-plans\": \"定价计划\",\n    \"login-singup\": \"登录/注册\",\n    \"404\": \"404 页面\",\n    \"faq\": \"常见问题解答\"\n  },\n  \"messages\": {\n    \"all\": \"查看所有消息\",\n    \"new\": \"来自 {name} 的新消息\",\n    \"mark_as_read\": \"标记为已读\"\n  },\n  \"navbar\": {\n    \"messageUs\": \"需要Web开发帮助吗？请联系我们。\",\n    \"repository\": \"GitHub 仓库\"\n  },\n  \"notifications\": {\n    \"all\": \"查看所有通知\",\n    \"mark_as_read\": \"标为已读\",\n    \"sentMessage\": \"{name} 给你发了一条消息\",\n    \"uploadedZip\": \"{name} 上传了一个新的 Zip 文件 {type}\",\n    \"startedTopic\": \"{name} 开始了一个新话题\"\n  },\n  \"user\": {\n    \"language\": \"修改语言\",\n    \"logout\": \"登出\",\n    \"logout\": \"登出\",\n    \"profile\": \"我的资料\",\n    \"settings\": \"设置\",\n    \"billing\": \"账单\",\n    \"faq\": \"常见问题\",\n    \"helpAndSupport\": \"帮助与支持\",\n    \"projects\": \"项目\",\n    \"account\": \"账户\",\n    \"explore\": \"探索\"\n  },\n  \"treeView\": {\n    \"basic\": \"基本型\",\n    \"icons\": \"图标\",\n    \"selectable\": \"可选择\",\n    \"editable\": \"可编辑\",\n    \"advanced\": \"高级\"\n  },\n  \"chat\": {\n    \"title\": \"聊天\"\n  },\n  \"cards\": {\n    \"cards\": \"卡片\",\n    \"fixed\": \"固定的\",\n    \"floating\": \"浮动的\",\n    \"contentText\": \"独特的斑马条纹使它们成为人们最熟悉的动物之一。\",\n    \"rowHeight\": \"行高\",\n    \"title\": {\n      \"dark\": \"暗色背景\",\n      \"bright\": \"亮色卡片\",\n      \"titleOnImageNoOverlay\": \"图像上的标题，但没有叠加\",\n      \"normal\": \"标准卡\",\n      \"overlayAndTextOnImage\": \"图像上有覆盖和文本的卡片\",\n      \"stripeNoImage\": \"无图像条纹卡\"\n    },\n    \"button\": {\n      \"main\": \"主要\",\n      \"cancel\": \"取消\"\n    },\n    \"link\": {\n      \"edit\": \"编辑\",\n      \"setAsDefault\": \"设为默认\",\n      \"delete\": \"删除\",\n      \"traveling\": \"Traveling\",\n      \"france\": \"法国\",\n      \"review\": \"评论\",\n      \"feedback\": \"反馈信息\",\n      \"readFull\": \"阅读全文\",\n      \"secondaryAction\": \"第二行为\",\n      \"action1\": \"行为 1\",\n      \"action2\": \"行为 2\"\n    }\n  },\n  \"helpAndSupport\": \"帮助与支持\",\n  \"aboutVuesticAdmin\": \"关于 Vuestic Admin\",\n  \"search\": {\n    \"placeholder\": \"搜索...\"\n  },\n  \"vuestic\": {\n    \"search\": \"搜索\",\n    \"noOptions\": \"未找到项目\",\n    \"ok\": \"确认\",\n    \"cancel\": \"取消\",\n    \"uploadFile\": \"上传文件\",\n    \"undo\": \"撤销\",\n    \"dropzone\": \"将文件拖到此处上传\",\n    \"fileDeleted\": \"文件已删除\",\n    \"closeAlert\": \"关闭警告\",\n    \"backToTop\": \"回到顶部\",\n    \"toggleDropdown\": \"切换下拉菜单\",\n    \"carousel\": \"轮播\",\n    \"goPreviousSlide\": \"上一张幻灯片\",\n    \"goNextSlide\": \"下一张幻灯片\",\n    \"goSlide\": \"跳转到第 {index} 张幻灯片\",\n    \"slideOf\": \"第 {index} 张，共 {length} 张\",\n    \"close\": \"关闭\",\n    \"openColorPicker\": \"打开颜色选择器\",\n    \"colorSelection\": \"颜色选择\",\n    \"colorName\": \"颜色 {color}\",\n    \"decreaseCounter\": \"减少计数\",\n    \"increaseCounter\": \"增加计数\",\n    \"selectAllRows\": \"选择所有行\",\n    \"sortColumnBy\": \"按 {name} 排序\",\n    \"selectRowByIndex\": \"选择第 {index} 行\",\n    \"resetDate\": \"重置日期\",\n    \"nextPeriod\": \"下一个时间段\",\n    \"switchView\": \"切换视图\",\n    \"previousPeriod\": \"上一个时间段\",\n    \"removeFile\": \"删除文件\",\n    \"reset\": \"重置\",\n    \"pagination\": \"分页\",\n    \"goToTheFirstPage\": \"跳转到第一页\",\n    \"goToPreviousPage\": \"跳转到上一页\",\n    \"goToSpecificPage\": \"跳转到第 {page} 页\",\n    \"goToSpecificPageInput\": \"输入页码以跳转\",\n    \"goNextPage\": \"跳转到下一页\",\n    \"goLastPage\": \"跳转到最后一页\",\n    \"currentRating\": \"当前评分 {value} / {max}\",\n    \"voteRating\": \"评分 {value} / {max}\",\n    \"optionsFilter\": \"选项筛选\",\n    \"splitPanels\": \"分割面板\",\n    \"movePaginationLeft\": \"分页向左移动\",\n    \"movePaginationRight\": \"分页向右移动\",\n    \"resetTime\": \"重置时间\",\n    \"closeToast\": \"关闭提示\",\n    \"selectedOption\": \"已选选项\",\n    \"noSelectedOption\": \"未选择选项\",\n    \"breadcrumbs\": \"面包屑导航\",\n    \"counterValue\": \"计数值\",\n    \"selectedDate\": \"选择的日期\",\n    \"selectedTime\": \"选择的时间\",\n    \"progressState\": \"进度状态\",\n    \"color\": \"颜色\",\n    \"next\": \"下一步\",\n    \"back\": \"上一步\",\n    \"finish\": \"完成\",\n    \"step\": \"步骤\",\n    \"progress\": \"进度\",\n    \"loading\": \"加载中\",\n    \"sliderValue\": \"当前滑块值为 {value}\",\n    \"switch\": \"切换\",\n    \"inputField\": \"输入框\",\n    \"fileTypeIncorrect\": \"文件类型不正确\",\n    \"select\": \"选择一个选项\"\n  }\n}\n"
  },
  {
    "path": "src/i18n/locales/es.json",
    "content": "{\n  \"auth\": {\n    \"agree\": \"Acepto\",\n    \"createAccount\": \"Crear cuenta\",\n    \"createNewAccount\": \"Crear cuenta nueva\",\n    \"email\": \"Email\",\n    \"login\": \"Iniciar sesión\",\n    \"password\": \"Contraseña\",\n    \"recover_password\": \"Recuperar contraseña\",\n    \"sign_up\": \"Registrar\",\n    \"keep_logged_in\": \"Mantenerme conectado\",\n    \"termsOfUse\": \"Términos de uso\",\n    \"reset_password\": \"Restablecer contraseña\"\n  },\n  \"404\": {\n    \"title\": \"Esta página se ha ido a pescar\",\n    \"text\": \"Si crees que esto no es correcto, por favor envíanos un mensaje a \",\n    \"back_button\": \"Volver al tablero\"\n  },\n  \"typography\": {\n    \"primary\": \"Estilos de texto primarios\",\n    \"secondary\": \"Estilos de texto secundarios\"\n  },\n  \"dashboard\": {\n    \"versions\": \"Versiones\",\n    \"setupRemoteConnections\": \"Configurar conexiones remotas\",\n    \"currentVisitors\": \"Visitantes actuales\",\n    \"charts\": {\n      \"trendyTrends\": \"Tendencias modernas\",\n      \"showInMoreDetail\": \"Mostrar en más detalle\",\n      \"showInLessDetail\": \"Mostrar en menos detalle\",\n      \"loadingSpeed\": \"Velocidad de carga\",\n      \"topContributors\": \"Principales contribuyentes\",\n      \"showNextFive\": \"Mostrar los siguientes cinco\",\n      \"commits\": \"Commit\"\n    },\n    \"info\": {\n      \"componentRichTheme\": \"Tema rico en componentes\",\n      \"completedPullRequests\": \"Solicitudes de pull completadas\",\n      \"users\": \"Usuarios\",\n      \"points\": \"Puntos\",\n      \"units\": \"Unidades\",\n      \"exploreGallery\": \"Explorar galería\",\n      \"viewLibrary\": \"Ver biblioteca\",\n      \"commits\": \"Commits\",\n      \"components\": \"Componentes\",\n      \"teamMembers\": \"Miembros del equipo\"\n    },\n    \"tabs\": {\n      \"overview\": {\n        \"title\": \"Visión general\",\n        \"built\": \"Construido con el framework Vue.js\",\n        \"free\": \"Totalmente gratuito para todos\",\n        \"fresh\": \"Diseño fresco y nítido\",\n        \"mobile\": \"Responsivo y optimizado para móviles\",\n        \"components\": \"Toneladas de componentes útiles\",\n        \"nojQuery\": \"Totalmente libre de jQuery\"\n      },\n      \"billingAddress\": {\n        \"title\": \"Dirección de facturación\",\n        \"personalInfo\": \"Información personal\",\n        \"firstName\": \"Nombre y apellido\",\n        \"email\": \"Email\",\n        \"address\": \"Dirección\",\n        \"companyInfo\": \"Información de la empresa\",\n        \"city\": \"Ciudad\",\n        \"country\": \"País\",\n        \"infiniteConnections\": \"Conexiones infinitas\",\n        \"addConnection\": \"Añadir conexión\"\n      },\n      \"bankDetails\": {\n        \"title\": \"Detalles del banco\",\n        \"detailsFields\": \"Campos de detalles\",\n        \"bankName\": \"Nombre del banco\",\n        \"accountName\": \"Nombre de la cuenta\",\n        \"sortCode\": \"Código de ordenación\",\n        \"accountNumber\": \"Número de cuenta\",\n        \"notes\": \"Notas\",\n        \"sendDetails\": \"Enviar detalles\"\n      }\n    },\n    \"navigationLayout\": \"Diseño de navegación\",\n    \"topBarButton\": \"Barra superior\",\n    \"sideBarButton\": \"Barra lateral\"\n  },\n  \"language\": {\n    \"brazilian_portuguese\": \"Portugués brasileño\",\n    \"english\": \"Inglés\",\n    \"spanish\": \"Español\",\n    \"simplified_chinese\": \"Chino simplificado\",\n    \"persian\": \"Persa\"\n  },\n  \"menu\": {\n    \"auth\": \"Autenticación\",\n    \"buttons\": \"Botones\",\n    \"timelines\": \"Líneas de tiempo\",\n    \"dashboard\": \"Tablero\",\n    \"billing\": \"Facturación\",\n    \"login\": \"Iniciar sesión\",\n    \"preferences\": \"Preferencias\",\n    \"payments\": \"Pagos\",\n    \"pricing-plans\": \"Planes de precios\",\n    \"login-singup\": \"Iniciar sesión/Registrarse\",\n    \"404\": \"Páginas 404\",\n    \"faq\": \"FAQ\"\n  },\n  \"messages\": {\n    \"all\": \"Ver todos los mensajes\",\n    \"new\": \"Nuevos mensajes de {name}\",\n    \"mark_as_read\": \"Marcar como leído\"\n  },\n  \"navbar\": {\n    \"messageUs\": \"Preguntas sobre desarrollo web:\",\n    \"repository\": \"Repositorio GitHub\"\n  },\n  \"notifications\": {\n    \"all\": \"Ver todas las notificaciones\",\n    \"mark_as_read\": \"Marcar como leída\",\n    \"sentMessage\": \"{name} te envió un mensaje\",\n    \"uploadedZip\": \"{name} subió un archivo Zip con {type}\",\n    \"startedTopic\": \"{name} inició un nuevo tema\"\n  },\n  \"user\": {\n    \"language\": \"Cambiar Idioma\",\n    \"logout\": \"Cerrar sesión\",\n    \"profile\": \"Mi Perfil\",\n    \"settings\": \"Configuración\",\n    \"billing\": \"Facturación\",\n    \"faq\": \"Preguntas Frecuentes\",\n    \"helpAndSupport\": \"Ayuda & Soporte\",\n    \"projects\": \"Proyectos\",\n    \"account\": \"Cuenta\",\n    \"explore\": \"Explorar\"\n  },\n  \"helpAndSupport\": \"Ayuda y Soporte\",\n  \"aboutVuesticAdmin\": \"Acerca de Vuestic Admin\",\n  \"search\": {\n    \"placeholder\": \"Buscar...\"\n  },\n  \"vuestic\": {\n    \"search\": \"Buscar\",\n    \"noOptions\": \"No se encontraron elementos\",\n    \"ok\": \"Aceptar\",\n    \"cancel\": \"Cancelar\",\n    \"uploadFile\": \"Subir archivo\",\n    \"undo\": \"Deshacer\",\n    \"dropzone\": \"Suelta los archivos aquí para subirlos\",\n    \"fileDeleted\": \"Archivo eliminado\",\n    \"closeAlert\": \"cerrar alerta\",\n    \"backToTop\": \"volver al inicio\",\n    \"toggleDropdown\": \"alternar menú desplegable\",\n    \"carousel\": \"carrusel\",\n    \"goPreviousSlide\": \"ir a la diapositiva anterior\",\n    \"goNextSlide\": \"ir a la siguiente diapositiva\",\n    \"goSlide\": \"ir a la diapositiva {index}\",\n    \"slideOf\": \"diapositiva {index} de {length}\",\n    \"close\": \"cerrar\",\n    \"openColorPicker\": \"abrir selector de color\",\n    \"colorSelection\": \"selección de color\",\n    \"colorName\": \"color {color}\",\n    \"decreaseCounter\": \"disminuir contador\",\n    \"increaseCounter\": \"aumentar contador\",\n    \"selectAllRows\": \"seleccionar todas las filas\",\n    \"sortColumnBy\": \"ordenar columna por {name}\",\n    \"selectRowByIndex\": \"seleccionar fila {index}\",\n    \"resetDate\": \"restablecer fecha\",\n    \"nextPeriod\": \"siguiente periodo\",\n    \"switchView\": \"cambiar vista\",\n    \"previousPeriod\": \"periodo anterior\",\n    \"removeFile\": \"eliminar archivo\",\n    \"reset\": \"restablecer\",\n    \"pagination\": \"paginación\",\n    \"goToTheFirstPage\": \"ir a la primera página\",\n    \"goToPreviousPage\": \"ir a la página anterior\",\n    \"goToSpecificPage\": \"ir a la página {page}\",\n    \"goToSpecificPageInput\": \"ingresa el número de página\",\n    \"goNextPage\": \"ir a la siguiente página\",\n    \"goLastPage\": \"ir a la última página\",\n    \"currentRating\": \"calificación actual {value} de {max}\",\n    \"voteRating\": \"votar calificación {value} de {max}\",\n    \"optionsFilter\": \"filtro de opciones\",\n    \"splitPanels\": \"paneles divididos\",\n    \"movePaginationLeft\": \"mover paginación a la izquierda\",\n    \"movePaginationRight\": \"mover paginación a la derecha\",\n    \"resetTime\": \"restablecer hora\",\n    \"closeToast\": \"cerrar notificación\",\n    \"selectedOption\": \"Opción seleccionada\",\n    \"noSelectedOption\": \"No se ha seleccionado una opción\",\n    \"breadcrumbs\": \"migas de pan\",\n    \"counterValue\": \"valor del contador\",\n    \"selectedDate\": \"fecha seleccionada\",\n    \"selectedTime\": \"hora seleccionada\",\n    \"progressState\": \"estado del progreso\",\n    \"color\": \"color\",\n    \"next\": \"Siguiente\",\n    \"back\": \"Anterior\",\n    \"finish\": \"Finalizar\",\n    \"step\": \"paso\",\n    \"progress\": \"progreso\",\n    \"loading\": \"Cargando\",\n    \"sliderValue\": \"El valor actual del control deslizante es {value}\",\n    \"switch\": \"Cambiar\",\n    \"inputField\": \"Campo de entrada\",\n    \"fileTypeIncorrect\": \"El tipo de archivo es incorrecto\",\n    \"select\": \"Seleccionar una opción\"\n  }\n}\n"
  },
  {
    "path": "src/i18n/locales/gb.json",
    "content": "{\n  \"auth\": {\n    \"agree\": \"I agree to\",\n    \"createAccount\": \"Create account\",\n    \"createNewAccount\": \"Create New Account\",\n    \"email\": \"Email\",\n    \"login\": \"Login\",\n    \"password\": \"Password\",\n    \"recover_password\": \"Recover password\",\n    \"sign_up\": \"Sign Up\",\n    \"keep_logged_in\": \"Keep me logged in\",\n    \"termsOfUse\": \"Terms of Use.\",\n    \"reset_password\": \"Reset password\"\n  },\n  \"404\": {\n    \"title\": \"This page’s gone fishing.\",\n    \"text\": \"If you feel that it’s not right, please send us a message at \",\n    \"back_button\": \"Back to dashboard\"\n  },\n  \"typography\": {\n    \"primary\": \"Primary text styles\",\n    \"secondary\": \"Secondary text styles\"\n  },\n  \"dashboard\": {\n    \"versions\": \"Versions\",\n    \"setupRemoteConnections\": \"Setup Remote Connections\",\n    \"currentVisitors\": \"Current Visitors\",\n    \"navigationLayout\": \"navigation layout\",\n    \"topBarButton\": \"Top Bar\",\n    \"sideBarButton\": \"Side Bar\"\n  },\n  \"language\": {\n    \"brazilian_portuguese\": \"Português\",\n    \"english\": \"English\",\n    \"spanish\": \"Spanish\",\n    \"simplified_chinese\": \"Simplified Chinese\",\n    \"persian\": \"Persian\"\n  },\n  \"menu\": {\n    \"auth\": \"Auth\",\n    \"buttons\": \"Buttons\",\n    \"timelines\": \"Timelines\",\n    \"dashboard\": \"Dashboard\",\n    \"billing\": \"Billing\",\n    \"login\": \"Login\",\n    \"preferences\": \"Account preferences\",\n    \"payments\": \"Payments\",\n    \"settings\": \"Application settings\",\n    \"pricing-plans\": \"Pricing plans\",\n    \"payment-methods\": \"Payment methods\",\n    \"signup\": \"Signup\",\n    \"recover-password\": \"Recover password\",\n    \"recover-password-email\": \"Recover password email\",\n    \"404\": \"404\",\n    \"faq\": \"FAQ\",\n    \"users\": \"Users\",\n    \"projects\": \"Projects\"\n  },\n  \"messages\": {\n    \"all\": \"See all messages\",\n    \"new\": \"New messages from {name}\",\n    \"mark_as_read\": \"Mark As Read\"\n  },\n  \"navbar\": {\n    \"messageUs\": \"Web development inquiries:\",\n    \"repository\": \"GitHub Repo\"\n  },\n  \"notifications\": {\n    \"all\": \"See all notifications\",\n    \"less\": \"See less notifications\",\n    \"mark_as_read\": \"Mark as read\",\n    \"sentMessage\": \"sent you a message\",\n    \"uploadedZip\": \"uploaded a new Zip file with {type}\",\n    \"startedTopic\": \"started a new topic\"\n  },\n  \"user\": {\n    \"language\": \"Change language\",\n    \"logout\": \"Logout\",\n    \"profile\": \"Profile\",\n    \"settings\": \"Settings\",\n    \"billing\": \"Billing\",\n    \"faq\": \"FAQ\",\n    \"helpAndSupport\": \"Help & support\",\n    \"projects\": \"Projects\",\n    \"account\": \"Account\",\n    \"explore\": \"Explore\"\n  },\n  \"treeView\": {\n    \"basic\": \"Basic\",\n    \"icons\": \"Icons\",\n    \"selectable\": \"Selectable\",\n    \"editable\": \"Editable\",\n    \"advanced\": \"Advanced\"\n  },\n  \"chat\": {\n    \"title\": \"Chat\",\n    \"sendButton\": \"Send\"\n  },\n  \"spacingPlayground\": {\n    \"value\": \"Value\",\n    \"margin\": \"Margin\",\n    \"padding\": \"Padding\"\n  },\n  \"spacing\": {\n    \"title\": \"Spacing\"\n  },\n  \"cards\": {\n    \"cards\": \"Cards\",\n    \"fixed\": \"Fixed\",\n    \"floating\": \"Floating\",\n    \"contentText\": \"The unique stripes of zebras make them one of the animals most familiar to people.\",\n    \"contentTextLong\": \"The unique stripes of zebras make them one of the animals most familiar to people. They occur in a variety of habitats, such as grasslands, savannas, woodlands, thorny scrublands, mountains, and coastal hills. Various anthropogenic factors have had a severe impact on zebra populations, in particular hunting for skins and habitat destruction. Grévy's zebra and the mountain zebra are endangered. While plains zebras are much more plentiful, one subspecies, the quagga.\",\n    \"rowHeight\": \"Row height\",\n    \"title\": {\n      \"default\": \"Default\",\n      \"withControls\": \"With controls\",\n      \"customHeader\": \"Custom header\",\n      \"withoutHeader\": \"Without header\",\n      \"withImage\": \"With Image\",\n      \"withTitleOnImage\": \"With title on image\",\n      \"withCustomTitleOnImage\": \"With custom title on image\",\n      \"withStripe\": \"With stripe\",\n      \"withBackground\": \"With background\"\n    },\n    \"button\": {\n      \"main\": \"Main\",\n      \"cancel\": \"Cancel\",\n      \"showMore\": \"Show More\",\n      \"readMore\": \"Show More\"\n    },\n    \"link\": {\n      \"edit\": \"Edit\",\n      \"setAsDefault\": \"Set as default\",\n      \"delete\": \"Delete\",\n      \"traveling\": \"Traveling\",\n      \"france\": \"France\",\n      \"review\": \"Review\",\n      \"feedback\": \"Leave feedback\",\n      \"readFull\": \"Read full article\",\n      \"secondaryAction\": \"Secondary action\",\n      \"action1\": \"Action 1\",\n      \"action2\": \"Action 2\"\n    }\n  },\n  \"colors\": {\n    \"themeColors\": \"Theme Colors\",\n    \"extraColors\": \"Extra Colors\",\n    \"gradients\": {\n      \"basic\": {\n        \"title\": \"Button Gradients\"\n      },\n      \"hovered\": {\n        \"title\": \"Hovered Button Gradients\",\n        \"text\": \"Lighten 15% applied to an original style (gradient or flat color) for hover state.\"\n      },\n      \"pressed\": {\n        \"title\": \"Pressed Button Gradients\",\n        \"text\": \"Darken 15% applied to an original style (gradient or flat color) for pressed state.\"\n      }\n    }\n  },\n  \"tabs\": {\n    \"alignment\": \"Tabs alignment\",\n    \"overflow\": \"Tabs overflow\",\n    \"hidden\": \"Tabs with hidden slider\",\n    \"grow\": \"Tabs grow\"\n  },\n  \"helpAndSupport\": \"Help & support\",\n  \"aboutVuesticAdmin\": \"About Vuestic Admin\",\n  \"supportAndConsulting\": \"Support & Consulting\",\n  \"search\": {\n    \"placeholder\": \"Search...\"\n  },\n  \"buttonSelect\": {\n    \"dark\": \"Dark\",\n    \"light\": \"Light\"\n  },\n  \"vuestic\": {\n    \"search\": \"Search\",\n    \"noOptions\": \"Items not found\",\n    \"ok\": \"OK\",\n    \"cancel\": \"Cancel\",\n    \"uploadFile\": \"Upload file\",\n    \"undo\": \"Undo\",\n    \"dropzone\": \"Drop files here to upload\",\n    \"fileDeleted\": \"File deleted\",\n    \"closeAlert\": \"close alert\",\n    \"backToTop\": \"back to top\",\n    \"toggleDropdown\": \"toggle dropdown\",\n    \"carousel\": \"carousel\",\n    \"goPreviousSlide\": \"go previous slide\",\n    \"goNextSlide\": \"go next slide\",\n    \"goSlide\": \"go slide {index}\",\n    \"slideOf\": \"slide {index} of {length}\",\n    \"close\": \"close\",\n    \"openColorPicker\": \"open color picker\",\n    \"colorSelection\": \"color selection\",\n    \"colorName\": \"color {color}\",\n    \"decreaseCounter\": \"decrease counter\",\n    \"increaseCounter\": \"increase counter\",\n    \"selectAllRows\": \"select all rows\",\n    \"sortColumnBy\": \"sort column by {name}\",\n    \"selectRowByIndex\": \"select row {index}\",\n    \"resetDate\": \"reset date\",\n    \"nextPeriod\": \"next period\",\n    \"switchView\": \"switch view\",\n    \"previousPeriod\": \"previous period\",\n    \"removeFile\": \"remove file\",\n    \"reset\": \"reset\",\n    \"pagination\": \"pagination\",\n    \"goToTheFirstPage\": \"go to the first page\",\n    \"goToPreviousPage\": \"go to the previous page\",\n    \"goToSpecificPage\": \"go to the {page} page\",\n    \"goToSpecificPageInput\": \"enter the page number to go\",\n    \"goNextPage\": \"go next page\",\n    \"goLastPage\": \"go last page\",\n    \"currentRating\": \"current rating {value} of {max}\",\n    \"voteRating\": \"vote rating {value} of {max}\",\n    \"optionsFilter\": \"options filter\",\n    \"splitPanels\": \"split panels\",\n    \"movePaginationLeft\": \"move pagination left\",\n    \"movePaginationRight\": \"move pagination right\",\n    \"resetTime\": \"reset time\",\n    \"closeToast\": \"close toast\",\n    \"selectedOption\": \"Selected option\",\n    \"noSelectedOption\": \"Option is not selected\",\n    \"breadcrumbs\": \"breadcrumbs\",\n    \"counterValue\": \"counter value\",\n    \"selectedDate\": \"selected date\",\n    \"selectedTime\": \"selected time\",\n    \"progressState\": \"progress state\",\n    \"color\": \"color\",\n    \"next\": \"Next\",\n    \"back\": \"Previous\",\n    \"finish\": \"Finish\",\n    \"step\": \"step\",\n    \"progress\": \"progress\",\n    \"loading\": \"Loading\",\n    \"sliderValue\": \"Current slider value is {value}\",\n    \"switch\": \"Switch\",\n    \"inputField\": \"Input field\",\n    \"fileTypeIncorrect\": \"File type is incorrect\",\n    \"select\": \"Select an option\"\n  }\n}\n"
  },
  {
    "path": "src/i18n/locales/ir.json",
    "content": "{\n  \"auth\": {\n    \"agree\": \"با شرایط استفاده موافقم.\",\n    \"createAccount\": \"ساخت حساب کاربری\",\n    \"createNewAccount\": \"ساخت حساب کاربری تازه\",\n    \"email\": \"رایانامه\",\n    \"login\": \"ورود\",\n    \"password\": \"گذرواژه\",\n    \"recover_password\": \"فراموشی رمز عبور\",\n    \"sign_up\": \"ساخت حساب کاربری\",\n    \"keep_logged_in\": \"مرا در این مرورگر بخاطر بسپار\",\n    \"termsOfUse\": \"شرایط استفاده\",\n    \"reset_password\": \"بازنشانی گذرواژه\"\n  },\n  \"404\": {\n    \"title\": \"این صفحه رفته گل بچینه :)\",\n    \"text\": \"اگر فکر میکنید چیزی درست نیست برای ما پیام بفرستید.\",\n    \"back_button\": \"بازگشت به پیشخوان\"\n  },\n  \"typography\": {\n    \"primary\": \"سبک های متن اصلی\",\n    \"secondary\": \"سبکه های متن ثانوی\"\n  },\n  \"dashboard\": {\n    \"versions\": \"ورژن ها\",\n    \"setupRemoteConnections\": \"راه اندازی اتصالات از راه دور\",\n    \"currentVisitors\": \"بازکنندگان فعلی\",\n    \"charts\": {\n      \"trendyTrends\": \"ترند های روز\",\n      \"showInMoreDetail\": \"نمایش جزییات بیشتر\",\n      \"showInLessDetail\": \"نمایش جزییات کمتر\",\n      \"loadingSpeed\": \"سرعت بارگزاری\",\n      \"topContributors\": \"مشارکت کنندگان برتر\",\n      \"showNextFive\": \"نمایش پنج تای بعدی\",\n      \"commits\": \"کامیت ها\"\n    },\n    \"info\": {\n      \"componentRichTheme\": \"تم غنی از کامپوننت\",\n      \"completedPullRequests\": \"درخواست های کشیدن کامل شده\",\n      \"users\": \"کاربران\",\n      \"points\": \"امتیازات\",\n      \"units\": \"واحد ها\",\n      \"exploreGallery\": \"گشت و گذار در گالری\",\n      \"viewLibrary\": \"مشاهده کتابخانه\",\n      \"commits\": \"کامیت ها\",\n      \"components\": \"کامپوننت ها\",\n      \"teamMembers\": \"اعضای تیم\"\n    },\n    \"tabs\": {\n      \"overview\": {\n        \"title\": \"نمای کلی\",\n        \"built\": \"ساخته شده با فریم ورک Vue.js\",\n        \"free\": \"کاملا رایگان برای همه\",\n        \"fresh\": \"طراحی تازه و باحال\",\n        \"mobile\": \"واکنش گرا و بهینه سازی برای موبایل\",\n        \"components\": \"پر از مولفه های باحال\",\n        \"nojQuery\": \"کاملا بدون jQuery\"\n      },\n      \"billingAddress\": {\n        \"title\": \"نشانی صورتحساب\",\n        \"personalInfo\": \"اطلاعات شخصی\",\n        \"firstName\": \"نام و نام خانوادگی\",\n        \"email\": \"رایانما\",\n        \"address\": \"نشانی\",\n        \"companyInfo\": \"اطلاعات شرکت\",\n        \"city\": \"شهر\",\n        \"country\": \"کشور\",\n        \"infiniteConnections\": \"اتصالات نامحدود\",\n        \"addConnection\": \"افزودن اتصال\"\n      },\n      \"bankDetails\": {\n        \"title\": \"اطلاعات بانکی\",\n        \"detailsFields\": \"فیلد های جزئیات\",\n        \"bankName\": \"نام بانک\",\n        \"accountName\": \"نام حساب\",\n        \"sortCode\": \"کد مرتب سازی\",\n        \"accountNumber\": \"شماره حساب\",\n        \"notes\": \"یادداشت ها\",\n        \"sendDetails\": \"ارسال جزئیات\"\n      }\n    },\n    \"navigationLayout\": \"چیدمان ناوبری\",\n    \"topBarButton\": \"دکمه نوار بالا\",\n    \"sideBarButton\": \"دکمه نوار کناری\"\n  },\n  \"language\": {\n    \"brazilian_portuguese\": \"پرتغالی برزیل\",\n    \"english\": \"انگلیسی\",\n    \"spanish\": \"اسپانیایی\",\n    \"simplified_chinese\": \"چینی ساده شده\",\n    \"persian\": \"فارسی\"\n  },\n  \"menu\": {\n    \"auth\": \"احراز هویت\",\n    \"buttons\": \"دکمه ها\",\n    \"timelines\": \"جدول زمانی\",\n    \"dashboard\": \"داشبورد\",\n    \"billing\": \"صورتحساب\",\n    \"login\": \"ورود\",\n    \"signUp\": \"ثبت نام\",\n    \"preferences\": \"ترجیحات\",\n    \"payments\": \"پرداخت ها\",\n    \"pricing-plans\": \"طرح های قیمت گذاری\",\n    \"login-singup\": \"ورود/ثبت نام\",\n    \"404\": \"صفحات 404\",\n    \"faq\": \"سوالات متداول\"\n  },\n  \"messages\": {\n    \"all\": \"مشاهده تمام پیام ها\",\n    \"new\": \"پیام های جدید از {name}\",\n    \"mark_as_read\": \"علامت زدن به عنوان خوانده شده\"\n  },\n  \"navbar\": {\n    \"messageUs\": \"پرسش های مربوط به توسعه وب:\",\n    \"repository\": \"مخزن گیت هاب\"\n  },\n  \"notifications\": {\n    \"all\": \"مشاهده تمام اعلان ها\",\n    \"mark_as_read\": \"علامت زدن به عنوان خوانده شده\",\n    \"sentMessage\": \"پیامی برای شما فرستاد\",\n    \"uploadedZip\": \"یک فایل زیپ جدید با {type} آپلود کرد\",\n    \"startedTopic\": \"یک موضوع جدید را شروع کرد\"\n  },\n  \"user\": {\n    \"language\": \"تغییر زبان\",\n    \"logout\": \"خروج\",\n    \"profile\": \"پروفایل من\",\n    \"settings\": \"تنظیمات\",\n    \"billing\": \"صورتحساب\",\n    \"faq\": \"سؤالات متداول\",\n    \"helpAndSupport\": \"کمک و پشتیبانی\",\n    \"projects\": \"پروژه ها\",\n    \"account\": \"حساب\",\n    \"explore\": \"کاوش\"\n  },\n  \"treeView\": {\n    \"basic\": \"اصلی\",\n    \"icons\": \"آيکون ها\",\n    \"selectable\": \"قابل انتخاب\",\n    \"editable\": \"قابل ویرایش\",\n    \"advanced\": \"پیشرفته\"\n  },\n  \"chat\": {\n    \"title\": \"گفتگو\"\n  },\n  \"spacingPlayground\": {\n    \"value\": \"مقدار\",\n    \"margin\": \"حاشیه\",\n    \"padding\": \"پدینگ\"\n  },\n  \"cards\": {\n    \"cards\": \"کارت ها\",\n    \"fixed\": \"ثابت\",\n    \"floating\": \"شناور\",\n    \"contentText\": \"از قیافت معلومه خیلی وقته روی صندلی نشستی. کپک نزنی! پاشو یه تکونی بده \",\n    \"contentTextLong\": \"یک برنامه نویس حتما نباید سیگار دستش باشد تا جامعه متوجه بشود که او برنامه نویس است. مشخص نیست این تصور غلط از کجا و به چه شکل به وجود آمد اما اصلا درست نیست. برنامه نویس\\u200Cهای بزرگ و موفق غیرسیگاری زیاد هستند. اشخاصی مثل بیل گیتس، ریچارد استالمن یا علی شریفی نیستانی که در دنیای برنامه نویسی کاملا شناخته شده می\\u200Cباشند و سیگاری نیستند. در مقابل بعضی از برنامه نویس\\u200Cها هم سیگار می\\u200Cکشند و این موضوع کاملا به خود شخص برمی\\u200Cگردد\",\n    \"rowHeight\": \"ارتفاع سطر\",\n    \"title\": {\n      \"default\": \"پیش فرض\",\n      \"withControls\": \"همراه کنترل\",\n      \"customHeader\": \"سربرگ سفارشی\",\n      \"withoutHeader\": \"بدون سربرگ\",\n      \"withImage\": \"همراه تصویر\",\n      \"withTitleOnImage\": \"همراه عنوان و بدون تصویر\",\n      \"withCustomTitleOnImage\": \"بدون تصویر یا عنوان\",\n      \"withStripe\": \"همراه نوار\",\n      \"withBackground\": \"همراه پس زمینه\"\n    },\n    \"button\": {\n      \"main\": \"اصلی\",\n      \"cancel\": \"لغو\"\n    },\n    \"link\": {\n      \"edit\": \"ویرایش\",\n      \"setAsDefault\": \"تنظیم به عنوان پیش فرض\",\n      \"delete\": \"حذف\",\n      \"traveling\": \"مسافرت\",\n      \"france\": \"فرانسیه\",\n      \"review\": \"بررسی\",\n      \"feedback\": \"ترک کردن بازخورد\",\n      \"readFull\": \"خواندن تمام مقالات\",\n      \"secondaryAction\": \"افدام دوم\",\n      \"action1\": \"اقدام یک\",\n      \"action2\": \"اقدام دو\"\n    }\n  },\n  \"helpAndSupport\": \"کمک و پشتیبانی\",\n  \"aboutVuesticAdmin\": \"درباره Vuestic Admin\",\n  \"search\": {\n    \"placeholder\": \"جستجو...\"\n  },\n  \"vuestic\": {\n    \"search\": \"جستجو\",\n    \"noOptions\": \"موردی یافت نشد\",\n    \"ok\": \"تأیید\",\n    \"cancel\": \"لغو\",\n    \"uploadFile\": \"بارگذاری فایل\",\n    \"undo\": \"واگرد\",\n    \"dropzone\": \"فایل‌ها را اینجا رها کنید تا بارگذاری شوند\",\n    \"fileDeleted\": \"فایل حذف شد\",\n    \"closeAlert\": \"بستن هشدار\",\n    \"backToTop\": \"بازگشت به بالا\",\n    \"toggleDropdown\": \"باز و بسته کردن منوی کشویی\",\n    \"carousel\": \"چرخ و فلک\",\n    \"goPreviousSlide\": \"رفتن به اسلاید قبلی\",\n    \"goNextSlide\": \"رفتن به اسلاید بعدی\",\n    \"goSlide\": \"رفتن به اسلاید {index}\",\n    \"slideOf\": \"اسلاید {index} از {length}\",\n    \"close\": \"بستن\",\n    \"openColorPicker\": \"باز کردن انتخاب‌گر رنگ\",\n    \"colorSelection\": \"انتخاب رنگ\",\n    \"colorName\": \"رنگ {color}\",\n    \"decreaseCounter\": \"کاهش شمارنده\",\n    \"increaseCounter\": \"افزایش شمارنده\",\n    \"selectAllRows\": \"انتخاب همه سطرها\",\n    \"sortColumnBy\": \"مرتب‌سازی ستون بر اساس {name}\",\n    \"selectRowByIndex\": \"انتخاب سطر {index}\",\n    \"resetDate\": \"بازنشانی تاریخ\",\n    \"nextPeriod\": \"دوره بعدی\",\n    \"switchView\": \"تغییر نما\",\n    \"previousPeriod\": \"دوره قبلی\",\n    \"removeFile\": \"حذف فایل\",\n    \"reset\": \"بازنشانی\",\n    \"pagination\": \"صفحه‌بندی\",\n    \"goToTheFirstPage\": \"رفتن به اولین صفحه\",\n    \"goToPreviousPage\": \"رفتن به صفحه قبلی\",\n    \"goToSpecificPage\": \"رفتن به صفحه {page}\",\n    \"goToSpecificPageInput\": \"شماره صفحه را وارد کنید\",\n    \"goNextPage\": \"رفتن به صفحه بعدی\",\n    \"goLastPage\": \"رفتن به آخرین صفحه\",\n    \"currentRating\": \"رتبه فعلی {value} از {max}\",\n    \"voteRating\": \"رتبه‌دهی {value} از {max}\",\n    \"optionsFilter\": \"فیلتر گزینه‌ها\",\n    \"splitPanels\": \"تقسیم پنل‌ها\",\n    \"movePaginationLeft\": \"انتقال صفحه‌بندی به چپ\",\n    \"movePaginationRight\": \"انتقال صفحه‌بندی به راست\",\n    \"resetTime\": \"بازنشانی زمان\",\n    \"closeToast\": \"بستن اعلان\",\n    \"selectedOption\": \"گزینه انتخاب‌شده\",\n    \"noSelectedOption\": \"گزینه‌ای انتخاب نشده است\",\n    \"breadcrumbs\": \"مسیرها\",\n    \"counterValue\": \"مقدار شمارنده\",\n    \"selectedDate\": \"تاریخ انتخاب‌شده\",\n    \"selectedTime\": \"زمان انتخاب‌شده\",\n    \"progressState\": \"وضعیت پیشرفت\",\n    \"color\": \"رنگ\",\n    \"next\": \"بعدی\",\n    \"back\": \"قبلی\",\n    \"finish\": \"پایان\",\n    \"step\": \"مرحله\",\n    \"progress\": \"پیشرفت\",\n    \"loading\": \"در حال بارگذاری\",\n    \"sliderValue\": \"مقدار فعلی لغزنده {value} است\",\n    \"switch\": \"تغییر\",\n    \"inputField\": \"فیلد ورودی\",\n    \"fileTypeIncorrect\": \"نوع فایل نادرست است\",\n    \"select\": \"یک گزینه انتخاب کنید\"\n  }\n}\n"
  },
  {
    "path": "src/layouts/AppLayout.vue",
    "content": "<template>\n  <VaLayout\n    :top=\"{ fixed: true, order: 2 }\"\n    :left=\"{ fixed: true, absolute: breakpoints.mdDown, order: 1, overlay: breakpoints.mdDown && !isSidebarMinimized }\"\n    @leftOverlayClick=\"isSidebarMinimized = true\"\n  >\n    <template #top>\n      <AppNavbar :is-mobile=\"isMobile\" />\n    </template>\n\n    <template #left>\n      <AppSidebar :minimized=\"isSidebarMinimized\" :animated=\"!isMobile\" :mobile=\"isMobile\" />\n    </template>\n\n    <template #content>\n      <div :class=\"{ minimized: isSidebarMinimized }\" class=\"app-layout__sidebar-wrapper\">\n        <div v-if=\"isFullScreenSidebar\" class=\"flex justify-end\">\n          <VaButton class=\"px-4 py-4\" icon=\"md_close\" preset=\"plain\" @click=\"onCloseSidebarButtonClick\" />\n        </div>\n      </div>\n      <AppLayoutNavigation v-if=\"!isMobile\" class=\"p-4\" />\n      <main class=\"p-4 pt-0\">\n        <article>\n          <RouterView />\n        </article>\n      </main>\n    </template>\n  </VaLayout>\n</template>\n\n<script setup>\nimport { onBeforeUnmount, onMounted, ref, computed } from 'vue'\nimport { storeToRefs } from 'pinia'\nimport { onBeforeRouteUpdate } from 'vue-router'\nimport { useBreakpoint } from 'vuestic-ui'\n\nimport { useGlobalStore } from '../stores/global-store'\n\nimport AppLayoutNavigation from '../components/app-layout-navigation/AppLayoutNavigation.vue'\nimport AppNavbar from '../components/navbar/AppNavbar.vue'\nimport AppSidebar from '../components/sidebar/AppSidebar.vue'\n\nconst GlobalStore = useGlobalStore()\n\nconst breakpoints = useBreakpoint()\n\nconst sidebarWidth = ref('16rem')\nconst sidebarMinimizedWidth = ref(undefined)\n\nconst isMobile = ref(false)\nconst isTablet = ref(false)\nconst { isSidebarMinimized } = storeToRefs(GlobalStore)\n\nconst onResize = () => {\n  isSidebarMinimized.value = breakpoints.mdDown\n  isMobile.value = breakpoints.smDown\n  isTablet.value = breakpoints.mdDown\n  sidebarMinimizedWidth.value = isMobile.value ? '0' : '4.5rem'\n  sidebarWidth.value = isTablet.value ? '100%' : '16rem'\n}\n\nonMounted(() => {\n  window.addEventListener('resize', onResize)\n  onResize()\n})\n\nonBeforeUnmount(() => {\n  window.removeEventListener('resize', onResize)\n})\n\nonBeforeRouteUpdate(() => {\n  if (breakpoints.mdDown) {\n    // Collapse sidebar after route change for Mobile\n    isSidebarMinimized.value = true\n  }\n})\n\nconst isFullScreenSidebar = computed(() => isTablet.value && !isSidebarMinimized.value)\n\nconst onCloseSidebarButtonClick = () => {\n  isSidebarMinimized.value = true\n}\n</script>\n\n<style lang=\"scss\" scoped>\n// Prevent icon jump on animation\n.va-sidebar {\n  width: unset !important;\n  min-width: unset !important;\n}\n</style>\n"
  },
  {
    "path": "src/layouts/AuthLayout.vue",
    "content": "<template>\n  <VaLayout v-if=\"breakpoint.lgUp\" class=\"h-screen bg-[var(--va-background-secondary)]\">\n    <template #left>\n      <RouterLink\n        class=\"bg-primary h-full flex items-center justify-center\"\n        style=\"width: 35vw\"\n        to=\"/\"\n        aria-label=\"Visit homepage\"\n      >\n        <VuesticLogo :height=\"28\" start=\"#FFF\" />\n      </RouterLink>\n    </template>\n    <template #content>\n      <main class=\"h-full flex items-center justify-center mx-auto max-w-[420px]\">\n        <RouterView />\n      </main>\n    </template>\n  </VaLayout>\n\n  <VaLayout v-else class=\"h-screen bg-[var(--va-background-secondary)]\">\n    <template #content>\n      <div class=\"p-4\">\n        <main class=\"h-full flex flex-row items-center justify-start mx-auto max-w-[420px]\">\n          <div class=\"flex flex-col items-start\">\n            <RouterLink class=\"py-4\" to=\"/\" aria-label=\"Visit homepage\">\n              <VuesticLogo class=\"mb-2\" start=\"#0E41C9\" />\n            </RouterLink>\n            <RouterView />\n          </div>\n        </main>\n      </div>\n    </template>\n  </VaLayout>\n</template>\n\n<script lang=\"ts\" setup>\nimport { useBreakpoint } from 'vuestic-ui'\nimport VuesticLogo from '../components/VuesticLogo.vue'\n\nconst breakpoint = useBreakpoint()\n</script>\n"
  },
  {
    "path": "src/layouts/RouterBypass.vue",
    "content": "<template>\n  <div class=\"max-w-7xl mx-auto\">\n    <RouterView></RouterView>\n  </div>\n</template>\n"
  },
  {
    "path": "src/main.ts",
    "content": "import './scss/main.scss'\n\nimport { createApp } from 'vue'\nimport App from './App.vue'\nimport i18n from './i18n'\nimport { createVuestic } from 'vuestic-ui'\nimport { createGtm } from '@gtm-support/vue-gtm'\n\nimport stores from './stores'\nimport router from './router'\nimport vuesticGlobalConfig from './services/vuestic-ui/global-config'\n\nconst app = createApp(App)\n\napp.use(stores)\napp.use(router)\napp.use(i18n)\napp.use(createVuestic({ config: vuesticGlobalConfig }))\n\nif (import.meta.env.VITE_APP_GTM_ENABLED) {\n  app.use(\n    createGtm({\n      id: import.meta.env.VITE_APP_GTM_KEY,\n      debug: false,\n      vueRouter: router,\n    }),\n  )\n}\n\napp.mount('#app')\n"
  },
  {
    "path": "src/pages/404.vue",
    "content": "<script lang=\"ts\" setup>\nimport VuesticLogo from '../components/VuesticLogo.vue'\nimport NotFoundImage from '../components/NotFoundImage.vue'\n</script>\n\n<template>\n  <div class=\"flex flex-col justify-between h-screen items-center bg-[var(--va-background-secondary)]\">\n    <RouterLink to=\"/\">\n      <VuesticLogo :gradient=\"false\" class=\"my-8 h-5\" />\n    </RouterLink>\n\n    <div class=\"flex flex-col items-center gap-6 px-4 my-8\">\n      <NotFoundImage />\n      <h1 class=\"va-h1 text-center sm:text-5xl text-4xl\">Page not found</h1>\n\n      <p class=\"text-center\">\n        The page you are looking for might have been removed had its name changed or is temporarily unavailable.\n      </p>\n\n      <div class=\"flex flex-col sm:flex-row gap-4\">\n        <VaButton to=\"/\">Go to homepage</VaButton>\n        <VaButton href=\"https://github.com/epicmaxco/vuestic-admin/issues/new\" preset=\"secondary\" target=\"_blank\"\n          >Create a GitHub issue\n        </VaButton>\n      </div>\n    </div>\n\n    <div />\n  </div>\n</template>\n"
  },
  {
    "path": "src/pages/admin/dashboard/Dashboard.vue",
    "content": "<script lang=\"ts\" setup>\nimport RevenueUpdates from './cards/RevenueReport.vue'\nimport ProjectTable from './cards/ProjectTable.vue'\nimport RevenueByLocationMap from './cards/RevenueByLocationMap.vue'\nimport DataSection from './DataSection.vue'\nimport YearlyBreakup from './cards/YearlyBreakup.vue'\nimport MonthlyEarnings from './cards/MonthlyEarnings.vue'\nimport RegionRevenue from './cards/RegionRevenue.vue'\nimport Timeline from './cards/Timeline.vue'\n</script>\n\n<template>\n  <h1 class=\"page-title font-bold\">Dashboard</h1>\n  <section class=\"flex flex-col gap-4\">\n    <div class=\"flex flex-col sm:flex-row gap-4\">\n      <RevenueUpdates class=\"w-full sm:w-[70%]\" />\n      <div class=\"flex flex-col gap-4 w-full sm:w-[30%]\">\n        <YearlyBreakup class=\"h-full\" />\n        <MonthlyEarnings />\n      </div>\n    </div>\n    <DataSection />\n    <div class=\"flex flex-col md:flex-row gap-4\">\n      <RevenueByLocationMap class=\"w-full md:w-4/6\" />\n      <RegionRevenue class=\"w-full md:w-2/6\" />\n    </div>\n    <div class=\"flex flex-col md:flex-row gap-4\">\n      <ProjectTable class=\"w-full md:w-1/2\" />\n      <Timeline class=\"w-full md:w-1/2\" />\n    </div>\n  </section>\n</template>\n"
  },
  {
    "path": "src/pages/admin/dashboard/DataSection.vue",
    "content": "<template>\n  <div class=\"grid grid-cols-1 sm:grid-cols-2 md:grid-cols-4 gap-4\">\n    <DataSectionItem\n      v-for=\"metric in dashboardMetrics\"\n      :key=\"metric.id\"\n      :title=\"metric.title\"\n      :value=\"metric.value\"\n      :change-text=\"metric.changeText\"\n      :up=\"metric.changeDirection === 'up'\"\n      :icon-background=\"metric.iconBackground\"\n      :icon-color=\"metric.iconColor\"\n    >\n      <template #icon>\n        <VaIcon :name=\"metric.icon\" size=\"large\" />\n      </template>\n    </DataSectionItem>\n  </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { computed } from 'vue'\nimport { useColors } from 'vuestic-ui'\nimport DataSectionItem from './DataSectionItem.vue'\n\ninterface DashboardMetric {\n  id: string\n  title: string\n  value: string\n  icon: string\n  changeText: string\n  changeDirection: 'up' | 'down'\n  iconBackground: string\n  iconColor: string\n}\n\nconst { getColor } = useColors()\n\nconst dashboardMetrics = computed<DashboardMetric[]>(() => [\n  {\n    id: 'openInvoices',\n    title: 'Open invoices',\n    value: '$35,548',\n    icon: 'mso-attach_money',\n    changeText: '$1, 450',\n    changeDirection: 'down',\n    iconBackground: getColor('success'),\n    iconColor: getColor('on-success'),\n  },\n  {\n    id: 'ongoingProjects',\n    title: 'Ongoing project',\n    value: '15',\n    icon: 'mso-folder_open',\n    changeText: '25.36%',\n    changeDirection: 'up',\n    iconBackground: getColor('info'),\n    iconColor: getColor('on-info'),\n  },\n  {\n    id: 'employees',\n    title: 'Employees',\n    value: '25',\n    icon: 'mso-account_circle',\n    changeText: '2.5%',\n    changeDirection: 'up',\n    iconBackground: getColor('danger'),\n    iconColor: getColor('on-danger'),\n  },\n  {\n    id: 'newProfit',\n    title: 'New profit',\n    value: '27%',\n    icon: 'mso-grade',\n    changeText: '4%',\n    changeDirection: 'up',\n    iconBackground: getColor('warning'),\n    iconColor: getColor('on-warning'),\n  },\n])\n</script>\n"
  },
  {
    "path": "src/pages/admin/dashboard/DataSectionItem.vue",
    "content": "<template>\n  <VaCard>\n    <VaCardContent>\n      <section>\n        <header class=\"flex items-center justify-between\">\n          <div class=\"text-lg font-semibold grow\">{{ value }}</div>\n          <div\n            class=\"p-1 rounded\"\n            :style=\"{\n              backgroundColor: iconBackground,\n              color: iconColor,\n            }\"\n          >\n            <slot name=\"icon\"></slot>\n          </div>\n        </header>\n        <div>\n          <p class=\"mb-2\">{{ title }}</p>\n          <p class=\"text-xs text-secondary\">\n            <span :class=\"changeClass\">\n              <template v-if=\"up\">↑</template>\n              <template v-else>↓</template>\n              {{ changeText }}\n            </span>\n            since last month\n          </p>\n        </div>\n      </section>\n    </VaCardContent>\n  </VaCard>\n</template>\n\n<script lang=\"ts\" setup>\nimport { computed } from 'vue'\nimport { VaCard } from 'vuestic-ui'\n\nconst props = defineProps<{\n  title: string\n  value: string | number\n  changeText: string\n  up: boolean\n  iconBackground: string\n  iconColor: string\n}>()\n\nconst changeClass = computed(() => ({\n  'text-success': props.up,\n  'text-red-600': !props.up,\n}))\n</script>\n"
  },
  {
    "path": "src/pages/admin/dashboard/cards/MonthlyEarnings.vue",
    "content": "<template>\n  <VaCard>\n    <VaCardTitle>\n      <h1 class=\"card-title text-tag text-secondary font-bold uppercase\">Monthly Earnings</h1>\n    </VaCardTitle>\n    <VaCardContent>\n      <div class=\"p-1 bg-black rounded absolute right-4 top-4\">\n        <VaIcon name=\"mso-attach_money\" color=\"#fff\" size=\"large\" />\n      </div>\n      <section>\n        <div class=\"text-xl font-bold mb-2\">$6,820</div>\n        <p class=\"text-xs text-success\">\n          <VaIcon name=\"arrow_upward\" />\n          25.36%\n          <span class=\"text-secondary\"> last month</span>\n        </p>\n      </section>\n      <div class=\"w-full flex items-center\">\n        <VaChart :data=\"chartData\" class=\"h-24\" type=\"line\" :options=\"options\" />\n      </div>\n    </VaCardContent>\n  </VaCard>\n</template>\n\n<script setup lang=\"ts\">\nimport { VaCard } from 'vuestic-ui'\nimport VaChart from '../../../../components/va-charts/VaChart.vue'\nimport { useChartData } from '../../../../data/charts/composables/useChartData'\nimport { lineChartData } from '../../../../data/charts/lineChartData'\nimport { ChartOptions } from 'chart.js'\n\nconst chartData = useChartData(lineChartData)\n\nconst options: ChartOptions<'line'> = {\n  scales: {\n    x: {\n      display: false,\n      grid: {\n        display: false, // Disable X-axis grid lines (\"net\")\n      },\n    },\n    y: {\n      display: false,\n      grid: {\n        display: false, // Disable Y-axis grid lines (\"net\")\n      },\n      ticks: {\n        display: false, // Hide Y-axis values\n      },\n    },\n  },\n  interaction: {\n    intersect: false,\n    mode: 'index',\n  },\n  plugins: {\n    legend: {\n      display: false,\n    },\n    tooltip: {\n      enabled: true,\n    },\n  },\n}\n</script>\n"
  },
  {
    "path": "src/pages/admin/dashboard/cards/ProjectTable.vue",
    "content": "<script setup lang=\"ts\">\nimport { defineVaDataTableColumns } from 'vuestic-ui'\nimport UserAvatar from '../../../users/widgets/UserAvatar.vue'\nimport ProjectStatusBadge from '../../../projects/components/ProjectStatusBadge.vue'\nimport { useProjects } from '../../../projects/composables/useProjects'\nimport { Pagination } from '../../../../data/pages/projects'\nimport { ref } from 'vue'\nimport { useProjectUsers } from '../../../projects/composables/useProjectUsers'\n\nconst columns = defineVaDataTableColumns([\n  { label: 'Name', key: 'project_name', sortable: true },\n  { label: 'Status', key: 'status', sortable: true },\n  { label: 'Team', key: 'team', sortable: true },\n])\n\nconst pagination = ref<Pagination>({ page: 1, perPage: 5, total: 0 })\nconst { projects, isLoading, sorting } = useProjects({\n  pagination,\n})\n\nconst { getTeamOptions, getUserById } = useProjectUsers()\n</script>\n\n<template>\n  <VaCard>\n    <VaCardTitle class=\"flex items-start justify-between\">\n      <h1 class=\"card-title text-secondary font-bold uppercase\">Projects</h1>\n      <VaButton preset=\"primary\" size=\"small\" to=\"/projects\">View all projects</VaButton>\n    </VaCardTitle>\n    <VaCardContent>\n      <div v-if=\"projects.length > 0\">\n        <VaDataTable\n          v-model:sort-by=\"sorting.sortBy\"\n          v-model:sorting-order=\"sorting.sortingOrder\"\n          :items=\"projects\"\n          :columns=\"columns\"\n          :loading=\"isLoading\"\n        >\n          <template #cell(project_name)=\"{ rowData }\">\n            <div class=\"ellipsis max-w-[230px] lg:max-w-[450px]\">\n              {{ rowData.project_name }}\n            </div>\n          </template>\n          <template #cell(project_owner)=\"{ rowData }\">\n            <div class=\"flex items-center gap-2 ellipsis max-w-[230px]\">\n              <UserAvatar\n                v-if=\"getUserById(rowData.project_owner)\"\n                :user=\"getUserById(rowData.project_owner)!\"\n                size=\"small\"\n              />\n              {{ getUserById(rowData.project_owner)?.fullname }}\n            </div>\n          </template>\n          <template #cell(team)=\"{ rowData: project }\">\n            <VaAvatarGroup size=\"small\" :options=\"getTeamOptions(project.team)\" :max=\"2\" />\n          </template>\n          <template #cell(status)=\"{ rowData: project }\">\n            <ProjectStatusBadge :status=\"project.status\" />\n          </template>\n        </VaDataTable>\n      </div>\n      <div v-else class=\"p-4 flex justify-center items-center text-[var(--va-secondary)]\">No projects</div>\n    </VaCardContent>\n  </VaCard>\n</template>\n"
  },
  {
    "path": "src/pages/admin/dashboard/cards/RegionRevenue.vue",
    "content": "<template>\n  <VaCard>\n    <VaCardTitle class=\"flex justify-between\">\n      <h1 class=\"card-title text-secondary font-bold uppercase\">Revenue by Top Regions</h1>\n    </VaCardTitle>\n    <VaCardContent class=\"flex flex-col gap-1\">\n      <div class=\"flex justify-between\">\n        <VaButtonToggle v-model=\"selectedPeriod\" :options=\"periods\" color=\"background-element\" size=\"small\" />\n\n        <VaButton preset=\"primary\" size=\"small\" @click=\"exportAsCSV\"> Export </VaButton>\n      </div>\n\n      <VaDataTable\n        class=\"region-revenue-table\"\n        :columns=\"[\n          { key: 'name', label: 'Top Region' },\n          { key: 'revenue', label: 'Revenue', align: 'right' },\n        ]\"\n        :items=\"data\"\n      >\n        <template #cell(revenue)=\"{ rowData }\"> ${{ rowData[`revenue${selectedPeriod}`] }} </template>\n      </VaDataTable>\n    </VaCardContent>\n  </VaCard>\n</template>\n\n<script setup lang=\"ts\">\nimport { ref, Ref } from 'vue'\nimport { downloadAsCSV } from '../../../../services/toCSV'\n\nconst selectedPeriod = ref('Today') as Ref<'Today' | 'Week' | 'Month'>\nconst periods = ['Today', 'Week', 'Month'].map((period) => ({ label: period, value: period }))\n\nconst data = [\n  {\n    name: 'Japan',\n    revenueToday: '4,748,454',\n    revenueWeek: '30,000,000',\n    revenueMonth: '120,000,000',\n  },\n  {\n    name: 'United Kingdom',\n    revenueToday: '405,748',\n    revenueWeek: '2,500,000',\n    revenueMonth: '10,000,000',\n  },\n  {\n    name: 'United States',\n    revenueToday: '308,536',\n    revenueWeek: '1,800,000',\n    revenueMonth: '8,000,000',\n  },\n  {\n    name: 'China',\n    revenueToday: '250,963',\n    revenueWeek: '1,600,000',\n    revenueMonth: '7,000,000',\n  },\n  {\n    name: 'Canada',\n    revenueToday: '29,415',\n    revenueWeek: '180,000',\n    revenueMonth: '800,000',\n  },\n  {\n    name: 'Australia',\n    revenueToday: '15,000',\n    revenueWeek: '100,000',\n    revenueMonth: '500,000',\n  },\n  {\n    name: 'India',\n    revenueToday: '10,000',\n    revenueWeek: '50,000',\n    revenueMonth: '200,000',\n  },\n]\n\nconst exportAsCSV = () => {\n  downloadAsCSV(data, 'region-revenue')\n}\n</script>\n\n<style lang=\"scss\" scoped>\n.region-revenue-table {\n  ::v-deep(tbody) {\n    tr {\n      border-top: 1px solid var(--va-background-border);\n    }\n  }\n}\n</style>\n"
  },
  {
    "path": "src/pages/admin/dashboard/cards/RevenueByLocationMap.vue",
    "content": "<template>\n  <VaCard class=\"flex flex-col\">\n    <VaCardTitle class=\"flex items-center justify-between\">\n      <h1 class=\"card-title text-secondary font-bold uppercase\">Revenue by location</h1>\n    </VaCardTitle>\n    <VaCardContent class=\"flex-1 flex overflow-hidden\">\n      <VaAspectRatio class=\"w-full md:min-h-72 overflow-hidden relative flex items-center\">\n        <Map v-if=\"geoJson\" :data=\"data\" class=\"dashboard-map flex-1 h-full\" />\n        <VaProgressCircle v-else indeterminate class=\"absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2\" />\n      </VaAspectRatio>\n    </VaCardContent>\n  </VaCard>\n</template>\n\n<script lang=\"ts\" setup>\nimport { ref, computed, onMounted } from 'vue'\nimport { VaCard } from 'vuestic-ui'\nimport type countriesGeoJSON from '../../../../data/geo.json'\nimport Map from '../../../../components/va-charts/chart-types/Map.vue'\nimport type { ChartData } from 'chart.js'\n\nconst getRevenue = (countryName: string) => {\n  if (['United States of America', 'Canada', 'United Kingdom', 'China', 'Japan'].includes(countryName)) {\n    return 10\n  }\n\n  if (['Antarctica', 'Greenland'].includes(countryName)) {\n    return 0\n  }\n\n  return Math.random() * 10\n}\n\nconst geoJson = ref<typeof countriesGeoJSON | null>(null)\n\nonMounted(async () => {\n  geoJson.value = (await import('../../../../data/geo.json')).default\n})\n\nconst data = computed<ChartData<'choropleth', { feature: any; value: number }[], string>>(() => {\n  if (!geoJson.value) {\n    return {\n      labels: [],\n      datasets: [],\n    }\n  }\n\n  return {\n    labels: geoJson.value.features.map((d) => d.properties.name),\n    datasets: [\n      {\n        label: 'Countries',\n        data: geoJson.value.features.map((d) => ({ feature: d, value: getRevenue(d.properties.name) })),\n      },\n    ],\n  }\n})\n</script>\n\n<style lang=\"scss\" scoped>\n.va-card--flex {\n  display: flex;\n  flex-direction: column;\n}\n</style>\n"
  },
  {
    "path": "src/pages/admin/dashboard/cards/RevenueReport.vue",
    "content": "<template>\n  <VaCard class=\"flex flex-col\">\n    <VaCardTitle class=\"flex items-start justify-between\">\n      <h1 class=\"card-title text-secondary font-bold uppercase\">Revenue Report</h1>\n      <div class=\"flex gap-2\">\n        <VaSelect v-model=\"selectedMonth\" preset=\"small\" :options=\"monthsWithCurrentYear\" class=\"w-24\" />\n        <VaButton class=\"h-2\" size=\"small\" preset=\"primary\" @click=\"exportAsCSV\">Export</VaButton>\n      </div>\n    </VaCardTitle>\n    <VaCardContent class=\"flex flex-col-reverse md:flex-row md:items-center justify-between gap-5 h-full\">\n      <section class=\"flex flex-col items-start w-full sm:w-1/3 md:w-2/5 lg:w-1/4 gap-2 md:gap-8 pl-4\">\n        <div>\n          <p class=\"text-xl font-semibold\">{{ formatMoney(totalEarnings) }}</p>\n          <p class=\"whitespace-nowrap mt-2\">Total earnings</p>\n        </div>\n        <div class=\"flex flex-col sm:flex-col gap-2 md:gap-8 w-full\">\n          <div>\n            <div class=\"flex items-center\">\n              <span class=\"inline-block w-2 h-2 mr-2 -ml-4\" :style=\"{ backgroundColor: earningsColor }\"></span>\n              <span class=\"text-secondary\">Earnings this month</span>\n            </div>\n            <div class=\"mt-2 text-xl font-semibold\">{{ formatMoney(earningsForSelectedMonth.earning) }}</div>\n          </div>\n          <div>\n            <div class=\"flex items-center\">\n              <span class=\"inline-block w-2 h-2 mr-2 -ml-4\" :style=\"{ backgroundColor: expensesColor }\"></span>\n              <span class=\"text-secondary\">Expense this month</span>\n            </div>\n            <div class=\"mt-2 text-xl font-semibold\">{{ formatMoney(earningsForSelectedMonth.expenses) }}</div>\n          </div>\n        </div>\n      </section>\n      <RevenueReportChart\n        class=\"w-2/3 md:w-3/5 lg:w-3/4 h-full min-h-72 sm:min-h-32 pt-4\"\n        :revenues=\"revenues\"\n        :months=\"months\"\n      />\n    </VaCardContent>\n  </VaCard>\n</template>\n\n<script lang=\"ts\" setup>\nimport { ref, computed } from 'vue'\nimport { VaCard } from 'vuestic-ui'\nimport RevenueReportChart from './RevenueReportChart.vue'\nimport { downloadAsCSV } from '../../../../services/toCSV'\nimport {\n  earningsColor,\n  expensesColor,\n  months,\n  generateRevenues,\n  getRevenuePerMonth,\n  formatMoney,\n} from '../../../../data/charts/revenueChartData'\n\nconst revenues = generateRevenues(months)\n\nconst currentYear = new Date().getFullYear()\nconst monthsWithCurrentYear = months.map((month) => `${month} ${currentYear}`)\n\nconst selectedMonth = ref(monthsWithCurrentYear[0])\n\nconst earningsForSelectedMonth = computed(() => getRevenuePerMonth(selectedMonth.value.split(' ')[0], revenues))\nconst totalEarnings = computed(() => {\n  return earningsForSelectedMonth.value.earning + earningsForSelectedMonth.value.expenses\n})\n\nconst exportAsCSV = () => {\n  downloadAsCSV(revenues, 'revenue-report')\n}\n</script>\n"
  },
  {
    "path": "src/pages/admin/dashboard/cards/RevenueReportChart.vue",
    "content": "<template>\n  <div class=\"flex justify-center w-full h-full overflow-hidden relative\">\n    <canvas ref=\"canvas\" style=\"max-width: 100%\"></canvas>\n  </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { ref, onMounted, nextTick } from 'vue'\nimport { Chart, registerables } from 'chart.js'\n\nimport type { Revenues } from '../../../../data/charts/revenueChartData'\nimport { earningsColor, expensesColor, formatMoney } from '../../../../data/charts/revenueChartData'\n\nconst { revenues, months } = defineProps<{\n  months: string[]\n  revenues: Revenues[]\n}>()\n\nChart.register(...registerables)\n\nconst BR_THICKNESS = 4\n\nChart.register([\n  {\n    id: 'background-color',\n    beforeDatasetDraw: function (chart) {\n      const ctx = chart.ctx\n      const config = chart.config\n\n      config.data.datasets.forEach(function (dataset, datasetIndex) {\n        const meta = chart.getDatasetMeta(datasetIndex)\n        if (meta.type === 'bar') {\n          const bgColor = earningsColor\n\n          // Loop through each bar in the dataset\n          meta.data.forEach(function (bar) {\n            ctx.fillStyle = bgColor\n            ctx.fillRect(bar.x - BR_THICKNESS / 2, 0, BR_THICKNESS, chart.chartArea.bottom)\n          })\n        }\n      })\n    },\n  },\n])\n\nconst canvas = ref<HTMLCanvasElement | null>(null)\n\nconst doShowChart = ref(false)\n\nonMounted(() => {\n  if (canvas.value) {\n    const ctx = canvas.value.getContext('2d')\n    if (ctx) {\n      new Chart(ctx, {\n        type: 'bar',\n        data: {\n          labels: months,\n          datasets: [\n            {\n              // Show relative expenses ratio\n              data: revenues.map(({ earning, expenses }) => (expenses / earning) * 100),\n              backgroundColor: expensesColor,\n              barThickness: BR_THICKNESS,\n            },\n          ],\n        },\n        options: {\n          maintainAspectRatio: false,\n          plugins: {\n            legend: {\n              display: false,\n            },\n          },\n          scales: {\n            x: {\n              stacked: true,\n              grid: {\n                display: false,\n              },\n              border: {\n                width: 0,\n              },\n            },\n            y: {\n              display: false,\n              beginAtZero: true,\n              ticks: {\n                callback: function (value) {\n                  return formatMoney(Number(value))\n                },\n              },\n            },\n          },\n        },\n      })\n    }\n  }\n\n  nextTick(() => {\n    doShowChart.value = true\n  })\n})\n</script>\n\n<style lang=\"scss\" scoped>\ncanvas {\n  position: absolute;\n  height: 100%;\n  width: 100%;\n}\n</style>\n"
  },
  {
    "path": "src/pages/admin/dashboard/cards/Timeline.vue",
    "content": "<script setup lang=\"ts\">\nimport VaTimelineItem from '../../../../components/va-timeline-item.vue'\n</script>\n\n<template>\n  <VaCard>\n    <VaCardTitle class=\"flex justify-between\">\n      <h1 class=\"card-title text-secondary font-bold uppercase\">Timeline</h1>\n    </VaCardTitle>\n    <VaCardContent>\n      <table class=\"mt-4\">\n        <tbody>\n          <VaTimelineItem date=\"25m ago\">\n            <RouterLink class=\"va-link font-semibold\" to=\"/users\">Donald</RouterLink> updated the status of\n            <RouterLink class=\"va-link font-semibold\" to=\"/users\">Refund #1234</RouterLink> to awaiting customer\n            response\n          </VaTimelineItem>\n          <VaTimelineItem date=\"1h ago\">\n            <RouterLink class=\"va-link font-semibold\" to=\"/users\">Lycy Peterson</RouterLink> was added to the group,\n            group name is Overtake\n          </VaTimelineItem>\n          <VaTimelineItem date=\"2h ago\">\n            <RouterLink class=\"va-link font-semibold\" to=\"/users\">Joseph Rust</RouterLink> opened new showcase\n            <RouterLink class=\"va-link font-semibold\" to=\"/users\">Mannat #112233</RouterLink> with theme market\n          </VaTimelineItem>\n          <VaTimelineItem date=\"3d ago\">\n            <RouterLink class=\"va-link font-semibold\" to=\"/users\">Donald</RouterLink> updated the status to awaiting\n            customer response\n          </VaTimelineItem>\n          <VaTimelineItem date=\"Nov 14, 2023\">\n            <RouterLink class=\"va-link font-semibold\" to=\"/users\">Lycy Peterson</RouterLink> was added to the group\n          </VaTimelineItem>\n          <VaTimelineItem date=\"Nov 14, 2023\">\n            <RouterLink class=\"va-link font-semibold\" to=\"/users\">Dan Rya</RouterLink> was added to the group\n          </VaTimelineItem>\n          <VaTimelineItem date=\"Nov 15, 2023\">\n            Project <RouterLink class=\"va-link font-semibold\" to=\"/projects\">Vuestic 2023</RouterLink> was created\n          </VaTimelineItem>\n        </tbody>\n      </table>\n    </VaCardContent>\n  </VaCard>\n</template>\n"
  },
  {
    "path": "src/pages/admin/dashboard/cards/YearlyBreakup.vue",
    "content": "<template>\n  <VaCard>\n    <VaCardTitle class=\"pb-0!\">\n      <h1 class=\"card-title text-secondary font-bold uppercase\">Yearly Breakup</h1>\n    </VaCardTitle>\n    <VaCardContent class=\"flex flex-row gap-1\">\n      <section class=\"w-1/2\">\n        <div class=\"text-xl font-bold mb-2\">$36,358</div>\n        <p class=\"text-xs text-success whitespace-nowrap\">\n          <VaIcon name=\"arrow_outward\" />\n          +2,5%\n          <span class=\"text-secondary\"> last year</span>\n        </p>\n        <div class=\"my-4 gap-2 flex flex-col\">\n          <div class=\"flex items-center\">\n            <span class=\"inline-block w-2 h-2 mr-2\" :style=\"{ backgroundColor: earningsBackground }\"></span>\n            <span class=\"text-secondary\">Earnings</span>\n          </div>\n          <div class=\"flex items-center\">\n            <span class=\"inline-block w-2 h-2 mr-2\" :style=\"{ backgroundColor: profitBackground }\"></span>\n            <span class=\"text-secondary\">Profit</span>\n          </div>\n        </div>\n      </section>\n      <div class=\"w-1/2 flex items-center h-full flex-1 lg:pl-16 pl-2 -mr-1\">\n        <VaChart\n          v-if=\"chartData\"\n          :data=\"chartData\"\n          class=\"chart chart--donut h-[90px] w-[90px]\"\n          type=\"doughnut\"\n          :options=\"options\"\n        />\n      </div>\n    </VaCardContent>\n  </VaCard>\n</template>\n\n<script setup lang=\"ts\">\nimport { VaCard } from 'vuestic-ui'\nimport VaChart from '../../../../components/va-charts/VaChart.vue'\nimport { useChartData } from '../../../../data/charts/composables/useChartData'\nimport { doughnutChartData, profitBackground, earningsBackground } from '../../../../data/charts/doughnutChartData'\nimport { doughnutConfig } from '../../../../components/va-charts/vaChartConfigs'\nimport { ChartOptions } from 'chart.js'\nimport { externalTooltipHandler } from '../../../../components/va-charts/external-tooltip'\n\nconst chartData = useChartData(doughnutChartData)\n\nconst options: ChartOptions<'doughnut'> = {\n  ...doughnutConfig,\n  plugins: {\n    ...doughnutConfig.plugins,\n    tooltip: {\n      // Chart to small to show tooltips\n      enabled: false,\n      position: 'nearest',\n      external: externalTooltipHandler,\n    },\n  },\n  circumference: 360 * (chartData.value.datasets[0].data.reduce((acc: number, d: number) => acc + d, 0) / 800),\n}\n</script>\n"
  },
  {
    "path": "src/pages/admin/pages/404PagesPage.vue",
    "content": "<template>\n  <div class=\"grid grid-cols-12 gap-6\">\n    <VaCard\n      v-for=\"(item, index) in items\"\n      :key=\"index\"\n      class=\"not-found-pages__cards va-text-center col-span-12 sm:col-span-6 lg:col-span-4 xl:col-span-3\"\n    >\n      <VaImage :src=\"item.imageUrl\" style=\"max-height: 200px\" />\n      <VaCardContent>\n        {{ item.label }}\n        <div class=\"not-found-pages__button-container pt-4 mb-0\">\n          <VaButton :to=\"{ name: item.buttonTo }\">\n            {{ 'View Example' }}\n          </VaButton>\n        </div>\n      </VaCardContent>\n    </VaCard>\n  </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { ref } from 'vue'\n\nconst items = ref([\n  {\n    imageUrl: 'https://i.imgur.com/GzUR0Wz.png',\n    label: 'Advanced layouts',\n    buttonTo: 'not-found-advanced',\n  },\n  {\n    imageUrl: 'https://i.imgur.com/HttcXPi.png',\n    label: 'Simple',\n    buttonTo: 'not-found-simple',\n  },\n  {\n    imageUrl: 'https://i.imgur.com/dlcZMiG.png',\n    label: 'Custom image',\n    buttonTo: 'not-found-custom',\n  },\n  {\n    imageUrl: 'https://i.imgur.com/qcOlDz7.png',\n    label: 'Large text heading',\n    buttonTo: 'not-found-large-text',\n  },\n])\n</script>\n"
  },
  {
    "path": "src/pages/auth/CheckTheEmail.vue",
    "content": "<template>\n  <div>\n    <h1 class=\"font-semibold text-4xl mb-4\">Check the email</h1>\n    <p class=\"text-base mb-4 leading-5\">\n      Password reset instructions have been sent to your email. Check your inbox, including the spam folder if needed.\n      For assistance, <span class=\"va-link\">contact support</span>.\n    </p>\n\n    <div class=\"flex justify-center mt-4\">\n      <VaButton :to=\"{ name: 'login' }\" class=\"w-full\">Back to login</VaButton>\n    </div>\n  </div>\n</template>\n\n<script lang=\"ts\" setup></script>\n"
  },
  {
    "path": "src/pages/auth/Login.vue",
    "content": "<template>\n  <VaForm ref=\"form\" @submit.prevent=\"submit\">\n    <h1 class=\"font-semibold text-4xl mb-4\">Log in</h1>\n    <p class=\"text-base mb-4 leading-5\">\n      New to Vuestic?\n      <RouterLink :to=\"{ name: 'signup' }\" class=\"font-semibold text-primary\">Sign up</RouterLink>\n    </p>\n    <VaInput\n      v-model=\"formData.email\"\n      :rules=\"[validators.required, validators.email]\"\n      class=\"mb-4\"\n      label=\"Email\"\n      type=\"email\"\n    />\n    <VaValue v-slot=\"isPasswordVisible\" :default-value=\"false\">\n      <VaInput\n        v-model=\"formData.password\"\n        :rules=\"[validators.required]\"\n        :type=\"isPasswordVisible.value ? 'text' : 'password'\"\n        class=\"mb-4\"\n        label=\"Password\"\n        @clickAppendInner.stop=\"isPasswordVisible.value = !isPasswordVisible.value\"\n      >\n        <template #appendInner>\n          <VaIcon\n            :name=\"isPasswordVisible.value ? 'mso-visibility_off' : 'mso-visibility'\"\n            class=\"cursor-pointer\"\n            color=\"secondary\"\n          />\n        </template>\n      </VaInput>\n    </VaValue>\n\n    <div class=\"auth-layout__options flex flex-col sm:flex-row items-start sm:items-center justify-between\">\n      <VaCheckbox v-model=\"formData.keepLoggedIn\" class=\"mb-2 sm:mb-0\" label=\"Keep me signed in on this device\" />\n      <RouterLink :to=\"{ name: 'recover-password' }\" class=\"mt-2 sm:mt-0 sm:ml-1 font-semibold text-primary\">\n        Forgot password?\n      </RouterLink>\n    </div>\n\n    <div class=\"flex justify-center mt-4\">\n      <VaButton class=\"w-full\" @click=\"submit\"> Login</VaButton>\n    </div>\n  </VaForm>\n</template>\n\n<script lang=\"ts\" setup>\nimport { reactive } from 'vue'\nimport { useRouter } from 'vue-router'\nimport { useForm, useToast } from 'vuestic-ui'\nimport { validators } from '../../services/utils'\n\nconst { validate } = useForm('form')\nconst { push } = useRouter()\nconst { init } = useToast()\n\nconst formData = reactive({\n  email: '',\n  password: '',\n  keepLoggedIn: false,\n})\n\nconst submit = () => {\n  if (validate()) {\n    init({ message: \"You've successfully logged in\", color: 'success' })\n    push({ name: 'dashboard' })\n  }\n}\n</script>\n"
  },
  {
    "path": "src/pages/auth/RecoverPassword.vue",
    "content": "<template>\n  <VaForm ref=\"passwordForm\" @submit.prevent=\"submit\">\n    <h1 class=\"font-semibold text-4xl mb-4\">Forgot your password?</h1>\n    <p class=\"text-base mb-4 leading-5\">\n      If you've forgotten your password, don't worry. Simply enter your email address below, and we'll send you an email\n      with a temporary password. Restoring access to your account has never been easier.\n    </p>\n    <VaInput\n      v-model=\"email\"\n      :rules=\"[(v) => !!v || 'Email field is required']\"\n      class=\"mb-4\"\n      label=\"Enter your email\"\n      type=\"email\"\n    />\n    <VaButton class=\"w-full mb-2\" @click=\"submit\">Send password</VaButton>\n    <VaButton :to=\"{ name: 'login' }\" class=\"w-full\" preset=\"secondary\" @click=\"submit\">Go back</VaButton>\n  </VaForm>\n</template>\n\n<script lang=\"ts\" setup>\nimport { ref } from 'vue'\nimport { useForm } from 'vuestic-ui'\nimport { useRouter } from 'vue-router'\n\nconst email = ref('')\nconst form = useForm('passwordForm')\nconst router = useRouter()\n\nconst submit = () => {\n  if (form.validate()) {\n    router.push({ name: 'recover-password-email' })\n  }\n}\n</script>\n"
  },
  {
    "path": "src/pages/auth/Signup.vue",
    "content": "<template>\n  <VaForm ref=\"form\" @submit.prevent=\"submit\">\n    <h1 class=\"font-semibold text-4xl mb-4\">Sign up</h1>\n    <p class=\"text-base mb-4 leading-5\">\n      Have an account?\n      <RouterLink :to=\"{ name: 'login' }\" class=\"font-semibold text-primary\">Login</RouterLink>\n    </p>\n    <VaInput\n      v-model=\"formData.email\"\n      :rules=\"[(v) => !!v || 'Email field is required', (v) => /.+@.+\\..+/.test(v) || 'Email should be valid']\"\n      class=\"mb-4\"\n      label=\"Email\"\n      type=\"email\"\n    />\n    <VaValue v-slot=\"isPasswordVisible\" :default-value=\"false\">\n      <VaInput\n        ref=\"password1\"\n        v-model=\"formData.password\"\n        :rules=\"passwordRules\"\n        :type=\"isPasswordVisible.value ? 'text' : 'password'\"\n        class=\"mb-4\"\n        label=\"Password\"\n        messages=\"Password should be 8+ characters: letters, numbers, and special characters.\"\n        @clickAppendInner.stop=\"isPasswordVisible.value = !isPasswordVisible.value\"\n      >\n        <template #appendInner>\n          <VaIcon\n            :name=\"isPasswordVisible.value ? 'mso-visibility_off' : 'mso-visibility'\"\n            class=\"cursor-pointer\"\n            color=\"secondary\"\n          />\n        </template>\n      </VaInput>\n      <VaInput\n        ref=\"password2\"\n        v-model=\"formData.repeatPassword\"\n        :rules=\"[\n          (v) => !!v || 'Repeat Password field is required',\n          (v) => v === formData.password || 'Passwords don\\'t match',\n        ]\"\n        :type=\"isPasswordVisible.value ? 'text' : 'password'\"\n        class=\"mb-4\"\n        label=\"Repeat Password\"\n        @clickAppendInner.stop=\"isPasswordVisible.value = !isPasswordVisible.value\"\n      >\n        <template #appendInner>\n          <VaIcon\n            :name=\"isPasswordVisible.value ? 'mso-visibility_off' : 'mso-visibility'\"\n            class=\"cursor-pointer\"\n            color=\"secondary\"\n          />\n        </template>\n      </VaInput>\n    </VaValue>\n\n    <div class=\"flex justify-center mt-4\">\n      <VaButton class=\"w-full\" @click=\"submit\"> Create account</VaButton>\n    </div>\n  </VaForm>\n</template>\n\n<script lang=\"ts\" setup>\nimport { reactive } from 'vue'\nimport { useRouter } from 'vue-router'\nimport { useForm, useToast } from 'vuestic-ui'\n\nconst { validate } = useForm('form')\nconst { push } = useRouter()\nconst { init } = useToast()\n\nconst formData = reactive({\n  email: '',\n  password: '',\n  repeatPassword: '',\n})\n\nconst submit = () => {\n  if (validate()) {\n    init({\n      message: \"You've successfully signed up\",\n      color: 'success',\n    })\n    push({ name: 'dashboard' })\n  }\n}\n\nconst passwordRules: ((v: string) => boolean | string)[] = [\n  (v) => !!v || 'Password field is required',\n  (v) => (v && v.length >= 8) || 'Password must be at least 8 characters long',\n  (v) => (v && /[A-Za-z]/.test(v)) || 'Password must contain at least one letter',\n  (v) => (v && /\\d/.test(v)) || 'Password must contain at least one number',\n  (v) => (v && /[!@#$%^&*(),.?\":{}|<>]/.test(v)) || 'Password must contain at least one special character',\n]\n</script>\n"
  },
  {
    "path": "src/pages/billing/BillingPage.vue",
    "content": "<template>\n  <h1 class=\"h1\">Billing information</h1>\n\n  <VaSkeletonGroup v-if=\"cardStore.loading\">\n    <VaSkeleton class=\"mb-4\" height=\"160px\" variant=\"squared\" />\n    <VaSkeleton class=\"mb-4\" height=\"160px\" variant=\"squared\" />\n    <VaSkeleton height=\"360px\" variant=\"squared\" />\n  </VaSkeletonGroup>\n\n  <template v-else>\n    <MembeshipTier />\n    <PaymentInfo />\n    <Invoices />\n  </template>\n</template>\n\n<script lang=\"ts\" setup>\nimport MembeshipTier from './MembeshipTier.vue'\nimport PaymentInfo from './PaymentInfo.vue'\nimport { usePaymentCardsStore } from '../../stores/payment-cards'\nimport Invoices from './Invoices.vue'\n\nconst cardStore = usePaymentCardsStore()\ncardStore.load()\n</script>\n"
  },
  {
    "path": "src/pages/billing/Invoices.vue",
    "content": "<template>\n  <VaCard class=\"mb-6\">\n    <VaCardContent>\n      <h2 class=\"page-sub-title\">Invoices</h2>\n      <template v-for=\"(item, index) in itemsInView\" :key=\"item.id\">\n        <div class=\"flex items-center justify-between md:justify-items-stretch\">\n          <div class=\"flex items-center w-48\">\n            {{ item.date }}\n          </div>\n          <div class=\"w-20\">\n            {{ item.amount }}\n          </div>\n          <div>\n            <VaButton preset=\"primary\" @click=\"download\">Download</VaButton>\n          </div>\n        </div>\n\n        <VaDivider v-if=\"index !== itemsInView.length - 1\" />\n      </template>\n    </VaCardContent>\n    <VaCardActions vertical class=\"flex flex-wrap content-center mt-4\">\n      <VaButton v-if=\"numberOfInvoicesInVIew < maxNumberOfInvoices\" preset=\"primary\" @click=\"increaseNumberOfInvoices()\"\n        >Show more\n      </VaButton>\n      <VaButton v-else preset=\"primary\" @click=\"numberOfInvoicesInVIew = minNumberOfInvoices\">Show less </VaButton>\n    </VaCardActions>\n  </VaCard>\n</template>\n\n<script lang=\"ts\" setup>\nimport { computed, ref } from 'vue'\nimport { useToast } from 'vuestic-ui'\nimport { useI18n } from 'vue-i18n'\n\nconst { init } = useToast()\nconst { locale } = useI18n()\n\nconst minNumberOfInvoices = 7\nconst maxNumberOfInvoices = 20\n\nconst numberOfInvoicesInVIew = ref(minNumberOfInvoices)\n\nconst increaseNumberOfInvoices = (step = 10) => {\n  numberOfInvoicesInVIew.value = Math.min(numberOfInvoicesInVIew.value + step, maxNumberOfInvoices)\n}\n\nfunction getRandomDateInBetween(start: string, end: string): Date {\n  const startDate = Date.parse(start)\n  const endDate = Date.parse(end)\n\n  return new Date(Math.floor(Math.random() * (endDate - startDate + 1) + startDate))\n}\n\nfunction getLanguageCode(): string {\n  const countryCodeToLanguageCodeMapping: Record<any, string> = {\n    br: 'pt',\n    cn: 'zh-CN',\n    gb: 'en-GB',\n    ir: 'fa',\n  }\n\n  return countryCodeToLanguageCodeMapping[locale.value] || 'en-GB'\n}\n\nfunction getRandomDateString(): string {\n  const startDate = '2020-01-01'\n  const endDate = '2023-12-01'\n\n  const dateFormatOptions: Intl.DateTimeFormatOptions = {\n    year: 'numeric',\n    month: 'long',\n    day: 'numeric',\n  }\n\n  return getRandomDateInBetween(startDate, endDate).toLocaleDateString(getLanguageCode(), dateFormatOptions)\n}\n\nconst allItems = Array.from({ length: maxNumberOfInvoices }, (_, i) => ({\n  id: i,\n  date: getRandomDateString(),\n  amount: `$${(Math.random() * 100).toFixed(2)}`,\n}))\n\nconst itemsInView = computed(() => {\n  return allItems.slice(0, numberOfInvoicesInVIew.value)\n})\n\nconst download = () => {\n  init({\n    message: \"Request received. We'll email your invoice once we've completed data collection.\",\n    color: 'success',\n  })\n}\n</script>\n"
  },
  {
    "path": "src/pages/billing/MembeshipTier.vue",
    "content": "<template>\n  <VaCard class=\"mb-6\">\n    <VaCardContent>\n      <h2 class=\"page-sub-title\">Membership tier</h2>\n      <template v-for=\"(plan, index) in plans\" :key=\"plan.id\">\n        <div class=\"flex items-center justify-between md:justify-items-stretch\">\n          <div\n            class=\"flex grow flex-col space-y-2 md:flex-row md:space-y-0 md:space-x-1 justify-between items-start md:items-center\"\n          >\n            <div class=\"flex items-center md:w-48\">\n              <div class=\"font-bold\">{{ plan.name }}</div>\n              <VaBadge v-if=\"plan.type === 'current'\" class=\"ml-2\" color=\"success\" text=\"Selected\" />\n            </div>\n            <div class=\"md:w-48\">\n              <p class=\"mb-1\">{{ plan.padletsTotal }} padlets</p>\n              <p>{{ plan.uploadLimit }}&nbsp;/upload</p>\n            </div>\n            <div class=\"md:w-48\">\n              <template v-if=\"plan.priceMonth\">\n                <p class=\"mb-1\">{{ plan.priceMonth }}&nbsp;/month</p>\n                <p>{{ plan.priceYear }}&nbsp;/year</p>\n              </template>\n              <p v-else>Free</p>\n            </div>\n          </div>\n          <div class=\"md:w-48 flex justify-end\">\n            <div v-if=\"plan.type === 'current'\" class=\"font-bold\">{{ plan.padletsUsed }} padlets used</div>\n            <VaButton v-else-if=\"plan.type === 'upgrade'\" @click=\"switchPlan(plan.id)\">Upgrade</VaButton>\n            <VaButton v-else preset=\"primary\" @click=\"switchPlan(plan.id)\">Downgrade</VaButton>\n          </div>\n        </div>\n\n        <VaDivider v-if=\"index !== plans.length - 1\" />\n      </template>\n    </VaCardContent>\n  </VaCard>\n</template>\n\n<script lang=\"ts\" setup>\nimport { useToast } from 'vuestic-ui'\nimport { reactive } from 'vue'\n\nconst { init } = useToast()\n\ntype MembershipTier = {\n  id: string\n  name: string\n  type: 'upgrade' | 'downgrade' | 'current'\n  padletsUsed: number\n  padletsTotal: string\n  priceMonth?: string\n  priceYear?: string\n  uploadLimit: string\n}\n\nconst plans = reactive<MembershipTier[]>([\n  {\n    id: '1',\n    name: 'Platinum',\n    type: 'upgrade',\n    padletsUsed: 0,\n    padletsTotal: 'Unlimited',\n    priceMonth: '$9.99',\n    priceYear: '$99.99',\n    uploadLimit: '500MB',\n  },\n  {\n    id: '2',\n    name: 'Gold',\n    type: 'current',\n    padletsUsed: 19,\n    padletsTotal: '20',\n    priceMonth: '$6.99',\n    priceYear: '$69.99',\n    uploadLimit: '100MB',\n  },\n  {\n    id: '3',\n    name: 'Neon',\n    type: 'downgrade',\n    padletsUsed: 0,\n    padletsTotal: '3',\n    priceMonth: undefined,\n    priceYear: undefined,\n    uploadLimit: '20MB',\n  },\n])\n\nconst switchPlan = (planId: string) => {\n  plans.forEach((item, index) => {\n    if (item.id === planId) {\n      // Set the selected plan to 'current'\n      item.type = 'current'\n    } else {\n      // Determine if other plans are an 'upgrade' or 'downgrade'\n      const selectedIndex = plans.findIndex((plan) => plan.id === planId)\n      item.type = index < selectedIndex ? 'upgrade' : 'downgrade'\n    }\n  })\n  init({\n    message: \"You've successfully changed the membership tier\",\n    color: 'success',\n  })\n}\n</script>\n"
  },
  {
    "path": "src/pages/billing/PaymentInfo.vue",
    "content": "<template>\n  <VaCard class=\"mb-6\">\n    <VaCardContent>\n      <h2 class=\"page-sub-title\">Payment info</h2>\n\n      <div class=\"flex items-center justify-between md:justify-items-stretch\">\n        <div\n          class=\"flex grow flex-col space-y-2 md:flex-row md:space-y-0 md:space-x-1 justify-between items-start md:items-center\"\n        >\n          <div class=\"md:w-48\">\n            <p class=\"mb-1\">Payment plan</p>\n            <p class=\"font-bold\">\n              {{ paymentPlan.isYearly ? paymentPlan.priceYear : paymentPlan.priceMonth }}&nbsp;/{{\n                paymentPlan.isYearly ? 'yearly' : 'monthly'\n              }}\n            </p>\n          </div>\n        </div>\n\n        <div class=\"md:w-48 flex flex-col justify-end items-end\">\n          <VaButton preset=\"primary\" @click=\"togglePaymentPlanModal\">\n            Switch to {{ paymentPlan.isYearly ? 'monthly' : 'annual' }}\n          </VaButton>\n\n          <div v-if=\"!paymentPlan.isYearly\" class=\"mt-2 text-regularSmall\">\n            <span>{{ paymentPlan.priceYear }}&nbsp;/year</span>\n            <span class=\"text-danger ml-1\">save 16%</span>\n          </div>\n        </div>\n      </div>\n\n      <template v-if=\"paymentCard\">\n        <VaDivider />\n\n        <div class=\"flex items-center justify-between md:justify-items-stretch\">\n          <div\n            class=\"flex grow flex-col space-y-2 md:flex-row md:space-y-0 md:space-x-1 justify-between items-start md:items-center\"\n          >\n            <div class=\"md:w-48\">\n              <p class=\"mb-1\">Payment method</p>\n              <p class=\"font-bold capitalize\">{{ paymentCard.paymentSystem }} {{ paymentCard.cardNumberMasked }}</p>\n            </div>\n          </div>\n          <div class=\"md:w-48 flex justify-end\">\n            <VaButton :to=\"{ name: 'payment-methods' }\" preset=\"primary\">Payment preferences</VaButton>\n          </div>\n        </div>\n      </template>\n    </VaCardContent>\n  </VaCard>\n\n  <ChangeYourPaymentPlan\n    v-if=\"isChangeYourPaymentPlanModalOpen\"\n    :yearly-plan=\"paymentPlan.isYearly\"\n    @confirm=\"updatePaymentPlan\"\n    @cancel=\"togglePaymentPlanModal\"\n  />\n</template>\n\n<script lang=\"ts\" setup>\nimport { computed, ref } from 'vue'\nimport { usePaymentCardsStore } from '../../stores/payment-cards'\n\nimport ChangeYourPaymentPlan from './modals/ChangeYourPaymentPlan.vue'\n\nconst paymentPlan = ref({\n  id: '1',\n  name: 'Gold',\n  isYearly: false,\n  type: 'current',\n  padletsUsed: 19,\n  padletsTotal: '20',\n  priceMonth: '$6.99',\n  priceYear: '$69.99',\n  switchToYearlySave: '16%',\n  uploadLimit: '100MB',\n})\n\nconst cardStore = usePaymentCardsStore()\n\nconst isChangeYourPaymentPlanModalOpen = ref(false)\n\nconst paymentCard = computed(() => cardStore.currentPaymentCard)\nconst togglePaymentPlanModal = () => {\n  isChangeYourPaymentPlanModalOpen.value = !isChangeYourPaymentPlanModalOpen.value\n}\n\nconst updatePaymentPlan = () => {\n  paymentPlan.value.isYearly = !paymentPlan.value.isYearly\n  isChangeYourPaymentPlanModalOpen.value = false\n}\n</script>\n"
  },
  {
    "path": "src/pages/billing/modals/ChangeYourPaymentPlan.vue",
    "content": "<template>\n  <VaModal\n    :mobile-fullscreen=\"false\"\n    size=\"small\"\n    max-width=\"380px\"\n    hide-default-actions\n    model-value\n    close-button\n    @update:modelValue=\"emits('cancel')\"\n  >\n    <div class=\"space-y-6\">\n      <h3>\n        Are you sure you want to switch to the\n        <span class=\"font-bold text-primary\">{{ yearlyPlan ? 'monthly' : 'annual' }}</span>\n        plan?\n      </h3>\n      <div class=\"flex flex-col-reverse md:justify-end md:flex-row md:space-x-4\">\n        <VaButton preset=\"secondary\" color=\"secondary\" @click=\"emits('cancel')\"> Cancel</VaButton>\n        <VaButton class=\"mb-4 md:mb-0\" @click=\"confirm()\"> Update Plan</VaButton>\n      </div>\n    </div>\n  </VaModal>\n</template>\n<script lang=\"ts\" setup>\nimport { useToast } from 'vuestic-ui'\n\nconst { init } = useToast()\n\ndefineProps({\n  yearlyPlan: {\n    type: Boolean,\n    required: true,\n  },\n})\n\nconst emits = defineEmits(['cancel', 'confirm'])\n\nconst confirm = () => {\n  init({ message: \"You've successfully changed your payment plan\", color: 'success' })\n  emits('confirm')\n}\n</script>\n\n<style lang=\"scss\">\n.va-modal__inner {\n  min-width: 326px;\n}\n</style>\n"
  },
  {
    "path": "src/pages/billing/types.ts",
    "content": ""
  },
  {
    "path": "src/pages/faq/FaqPage.vue",
    "content": "<template>\n  <h1 class=\"page-title\">How can we help you?</h1>\n  <Categories />\n  <RequestDemo />\n  <Questions />\n  <Navigation />\n</template>\n\n<script setup>\nimport Categories from './widgets/Categories.vue'\nimport Questions from './widgets/Questions.vue'\nimport RequestDemo from './widgets/RequestDemo.vue'\nimport Navigation from './widgets/Navigation.vue'\n</script>\n"
  },
  {
    "path": "src/pages/faq/data/navigationLinks.json",
    "content": "{\n  \"Rising cost of living\": [\n    {\n      \"name\": \"Fraud and Security\"\n    },\n    {\n      \"name\": \"Secure Key help\"\n    },\n    {\n      \"name\": \"Fraud and common scams\"\n    },\n    {\n      \"name\": \"What we need to keep you safe\"\n    },\n    {\n      \"name\": \"How we keep you safe\"\n    },\n    {\n      \"name\": \"How to keep yourself safe\"\n    }\n  ],\n  \"Bank accounts\": [\n    {\n      \"name\": \"General bank account help\"\n    },\n    {\n      \"name\": \"Switching to first direct\"\n    },\n    {\n      \"name\": \"Statements and balances\"\n    },\n    {\n      \"name\": \"Standing orders and Direct Debits\"\n    },\n    {\n      \"name\": \"Debit cards\"\n    },\n    {\n      \"name\": \"Overdrafts\"\n    },\n    {\n      \"name\": \"Managing personal details\"\n    }\n  ],\n  \"Product support\": [\n    {\n      \"name\": \"Personal loans help\"\n    },\n    {\n      \"name\": \"Credit card help\"\n    },\n    {\n      \"name\": \"Savings help\"\n    },\n    {\n      \"name\": \"Sharedealing help\"\n    },\n    {\n      \"name\": \"First Directory help\"\n    }\n  ],\n  \"Mobile and Online Banking\": [\n    {\n      \"name\": \"Register for Mobile and Online Banking\"\n    },\n    {\n      \"name\": \"Get help logging on\"\n    },\n    {\n      \"name\": \"Move your App to a new phone\"\n    }\n  ],\n  \"Help with money worries\": [\n    {\n      \"name\": \"Budgetting and money management\"\n    },\n    {\n      \"name\": \"Dealing with financial difficulty\"\n    }\n  ],\n  \"Life events\": [\n    {\n      \"name\": \"Help with bereavement\"\n    },\n    {\n      \"name\": \"Domestic and financial abuse\"\n    },\n    {\n      \"name\": \"Mental health and support\"\n    },\n    {\n      \"name\": \"Separation and your banking\"\n    },\n    {\n      \"name\": \"Someone else managing finances\"\n    }\n  ]\n}\n"
  },
  {
    "path": "src/pages/faq/data/popularCategories.json",
    "content": "[\n  {\n    \"id\": 1,\n    \"icon\": \"diversity_1\",\n    \"name\": \"Getting Started\",\n    \"intro\": \"Start using Service easily with our actionable tips.\"\n  },\n  {\n    \"id\": 2,\n    \"icon\": \"check_box\",\n    \"name\": \"How-to Articles\",\n    \"intro\": \"Check out ready workflows tailored to your needs.\"\n  },\n  {\n    \"id\": 3,\n    \"icon\": \"tv_signin\",\n    \"name\": \"Billing and Account\",\n    \"intro\": \"Adjust your subscription and limits to your liking.\"\n  },\n  {\n    \"id\": 4,\n    \"icon\": \"page_info\",\n    \"name\": \"SEO\",\n    \"intro\": \"Increase traffic and boost search rankings with the help of 20+ tools.\"\n  },\n  {\n    \"id\": 5,\n    \"icon\": \"currency_exchange\",\n    \"name\": \"Advertising\",\n    \"intro\": \"Research your competitors' advertising campaigns and launch your own.\"\n  },\n  {\n    \"id\": 6,\n    \"icon\": \"feed\",\n    \"name\": \"Social Media\",\n    \"intro\": \"Schedule, post, and track performance across all key social platforms.\"\n  },\n  {\n    \"id\": 7,\n    \"icon\": \"content_paste_go\",\n    \"name\": \"Content Marketing\",\n    \"intro\": \"Create a content plan, find gaps, and research, write and audit content.\"\n  },\n  {\n    \"id\": 8,\n    \"icon\": \"chart_data\",\n    \"name\": \"Trends\",\n    \"intro\": \"Analyze the market, benchmark against competitors,and follow emerging trends.\"\n  },\n  {\n    \"id\": 9,\n    \"icon\": \"manage_accounts\",\n    \"name\": \"Management\",\n    \"intro\": \"Keep all your marketing plans and activities under control. Automate reporting.\"\n  }\n]\n"
  },
  {
    "path": "src/pages/faq/widgets/Categories.vue",
    "content": "<template>\n  <VaInput v-model=\"searchValue\" class=\"mb-4\" placeholder=\"Search\">\n    <template #appendInner>\n      <VaIcon color=\"secondary\" name=\"mso-search\" />\n    </template>\n  </VaInput>\n  <section v-if=\"filteredCategories.length\" class=\"grid grid-cols-3 md:grid-cols-2 lg:grid-cols-3 gap-4 mb-5\">\n    <template v-for=\"category in filteredCategories\" :key=\"category.id\">\n      <VaCard class=\"col-span-3 md:col-span-1 min-h-[146px]\" href=\"#\">\n        <VaCardContent class=\"leading-5 text-sm\">\n          <VaIcon :name=\"`mso-${category.icon}`\" class=\"font-light mb-2\" color=\"primary\" size=\"2rem\" />\n          <h2 class=\"text-primary mb-2 text-primary text-lg leading-7 font-bold\">{{ category.name }}</h2>\n          <p>{{ category.intro }}</p>\n        </VaCardContent>\n      </VaCard>\n    </template>\n  </section>\n  <VaAlert v-else class=\"mb-4 leading-5\" color=\"info\" outline>\n    No matches found. Try refining your search or browse through the categories to find the help you need.\n  </VaAlert>\n</template>\n\n<script lang=\"ts\" setup>\nimport categories from '../data/popularCategories.json'\nimport { ref, computed } from 'vue'\n\nconst searchValue = ref('')\n\nconst filteredCategories = computed(() => {\n  const value = searchValue.value.trim().toLowerCase()\n  if (value.length === 0) {\n    return categories\n  }\n  return categories.filter((category) => {\n    return category.intro.toLowerCase().includes(value) || category.name.toLowerCase().includes(value)\n  })\n})\n</script>\n"
  },
  {
    "path": "src/pages/faq/widgets/Navigation.vue",
    "content": "<template>\n  <VaCard class=\"mb-4 p-6\">\n    <section class=\"grid sm:grid-cols-2 lg:grid-cols-3 sm:gap-5 lg:gap-9\">\n      <div v-for=\"section in navSections\" :key=\"section\" class=\"mb-6 md:mb-0\">\n        <h3 class=\"h5 mb-4\">{{ section }}</h3>\n        <ul class=\"leading-5\">\n          <li v-for=\"item in navigation[section]\" :key=\"`${section}-${item.name}`\" class=\"mb-4\">\n            <a class=\"va-link\" href=\"#\">{{ item.name }}</a>\n          </li>\n        </ul>\n      </div>\n    </section>\n  </VaCard>\n</template>\n\n<script setup>\nimport { computed } from 'vue'\nimport navigation from '../data/navigationLinks.json'\n\nconst navSections = computed(() => {\n  return Object.keys(navigation)\n})\n</script>\n"
  },
  {
    "path": "src/pages/faq/widgets/Questions.vue",
    "content": "<template>\n  <VaCard class=\"mb-4\">\n    <VaCardContent>\n      <h2 class=\"va-h5\">Popular questions</h2>\n      <VaAccordion v-model=\"accordionState\" :style=\"{ '--va-collapse-padding': '1rem 0' }\" class=\"mb-1\">\n        <VaCollapse header=\"How do I reload a page?\">\n          <article class=\"max-w-3xl leading-5\">\n            <p class=\"mb-2\">\n              Get ready for some page-refreshing wisdom! We're about to dive into the magical world of reloading web\n              pages. Here are some techniques:\n            </p>\n            <ul class=\"list-disc list-inside leading-5 ml-4\">\n              <li>\n                Press the F5 key or Ctrl + R (Windows/Linux) or Command + R (Mac) to manually reload the current page.\n              </li>\n              <li>\n                Click the reload button in your browser. It usually looks like a circular arrow and is typically located\n                in the address bar.\n              </li>\n              <li>Use JavaScript to reload the page programmatically: location.reload();</li>\n            </ul>\n          </article>\n        </VaCollapse>\n\n        <VaCollapse header=\"What is a Secure Key?\">\n          <article class=\"max-w-3xl text-sm\">\n            <p class=\"mb-4\">\n              A Secure Key is an extra layer of security that helps look after you and your money by generating a\n              unique, single use security code every time you log on or authorise a payment. There are two types of\n              Secure Key - a Digital version that works as part of the Mobile Banking App - perfect if you have a\n              smartphone or tablet. Or, you can use a Physical version that is a little key ring that looks like a mini\n              calculator.\n            </p>\n            <p class=\"mb-4\">\n              We recommend setting up a Digital Secure Key. It’s built into the first direct Banking App, and if you\n              have the right type of smartphone you can use your fingerprint or face recognition to seamlessly log on or\n              authorise payments.\n            </p>\n            <a class=\"va-link font-semibold\" href=\"#\"\n              >Find out more about Secure Keys\n              <VaIcon :size=\"18\" name=\"chevron_right\" />\n            </a>\n          </article>\n        </VaCollapse>\n\n        <VaCollapse header=\"How do I report fraud?\">\n          <article class=\"max-w-3xl text-sm\">\n            <p class=\"mb-3\">\n              Reporting fraud is a serious matter, and it's important to take appropriate steps to address and prevent\n              fraudulent activities. The specific process for reporting fraud may vary based on your location and the\n              nature of the fraud, but here's a general guide:\n            </p>\n            <ul class=\"list-disc list-inside leading-6 ml-4 mb-4\">\n              <li>\n                <span class=\"font-semibold\">Report to Relevant Authorities:</span> Depending on the nature of the fraud,\n                you may need to report to other relevant authorities, such as the Securities and Exchange Commission\n                (SEC) for investment-related fraud or the Better Business Bureau (BBB) for scams and deceptive\n                practices.\n              </li>\n              <li>\n                <span class=\"font-semibold\">Document All Details:</span> Make sure to document all the relevant details\n                about the fraud, including dates, times, names of individuals involved (if known), financial\n                transactions, and any communication related to the fraud.\n              </li>\n              <li>\n                <span class=\"font-semibold\">Report to Internet Crime Organizations:</span> If the fraud involves online\n                activities, consider reporting to organizations that deal with internet crimes, such as the Internet\n                Crime Complaint Center (IC3). IC3 is a partnership between the FBI and the National White Collar Crime\n                Center.\n              </li>\n            </ul>\n            <p>\n              Remember to act promptly and follow the specific reporting procedures relevant to your location and the\n              type of fraud you've encountered. Taking swift action can help mitigate potential damage and prevent\n              further fraudulent activities.\n            </p>\n          </article>\n        </VaCollapse>\n\n        <VaCollapse :style=\"{ '--va-background-border': 'transparent' }\" header=\"How to download statements?\">\n          <article class=\"max-w-3xl text-sm\">\n            <p class=\"mb-3\">\n              Downloading statements can vary depending on the type of statements you're referring to (e.g., bank\n              statements, credit card statements, utility statements). Below are general steps to download statements\n              from various platforms:\n            </p>\n            <ul class=\"list-disc list-inside leading-6 ml-4 mb-4\">\n              <li>\n                <span class=\"font-semibold\">Ensure Secure Connection:</span> Always access and download statements from\n                a secure and trusted network to protect your sensitive financial information.\n              </li>\n              <li>\n                <span class=\"font-semibold\">Regularly Check Statements:</span> Review your statements regularly to\n                verify transactions, detect errors, or identify any suspicious activity promptly.\n              </li>\n              <li>\n                <span class=\"font-semibold\">Verify Account Details:</span> Ensure that the statements you download\n                correspond to the correct account, including account numbers and account names.\n              </li>\n              <li>\n                <span class=\"font-semibold\">Use Official Channels:</span> Download statements only from official and\n                authorized platforms, such as your bank's official website or the secure online portals of service\n                providers.\n              </li>\n            </ul>\n            <p>\n              Always ensure that you follow the specific steps and instructions provided by the respective service\n              provider to download statements securely and accurately. If you encounter any difficulties or have\n              specific questions, consider reaching out to the customer support of the respective institution or\n              service.\n            </p>\n          </article>\n        </VaCollapse>\n      </VaAccordion>\n    </VaCardContent>\n  </VaCard>\n</template>\n\n<script setup>\nimport { reactive } from 'vue'\n\nconst accordionState = reactive([false, true, false, false])\n</script>\n"
  },
  {
    "path": "src/pages/faq/widgets/RequestDemo.vue",
    "content": "<template>\n  <VaCard class=\"mb-5 pr-4 flex justify-between\">\n    <div>\n      <VaCardContent>\n        <h2 class=\"va-h5\">Got questions?</h2>\n        <p class=\"text-base leading-5\">Request a free demo to have all your questions answered by an expert.</p>\n      </VaCardContent>\n      <VaCardActions align=\"left\">\n        <VaButton @click=\"showModal = !showModal\">Request a demo</VaButton>\n      </VaCardActions>\n    </div>\n    <img alt=\"Send a message\" src=\"../request-demo.svg\" />\n  </VaCard>\n  <VaModal v-model=\"showModal\" :before-ok=\"submit\" close-button ok-text=\"Request demo\" size=\"small\">\n    <VaForm ref=\"form\" @submit.prevent=\"submit\">\n      <h3 class=\"va-h3\">Request free demo</h3>\n      <p class=\"text-base mb-4 leading-5\">\n        Claim your spot now and ignite innovation with our exceptional software solution! 🔥\n      </p>\n      <VaInput\n        v-model=\"email\"\n        :rules=\"[(v) => !!v || 'Email field is required', (v) => /.+@.+\\..+/.test(v) || 'Email should be valid']\"\n        class=\"mb-4\"\n        label=\"Email\"\n        type=\"email\"\n      />\n    </VaForm>\n  </VaModal>\n</template>\n\n<script setup>\nimport { ref } from 'vue'\n\nimport { useForm, useToast } from 'vuestic-ui'\n\nconst showModal = ref(false)\nconst email = ref('')\nconst { validate } = useForm('form')\nconst { init } = useToast()\n\nconst submit = async () => {\n  if (!validate()) {\n    return\n  }\n  init({\n    title: 'Demo Request Submitted!',\n    message: 'An expert will get in touch soon',\n    color: 'success',\n  })\n  showModal.value = false\n}\n</script>\n"
  },
  {
    "path": "src/pages/payments/PaymentsPage.vue",
    "content": "<template>\n  <h1 class=\"page-title\">Payment methods</h1>\n\n  <VaCard class=\"mb-6\">\n    <VaCardContent>\n      <div class=\"text-2xl font-bold leading-5 mb-6\">My cards</div>\n\n      <PaymentCardList />\n    </VaCardContent>\n  </VaCard>\n\n  <VaCard class=\"mb-6\">\n    <VaCardContent>\n      <div class=\"text-2xl font-bold leading-5 mb-6\">Billing address</div>\n\n      <BillingAddressList />\n\n      <div class=\"space-y-2 mt-6\">\n        <div class=\"text-lg font-bold mb-2\">Tax location</div>\n        <div class=\"space-y-1\">\n          <div class=\"text-sm text-gray-500\">United States - 10% VAT</div>\n          <div class=\"text-sm text-primary underline\">More info</div>\n        </div>\n      </div>\n    </VaCardContent>\n  </VaCard>\n</template>\n\n<script lang=\"ts\" setup>\nimport PaymentCardList from './widgets/my-cards/PaymentCardList.vue'\nimport BillingAddressList from './widgets/billing-address/BillingAddressList.vue'\n</script>\n"
  },
  {
    "path": "src/pages/payments/payment-system/PaymentSystem.stories.ts",
    "content": "import PaymentSystem from './PaymentSystem.vue'\n\nexport default {\n  title: 'PaymentSystem',\n  component: PaymentSystem,\n  tags: ['autodocs'],\n}\n\nexport const Default = () => ({\n  components: { PaymentSystem },\n  template: `\n    <PaymentSystem type=\"visa\"/>\n    <br>\n    <PaymentSystem type=\"mastercard\"/>\n  `,\n})\n"
  },
  {
    "path": "src/pages/payments/payment-system/PaymentSystem.vue",
    "content": "<template>\n  <div class=\"w-20 h-12 bg-backgroundElement rounded flex justify-center items-center align-bottom\">\n    <img v-if=\"props.type === 'mastercard'\" alt=\"Mastercard Logo\" src=\"./mastercard.png\" />\n    <img v-if=\"props.type === 'visa'\" alt=\"Visa Logo\" src=\"./visa.png\" />\n  </div>\n</template>\n\n<script setup lang=\"ts\">\nimport { PaymentSystemType } from '../types'\n\nconst props = defineProps<{\n  type: PaymentSystemType\n}>()\n</script>\n"
  },
  {
    "path": "src/pages/payments/types.ts",
    "content": "export enum PaymentSystemType {\n  Visa = 'visa',\n  MasterCard = 'mastercard',\n}\n\nexport const paymentSystemTypeOptions = Object.values(PaymentSystemType)\n\nexport interface PaymentCard {\n  id: string\n  name: string\n  isPrimary: boolean // show Primary badge\n  paymentSystem: PaymentSystemType // Enum or union type for various payment systems\n  cardNumberMasked: string // ****1679\n  expirationDate: string // 09/24\n}\n\nexport interface BillingAddress {\n  id: string\n  name: string\n  isPrimary: boolean // show Primary badge\n  street: string\n  city: string\n  state: string\n  postalCode: string\n  country: string\n}\n"
  },
  {
    "path": "src/pages/payments/widgets/billing-address/BillingAddressCreateModal.stories.ts",
    "content": "import BillingAddressCreateModal from './BillingAddressCreateModal.vue'\n\nexport default {\n  components: { BillingAddressCreateModal },\n  title: 'BillingAddressCreateModal',\n  component: BillingAddressCreateModal,\n  tags: ['autodocs'],\n}\n\nexport const Default = () => ({\n  components: { BillingAddressCreateModal },\n  data() {\n    return {\n      showModal: false,\n    }\n  },\n  template: `\n    <va-button @click=\"showModal = !showModal\">\n      Show modal\n    </va-button>\n    <BillingAddressCreateModal v-if=\"showModal\" @close=\"showModal = false\"/>\n  `,\n})\n"
  },
  {
    "path": "src/pages/payments/widgets/billing-address/BillingAddressCreateModal.vue",
    "content": "<template>\n  <VaModal hide-default-actions model-value size=\"small\" close-button @cancel=\"emits('close')\">\n    <h3 class=\"va-h4 mb-4\">Add Billing Address</h3>\n    <BillingAddressEdit\n      :billing-address=\"billingAddress\"\n      submit-text=\"Add Address\"\n      @cancel=\"emits('close')\"\n      @save=\"update\"\n    />\n  </VaModal>\n</template>\n\n<script lang=\"ts\" setup>\nimport { ref, reactive } from 'vue'\nimport BillingAddressEdit from './BillingAddressEdit.vue'\nimport { BillingAddress } from '../../types'\nimport { useToast } from 'vuestic-ui'\nimport { useBillingAddressesStore } from '../../../../stores/billing-addresses'\n\nconst isModalOpen = ref(false)\n\nconst emits = defineEmits(['close'])\nconst store = useBillingAddressesStore()\nconst { init } = useToast()\n\nconst billingAddress = reactive({\n  id: Math.ceil(Math.random() * 100) + '',\n  name: '',\n  isPrimary: false,\n  street: '',\n  city: '',\n  state: '',\n  postalCode: '',\n  country: '',\n} satisfies BillingAddress)\n\nconst update = (address: BillingAddress) => {\n  isModalOpen.value = false\n  store.create(address)\n  init({ message: \"You've successfully created a new Billing Address\", color: 'success' })\n  emits('close')\n}\n</script>\n"
  },
  {
    "path": "src/pages/payments/widgets/billing-address/BillingAddressEdit.stories.ts",
    "content": "import BillingAddressEdit from './BillingAddressEdit.vue'\nimport { BillingAddress } from '../../types'\n\nexport default {\n  title: 'BillingAddressEdit',\n  component: BillingAddressEdit,\n  tags: ['autodocs'],\n}\n\nexport const Default = () => ({\n  components: { BillingAddressEdit },\n  data() {\n    return {\n      lastEvent: '',\n      billingAddress: {\n        id: '1',\n        name: 'Name',\n        isPrimary: false,\n        street: 'Ap #285-7193 Ullamcorper Avenue',\n        city: 'Amesbury',\n        state: 'HI',\n        postalCode: '93373',\n        country: 'US',\n      } satisfies BillingAddress,\n    }\n  },\n  template: `\n    <BillingAddressEdit\n        :billingAddress=\"billingAddress\"\n        submitText=\"Update\"\n        @save=\"lastEvent = 'save'\"\n        @cancel=\"lastEvent = 'cancel'\"\n    />\n    <br>\n    <p>Last event: <span data-testid=\"lastEvent\">{{ lastEvent }}</span></p>`,\n})\n\nexport const Empty = () => ({\n  components: { BillingAddressEdit },\n  data() {\n    return {\n      billingAddress: {\n        id: '1',\n        name: '',\n        isPrimary: false,\n        street: '',\n        city: '',\n        state: '',\n        postalCode: '',\n        country: '',\n      } satisfies BillingAddress,\n    }\n  },\n  template: `\n    <BillingAddressEdit\n        :billingAddress=\"billingAddress\"\n        submitText=\"Create\"\n    />`,\n})\n"
  },
  {
    "path": "src/pages/payments/widgets/billing-address/BillingAddressEdit.vue",
    "content": "<template>\n  <VaForm ref=\"form\" @submit.prevent=\"submit\">\n    <VaInput\n      v-model=\"localBillingAddress.name\"\n      :rules=\"[(v) => !!v || 'Name field is required']\"\n      class=\"mb-4\"\n      label=\"Name\"\n    />\n    <VaCheckbox v-model=\"localBillingAddress.isPrimary\" class=\"mb-4\" label=\"Primary Address\" />\n    <VaInput\n      v-model=\"localBillingAddress.street\"\n      :rules=\"[(v) => !!v || 'Street field is required']\"\n      class=\"mb-4\"\n      label=\"Street\"\n    />\n    <VaInput\n      v-model=\"localBillingAddress.city\"\n      :rules=\"[(v) => !!v || 'City field is required']\"\n      class=\"mb-4\"\n      label=\"City\"\n    />\n    <VaInput\n      v-model=\"localBillingAddress.state\"\n      :rules=\"[(v) => !!v || 'State field is required']\"\n      class=\"mb-4\"\n      label=\"State\"\n    />\n    <VaInput\n      v-model=\"localBillingAddress.postalCode\"\n      :rules=\"[(v) => !!v || 'Postal Code field is required']\"\n      class=\"mb-4\"\n      label=\"Postal Code\"\n    />\n    <VaInput\n      v-model=\"localBillingAddress.country\"\n      :rules=\"[(v) => !!v || 'Country field is required']\"\n      class=\"mb-4\"\n      label=\"Country\"\n    />\n    <div class=\"flex justify-end gap-3\">\n      <VaButton color=\"secondary\" preset=\"secondary\" @click=\"emits('cancel')\">Cancel</VaButton>\n      <VaButton @click=\"submit\">{{ submitText }}</VaButton>\n    </div>\n  </VaForm>\n</template>\n\n<script lang=\"ts\" setup>\nimport { useForm } from 'vuestic-ui'\nimport { BillingAddress } from '../../types'\nimport { watch, ref } from 'vue'\n\nconst { validate } = useForm('form')\nconst emits = defineEmits(['save', 'cancel'])\n\nconst props = defineProps<{\n  billingAddress: BillingAddress\n  submitText: string\n}>()\n\nconst localBillingAddress = ref<BillingAddress>({ ...props.billingAddress })\n\nwatch(\n  () => props.billingAddress,\n  (value) => {\n    localBillingAddress.value = { ...value }\n  },\n  { deep: true },\n)\n\nconst submit = () => {\n  if (validate()) {\n    emits('save', localBillingAddress.value)\n  }\n}\n</script>\n"
  },
  {
    "path": "src/pages/payments/widgets/billing-address/BillingAddressList.stories.ts",
    "content": "import BillingAddressList from './BillingAddressList.vue'\n\nexport default {\n  title: 'BillingAddressList',\n  component: BillingAddressList,\n  tags: ['autodocs'],\n}\n\nexport const Default = () => ({\n  components: { BillingAddressList },\n  template: `\n    <BillingAddressList/>\n  `,\n})\n"
  },
  {
    "path": "src/pages/payments/widgets/billing-address/BillingAddressList.vue",
    "content": "<template>\n  <div class=\"grid md:grid-cols-2 grid-cols-1 gap-4\">\n    <template v-if=\"loading\">\n      <div\n        v-for=\"i in 4\"\n        :key=\"i\"\n        class=\"min-h-[114px] p-4 rounded-lg border border-dashed border-backgroundBorder flex flex-row items-center gap-6\"\n      >\n        <div class=\"flex flex-col gap-2 flex-grow\">\n          <VaSkeleton class height=\"1.5rem\" variant=\"text\" width=\"10rem\" />\n          <div class=\"flex gap-4\">\n            <VaSkeleton height=\"3rem\" variant=\"rounded\" width=\"5rem\" />\n            <VaSkeleton :lines=\"2\" variant=\"text\" />\n          </div>\n        </div>\n      </div>\n    </template>\n    <template v-else>\n      <CardListItem\n        v-for=\"billingAddress in list\"\n        :key=\"billingAddress.id\"\n        :billing-address=\"billingAddress\"\n        @edit=\"addressToEdit = billingAddress\"\n        @remove=\"remove(billingAddress)\"\n      />\n      <div\n        class=\"sm:min-h-[114px] p-4 rounded-lg border border-dashed border-primary flex flex-col sm:flex-row items-start sm:items-center gap-4\"\n        :style=\"{ backgroundColor: colorToRgba(getColor('primary'), 0.07) }\"\n      >\n        <div class=\"flex flex-col gap-2 flex-grow\">\n          <div class=\"text-lg font-bold leading-relaxed\">Important note</div>\n          <div class=\"text-secondary text-sm leading-tight\">\n            Please ensure the provided billing address matches the information on file with your financial institution\n            to avoid any processing delays.\n          </div>\n        </div>\n        <VaButton class=\"flex-none w-full sm:w-auto\" @click=\"showCreate = true\">New address</VaButton>\n      </div>\n    </template>\n  </div>\n  <AddressCreateModal v-if=\"showCreate\" @close=\"showCreate = false\" />\n  <AddressUpdateModal v-if=\"addressToEdit\" :billing-address=\"addressToEdit\" @close=\"addressToEdit = undefined\" />\n</template>\n\n<script lang=\"ts\" setup>\nimport CardListItem from './BillingAddressListItem.vue'\nimport { computed, ref } from 'vue'\nimport { useModal, useToast } from 'vuestic-ui'\nimport AddressCreateModal from './BillingAddressCreateModal.vue'\nimport AddressUpdateModal from './BillingAddressUpdateModal.vue'\nimport { useBillingAddressesStore } from '../../../../stores/billing-addresses'\nimport { BillingAddress } from '../../types'\nimport { useColors } from 'vuestic-ui'\n\nconst store = useBillingAddressesStore()\n\nconst list = computed(() => store.allBillingAddresses)\nconst loading = computed(() => store.loading)\nconst { confirm } = useModal()\n\nconst showCreate = ref<boolean>(false)\nconst addressToEdit = ref<BillingAddress>()\nconst { init } = useToast()\n\nstore.load()\nconst remove = async (card: BillingAddress) => {\n  confirm({\n    message: 'Are you really sure you want to delete this address?',\n    size: 'small',\n    maxWidth: '380px',\n  }).then((ok) => {\n    if (!ok) return\n    store.remove(card.id)\n    init({ message: 'Billing Address has been deleted', color: 'success' })\n  })\n}\n\nconst { getColor, colorToRgba } = useColors()\n</script>\n"
  },
  {
    "path": "src/pages/payments/widgets/billing-address/BillingAddressListItem.stories.ts",
    "content": "import BillingAddressListItem from './BillingAddressListItem.vue'\nimport { BillingAddress } from '../../types'\n\nexport default {\n  title: 'BillingAddressListItem',\n  component: BillingAddressListItem,\n  tags: ['autodocs'],\n}\n\nexport const Default = () => ({\n  components: { BillingAddressListItem },\n  data() {\n    return {\n      address: {\n        id: '1',\n        name: 'Home Address',\n        isPrimary: false,\n        street: 'Ap #285-7193 Ullamcorper Avenue',\n        city: 'Amesbury',\n        state: 'HI',\n        postalCode: '93373',\n        country: 'US',\n      } satisfies BillingAddress,\n      lastEvent: '___',\n    }\n  },\n  template: `\n    <BillingAddressListItem\n        :billingAddress=\"address\"\n        @remove=\"lastEvent = 'remove'\"\n        @edit=\"lastEvent = 'edit'\"\n    />\n    <br>\n    <p>Last event: <span data-testid=\"lastEvent\">{{ lastEvent }}</span></p>\n  `,\n})\n"
  },
  {
    "path": "src/pages/payments/widgets/billing-address/BillingAddressListItem.vue",
    "content": "<template>\n  <div\n    class=\"min-h-[114px] p-4 rounded-lg border border-dashed border-backgroundBorder flex flex-col sm:flex-row items-start sm:items-center gap-6\"\n  >\n    <div class=\"flex flex-col gap-2 flex-grow\">\n      <div class=\"flex items-center\">\n        <div class=\"text-lg font-bold\">{{ billingAddress.name }}</div>\n        <VaBadge v-if=\"billingAddress.isPrimary\" class=\"ml-2\" color=\"danger\" text=\"Primary\" />\n      </div>\n      <div class=\"text-secondary leading-5\">\n        <div>{{ billingAddress.street }}</div>\n        <div>{{ billingAddress.city }}, {{ billingAddress.state }} {{ billingAddress.postalCode }}</div>\n        <div>{{ billingAddress.country }}</div>\n      </div>\n    </div>\n    <div class=\"w-full sm:w-auto flex-none flex sm:block\">\n      <VaButton class=\"mr-2 flex-grow\" preset=\"primary\" @click=\"emits('edit')\">Edit</VaButton>\n      <VaButton icon=\"mso-delete\" preset=\"primary\" aria-label=\"Remove\" @click=\"emits('remove')\" />\n    </div>\n  </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { computed } from 'vue'\nimport { BillingAddress } from '../../types'\n\nconst emits = defineEmits(['edit', 'remove'])\n\nconst props = defineProps<{\n  billingAddress: BillingAddress\n}>()\n\nconst billingAddress = computed(() => props.billingAddress)\n</script>\n"
  },
  {
    "path": "src/pages/payments/widgets/billing-address/BillingAddressUpdateModal.stories.ts",
    "content": "import BillingAddressUpdateModal from './BillingAddressUpdateModal.vue'\nimport { BillingAddress } from '../../types'\n\nexport default {\n  components: { BillingAddressUpdateModal },\n  title: 'BillingAddressUpdateModal',\n  component: BillingAddressUpdateModal,\n  tags: ['autodocs'],\n}\n\nexport const Default = () => ({\n  components: { BillingAddressUpdateModal },\n  data() {\n    return {\n      showModal: false,\n      billingAddress: {\n        id: '1',\n        name: '',\n        isPrimary: false,\n        street: '',\n        city: '',\n        state: '',\n        postalCode: '',\n        country: '',\n      } satisfies BillingAddress,\n    }\n  },\n  template: `\n    <va-button @click=\"showModal = !showModal\">\n      Show modal\n    </va-button>\n    <BillingAddressUpdateModal :billingAddress=\"billingAddress\" v-if=\"showModal\" @close=\"showModal = false\"/>\n  `,\n})\n"
  },
  {
    "path": "src/pages/payments/widgets/billing-address/BillingAddressUpdateModal.vue",
    "content": "<template>\n  <VaModal hide-default-actions model-value size=\"small\" close-button @cancel=\"emits('close')\">\n    <h3 class=\"va-h4 mb-4\">Add Billing Address</h3>\n    <AddressEdit\n      :billing-address=\"billingAddress\"\n      submit-text=\"Save Address\"\n      @cancel=\"emits('close')\"\n      @save=\"updateCard\"\n    />\n  </VaModal>\n</template>\n\n<script lang=\"ts\" setup>\nimport { ref } from 'vue'\nimport AddressEdit from './BillingAddressEdit.vue'\nimport { BillingAddress } from '../../types'\nimport { useToast } from 'vuestic-ui'\nimport { useBillingAddressesStore } from '../../../../stores/billing-addresses'\n\nconst isModalOpen = ref(false)\nconst { init } = useToast()\n\nconst props = defineProps<{\n  billingAddress: BillingAddress\n}>()\n\nconst emits = defineEmits(['close'])\nconst store = useBillingAddressesStore()\nconst billingAddress = ref({ ...props.billingAddress })\n\nconst updateCard = (address: BillingAddress) => {\n  isModalOpen.value = false\n  store.update(address)\n  init({ message: \"You've successfully updated a Billing Address\", color: 'success' })\n  emits('close')\n}\n</script>\n"
  },
  {
    "path": "src/pages/payments/widgets/my-cards/PaymentCardCreateModal.stories.ts",
    "content": "import PaymentCardCreateModal from './PaymentCardCreateModal.vue'\n\nexport default {\n  components: { PaymentCardCreateModal },\n  title: 'PaymentCardCreateModal',\n  component: PaymentCardCreateModal,\n  tags: ['autodocs'],\n}\n\nexport const Default = () => ({\n  components: { PaymentCardCreateModal },\n  data() {\n    return {\n      showModal: false,\n    }\n  },\n  template: `\n    <va-button @click=\"showModal = !showModal\">\n      Show modal\n    </va-button>\n    <PaymentCardCreateModal v-if=\"showModal\" @close=\"showModal = false\"/>\n  `,\n})\n"
  },
  {
    "path": "src/pages/payments/widgets/my-cards/PaymentCardCreateModal.vue",
    "content": "<template>\n  <VaModal hide-default-actions model-value size=\"small\" close-button @cancel=\"emits('close')\">\n    <h3 class=\"va-h4 mb-4\">Add payment card</h3>\n    <PaymentCardEdit :payment-card=\"paymentCard\" submit-text=\"Add Card\" @cancel=\"emits('close')\" @save=\"updateCard\" />\n  </VaModal>\n</template>\n\n<script lang=\"ts\" setup>\nimport { ref, reactive } from 'vue'\nimport PaymentCardEdit from './PaymentCardEdit.vue'\nimport { PaymentCard, PaymentSystemType } from '../../types'\nimport { usePaymentCardsStore } from '../../../../stores/payment-cards'\nimport { useToast } from 'vuestic-ui'\n\nconst isModalOpen = ref(false)\n\nconst emits = defineEmits(['close'])\nconst store = usePaymentCardsStore()\nconst { init } = useToast()\n\nconst paymentCard = reactive({\n  id: Math.ceil(Math.random() * 100) + '',\n  name: '',\n  isPrimary: false,\n  paymentSystem: PaymentSystemType.Visa,\n  cardNumberMasked: '',\n  expirationDate: '',\n} satisfies PaymentCard)\n\nconst updateCard = (card: PaymentCard) => {\n  isModalOpen.value = false\n  store.create(card)\n  init({ message: \"You've successfully created a new payment card\", color: 'success' })\n  emits('close')\n}\n</script>\n"
  },
  {
    "path": "src/pages/payments/widgets/my-cards/PaymentCardEdit.stories.ts",
    "content": "import PaymentCardEdit from './PaymentCardEdit.vue'\nimport { PaymentSystemType, PaymentCard } from '../../types'\n\nexport default {\n  title: 'PaymentCardEdit',\n  component: PaymentCardEdit,\n  tags: ['autodocs'],\n}\n\nexport const Default = () => ({\n  components: { PaymentCardEdit },\n  data() {\n    return {\n      lastEvent: '',\n      paymentCard: {\n        id: '1',\n        name: 'Main card',\n        isPrimary: true,\n        paymentSystem: PaymentSystemType.Visa,\n        cardNumberMasked: '****1679',\n        expirationDate: '09/24',\n      } satisfies PaymentCard,\n    }\n  },\n  template: `\n    <PaymentCardEdit\n        :paymentCard=\"paymentCard\"\n        submitText=\"Update Card\"\n        @save=\"lastEvent = 'save'\"\n        @cancel=\"lastEvent = 'cancel'\"\n    />\n    <br>\n    <p>Last event: <span data-testid>{{ lastEvent }}</span></p>`,\n})\n\nexport const Empty = () => ({\n  components: { PaymentCardEdit },\n  data() {\n    return {\n      paymentCard: {\n        id: '',\n        name: '',\n        isPrimary: false,\n        paymentSystem: PaymentSystemType.Visa,\n        cardNumberMasked: '',\n        expirationDate: '',\n      } satisfies PaymentCard,\n    }\n  },\n  template: `\n    <PaymentCardEdit\n        :paymentCard=\"paymentCard\"\n        submitText=\"Create Card\"\n    />`,\n})\n"
  },
  {
    "path": "src/pages/payments/widgets/my-cards/PaymentCardEdit.vue",
    "content": "<template>\n  <VaForm ref=\"form\" @submit.prevent=\"submit\">\n    <VaInput\n      v-model=\"paymentCardLocal.name\"\n      :rules=\"[(v) => !!v || 'Card Name field is required']\"\n      class=\"mb-4\"\n      label=\"Card Name\"\n    />\n    <VaCheckbox v-model=\"paymentCardLocal.isPrimary\" class=\"mb-4\" label=\"Primary Card\" />\n    <VaSelect\n      v-model=\"paymentCardLocal.paymentSystem\"\n      :options=\"paymentSystemTypeOptions\"\n      :rules=\"[(v) => !!v || 'Payment System field is required']\"\n      class=\"mb-4\"\n      label=\"Payment System\"\n    />\n    <VaInput\n      v-model=\"paymentCardLocal.cardNumberMasked\"\n      :rules=\"[(v) => !!v || 'Card Number field is required']\"\n      class=\"mb-4\"\n      label=\"Card Number\"\n      mask=\"creditCard\"\n      placeholder=\"#### #### #### ####\"\n    />\n    <VaInput\n      v-model=\"paymentCardLocal.expirationDate\"\n      :mask=\"{\n        date: true,\n        datePattern: ['m', 'y'],\n      }\"\n      :rules=\"[\n        (v) => !!v || 'Expiration Date field is required',\n        (v) => /^\\d{4}$/.test(v) || 'Expiration Date must be in MM/YY format',\n      ]\"\n      class=\"mb-4\"\n      label=\"Expiration Date\"\n    />\n\n    <div class=\"flex justify-end gap-3\">\n      <VaButton color=\"secondary\" preset=\"secondary\" @click=\"emits('cancel')\">Cancel</VaButton>\n      <VaButton @click=\"submit\">{{ submitText }}</VaButton>\n    </div>\n  </VaForm>\n</template>\n\n<script lang=\"ts\" setup>\nimport { useForm } from 'vuestic-ui'\nimport { PaymentCard, PaymentSystemType } from '../../types'\nimport { watch, ref } from 'vue'\n\nconst { validate } = useForm('form')\nconst emits = defineEmits(['save', 'cancel'])\n\nconst props = defineProps<{\n  paymentCard: PaymentCard\n  submitText: string\n}>()\n\nconst paymentSystemTypeOptions = Object.values(PaymentSystemType)\nconst paymentCardLocal = ref({ ...props.paymentCard })\n\nwatch(\n  () => props.paymentCard,\n  (value) => {\n    paymentCardLocal.value = { ...value }\n  },\n  { deep: true },\n)\n\nconst submit = () => {\n  if (validate()) {\n    emits('save', {\n      ...paymentCardLocal.value,\n      cardNumberMasked: paymentCardLocal.value.cardNumberMasked.replace(/\\d{12}(.*)/g, '****$1'),\n    })\n  }\n}\n</script>\n"
  },
  {
    "path": "src/pages/payments/widgets/my-cards/PaymentCardList.stories.ts",
    "content": "import PaymentCardList from './PaymentCardList.vue'\n\nexport default {\n  title: 'PaymentCardList',\n  component: PaymentCardList,\n  tags: ['autodocs'],\n}\n\nexport const Default = () => ({\n  components: { PaymentCardList },\n  template: `\n    <PaymentCardList/>\n  `,\n})\n"
  },
  {
    "path": "src/pages/payments/widgets/my-cards/PaymentCardList.vue",
    "content": "<template>\n  <div class=\"grid md:grid-cols-2 grid-cols-1 gap-4\">\n    <template v-if=\"loading\">\n      <div\n        v-for=\"i in 4\"\n        :key=\"i\"\n        class=\"min-h-[114px] p-4 rounded-lg border border-dashed border-backgroundBorder flex flex-row items-center gap-6\"\n      >\n        <div class=\"flex flex-col gap-2 flex-grow\">\n          <VaSkeleton class height=\"1.5rem\" variant=\"text\" width=\"10rem\" />\n          <div class=\"flex gap-4\">\n            <VaSkeleton height=\"3rem\" variant=\"rounded\" width=\"5rem\" />\n            <VaSkeleton :lines=\"2\" variant=\"text\" />\n          </div>\n        </div>\n      </div>\n    </template>\n    <template v-else>\n      <CardListItem\n        v-for=\"paymentCard in list\"\n        :key=\"paymentCard.id\"\n        :card=\"paymentCard\"\n        @edit=\"cardToEdit = paymentCard\"\n        @remove=\"remove(paymentCard)\"\n      />\n      <div\n        class=\"sm:h-[114px] p-4 rounded-lg border border-dashed border-primary flex flex-col sm:flex-row items-start sm:items-center gap-4\"\n        :style=\"{ backgroundColor: colorToRgba(getColor('primary'), 0.07) }\"\n      >\n        <div class=\"flex flex-col gap-2 flex-grow\">\n          <div class=\"text-lg font-bold leading-relaxed\">Important note</div>\n          <div class=\"text-secondary text-sm leading-tight\">\n            Please carefully read Product Terms before adding your new payment card\n          </div>\n        </div>\n        <VaButton class=\"flex-none w-full sm:w-auto\" @click=\"showCreate = true\">Add card</VaButton>\n      </div>\n    </template>\n  </div>\n  <PaymentCardCreateModal v-if=\"showCreate\" @close=\"showCreate = false\" />\n  <PaymentCardUpdateModal v-if=\"cardToEdit\" :payment-card=\"cardToEdit\" @close=\"cardToEdit = undefined\" />\n</template>\n\n<script lang=\"ts\" setup>\nimport CardListItem from './PaymentCardListItem.vue'\nimport { usePaymentCardsStore } from '../../../../stores/payment-cards'\nimport { computed, ref } from 'vue'\nimport { useColors } from 'vuestic-ui'\nimport { PaymentCard } from '../../types'\nimport { useModal, useToast } from 'vuestic-ui'\nimport PaymentCardCreateModal from './PaymentCardCreateModal.vue'\nimport PaymentCardUpdateModal from './PaymentCardUpdateModal.vue'\n\nconst store = usePaymentCardsStore()\n\nconst list = computed(() => store.allPaymentCards)\nconst loading = computed(() => store.loading)\nconst { confirm } = useModal()\n\nconst showCreate = ref<boolean>(false)\nconst cardToEdit = ref<PaymentCard>()\nconst { init } = useToast()\n\nstore.load()\nconst remove = async (card: PaymentCard) => {\n  confirm({\n    message: 'Are you really sure you want to delete this card?',\n    size: 'small',\n    maxWidth: '380px',\n  }).then((ok) => {\n    if (!ok) return\n    store.remove(card.id)\n    init({ message: 'Payment card has been deleted', color: 'success' })\n  })\n}\n\nconst { getColor, colorToRgba } = useColors()\n</script>\n"
  },
  {
    "path": "src/pages/payments/widgets/my-cards/PaymentCardListItem.stories.ts",
    "content": "import CardListItem from './PaymentCardListItem.vue'\nimport { PaymentSystemType, PaymentCard } from '../../types'\n\nexport default {\n  title: 'CardListItem',\n  component: CardListItem,\n  tags: ['autodocs'],\n}\n\nexport const Default = () => ({\n  components: { CardListItem },\n  data() {\n    return {\n      card: {\n        id: '1',\n        name: 'Main card',\n        isPrimary: true,\n        paymentSystem: PaymentSystemType.Visa,\n        cardNumberMasked: '****1679',\n        expirationDate: '09/24',\n      } satisfies PaymentCard,\n      lastEvent: '___',\n    }\n  },\n  template: `\n    <CardListItem\n        :card=\"card\"\n        @remove=\"lastEvent = 'remove'\"\n        @edit=\"lastEvent = 'edit'\"\n    />\n    <br>\n    <p>Last event: <span data-testid>{{ lastEvent }}</span></p>\n  `,\n})\n"
  },
  {
    "path": "src/pages/payments/widgets/my-cards/PaymentCardListItem.vue",
    "content": "<template>\n  <div\n    class=\"min-h-[114px] p-4 rounded-lg border border-dashed border-backgroundBorder flex flex-col sm:flex-row items-start sm:items-center gap-6\"\n  >\n    <div class=\"flex flex-col gap-2 flex-grow\">\n      <div class=\"flex items-center\">\n        <div class=\"text-lg font-bold\">{{ card.name }}</div>\n        <VaBadge v-if=\"card.isPrimary\" class=\"ml-2\" color=\"danger\" text=\"Primary\" />\n      </div>\n      <div class=\"flex gap-4 items-center\">\n        <PaymentSystem :type=\"card.paymentSystem\" />\n        <div>\n          <div class=\"text-[15px] font-bold mb-2 capitalize\">{{ card.paymentSystem }} {{ card.cardNumberMasked }}</div>\n          <div class=\"text-secondary\">Card expires at {{ expirationDateString }}</div>\n        </div>\n      </div>\n    </div>\n    <div class=\"w-full sm:w-auto flex-none flex sm:block\">\n      <VaButton class=\"mr-2 flex-grow\" preset=\"primary\" @click=\"emits('edit')\">Edit</VaButton>\n      <VaButton icon=\"mso-delete\" preset=\"primary\" aria-label=\"Remove\" @click=\"emits('remove')\" />\n    </div>\n  </div>\n</template>\n\n<script lang=\"ts\" setup>\nimport { computed } from 'vue'\nimport PaymentSystem from '../../payment-system/PaymentSystem.vue'\nimport { PaymentCard } from '../../types'\n\nconst emits = defineEmits(['edit', 'remove'])\n\nconst props = defineProps<{\n  card: PaymentCard\n}>()\n\nconst card = computed(() => props.card)\n\nconst expirationDateString = computed(() => {\n  const e = props.card.expirationDate\n  return `${e[0]}${e[1]}/${e[2]}${e[3]}`\n})\n</script>\n"
  },
  {
    "path": "src/pages/payments/widgets/my-cards/PaymentCardUpdateModal.stories.ts",
    "content": "import PaymentCardUpdateModal from './PaymentCardUpdateModal.vue'\nimport { PaymentSystemType, PaymentCard } from '../../types'\n\nexport default {\n  components: { PaymentCardUpdateModal },\n  title: 'PaymentCardUpdateModal',\n  component: PaymentCardUpdateModal,\n  tags: ['autodocs'],\n}\n\nexport const Default = () => ({\n  components: { PaymentCardUpdateModal },\n  data() {\n    return {\n      showModal: false,\n      paymentCard: {\n        id: '1',\n        name: 'Main card',\n        isPrimary: true,\n        paymentSystem: PaymentSystemType.Visa,\n        cardNumberMasked: '****1679',\n        expirationDate: '09/24',\n      } satisfies PaymentCard,\n    }\n  },\n  template: `\n    <va-button @click=\"showModal = !showModal\">\n      Show modal\n    </va-button>\n    <PaymentCardUpdateModal :payment-card=\"paymentCard\" v-if=\"showModal\" @close=\"showModal = false\"/>\n  `,\n})\n"
  },
  {
    "path": "src/pages/payments/widgets/my-cards/PaymentCardUpdateModal.vue",
    "content": "<template>\n  <VaModal hide-default-actions model-value size=\"small\" close-button @cancel=\"emits('close')\">\n    <h3 class=\"va-h4 mb-4\">Add payment card</h3>\n    <PaymentCardEdit :payment-card=\"paymentCard\" submit-text=\"Save Card\" @cancel=\"emits('close')\" @save=\"updateCard\" />\n  </VaModal>\n</template>\n\n<script lang=\"ts\" setup>\nimport { ref } from 'vue'\nimport PaymentCardEdit from './PaymentCardEdit.vue'\nimport { PaymentCard } from '../../types'\nimport { usePaymentCardsStore } from '../../../../stores/payment-cards'\nimport { useToast } from 'vuestic-ui'\n\nconst isModalOpen = ref(false)\nconst { init } = useToast()\n\nconst props = defineProps<{\n  paymentCard: PaymentCard\n}>()\n\nconst emits = defineEmits(['close'])\nconst store = usePaymentCardsStore()\nconst paymentCard = ref({ ...props.paymentCard })\n\nconst updateCard = (card: PaymentCard) => {\n  isModalOpen.value = false\n  store.update(card)\n  init({ message: \"You've successfully updated a payment card\", color: 'success' })\n  emits('close')\n}\n</script>\n"
  },
  {
    "path": "src/pages/preferences/Preferences.vue",
    "content": "<template>\n  <h1 class=\"page-title\">Preferences</h1>\n  <div class=\"flex flex-col p-4 space-y-10 bg-backgroundSecondary rounded-lg\">\n    <div class=\"flex space-x-5\">\n      <PreferencesHeader />\n    </div>\n    <div class=\"space-y-4 md:space-y-6\">\n      <Settings @openNameModal=\"isEditNameModalOpen = true\" @openResetPasswordModal=\"isResetPasswordModalOpen = true\" />\n    </div>\n  </div>\n  <EditNameModal v-if=\"isEditNameModalOpen\" @cancel=\"isEditNameModalOpen = false\" />\n  <ResetPasswordModal v-if=\"isResetPasswordModalOpen\" @cancel=\"isResetPasswordModalOpen = false\" />\n</template>\n<script lang=\"ts\" setup>\nimport { ref } from 'vue'\n\nimport PreferencesHeader from './preferences-header/PreferencesHeader.vue'\nimport Settings from './settings/Settings.vue'\nimport EditNameModal from './modals/EditNameModal.vue'\nimport ResetPasswordModal from './modals/ResetPasswordModal.vue'\n\nconst isEditNameModalOpen = ref(false)\nconst isResetPasswordModalOpen = ref(false)\n</script>\n"
  },
  {
    "path": "src/pages/preferences/modals/EditNameModal.vue",
    "content": "<template>\n  <VaModal\n    :mobile-fullscreen=\"false\"\n    size=\"small\"\n    hide-default-actions\n    max-width=\"380px\"\n    model-value\n    close-button\n    @update:modelValue=\"emits('cancel')\"\n  >\n    <h1 class=\"va-h5 mb-4\">Reset password</h1>\n    <VaForm ref=\"form\" @submit.prevent=\"submit\">\n      <VaInput v-model=\"Name\" class=\"mb-4\" label=\"Name\" placeholder=\"Name\" />\n      <div class=\"flex flex-col-reverse md:flex-row md:items-center md:justify-end md:space-x-4\">\n        <VaButton :style=\"buttonStyles\" preset=\"secondary\" color=\"secondary\" @click=\"emits('cancel')\"> Cancel</VaButton>\n        <VaButton :style=\"buttonStyles\" class=\"mb-4 md:mb-0\" type=\"submit\" @click=\"submit\"> Save</VaButton>\n      </div>\n    </VaForm>\n  </VaModal>\n</template>\n<script lang=\"ts\" setup>\nimport { ref } from 'vue'\nimport { useUserStore } from '../../../stores/user-store'\n\nimport { buttonStyles } from '../styles'\nimport { useToast } from 'vuestic-ui'\n\nconst store = useUserStore()\n\nconst { init } = useToast()\n\nconst emits = defineEmits(['cancel'])\n\nconst Name = ref<string>(store.userName)\n\nconst submit = () => {\n  if (!Name.value || Name.value === store.userName) {\n    return emits('cancel')\n  }\n\n  store.changeUserName(Name.value)\n  init({ message: \"You've successfully changed your name\", color: 'success' })\n  emits('cancel')\n}\n</script>\n\n<style lang=\"scss\">\n// TODO temporary before https://github.com/epicmaxco/vuestic-ui/issues/4020 fix\n.va-modal__inner {\n  min-width: 326px;\n}\n</style>\n"
  },
  {
    "path": "src/pages/preferences/modals/ResetPasswordModal.vue",
    "content": "<template>\n  <VaModal\n    max-width=\"530px\"\n    :mobile-fullscreen=\"false\"\n    hide-default-actions\n    model-value\n    close-button\n    @update:modelValue=\"emits('cancel')\"\n  >\n    <h1 class=\"va-h5 mb-4\">Reset password</h1>\n    <VaForm ref=\"form\" class=\"space-y-6\" @submit.prevent=\"submit\">\n      <div class=\"grid grid-cols-1 md:grid-cols-2 gap-6\">\n        <VaInput\n          v-model=\"oldPassowrd\"\n          :rules=\"oldPasswordRules\"\n          label=\"Old password\"\n          placeholder=\"Old password\"\n          required-mark\n          type=\"password\"\n        />\n        <div class=\"hidden md:block\" />\n        <VaInput\n          v-model=\"newPassword\"\n          :rules=\"newPasswordRules\"\n          label=\"New password\"\n          placeholder=\"New password\"\n          required-mark\n          type=\"password\"\n        />\n        <VaInput\n          v-model=\"repeatNewPassword\"\n          :rules=\"repeatNewPasswordRules\"\n          label=\"Repeat new password\"\n          placeholder=\"Repeat new password\"\n          required-mark\n          type=\"password\"\n        />\n      </div>\n      <div class=\"flex flex-col space-y-2\">\n        <div class=\"flex space-x-2 items-center\">\n          <div>\n            <VaIcon :name=\"newPassword?.length! >= 8 ? 'mso-check' : 'mso-close'\" color=\"secondary\" size=\"20px\" />\n          </div>\n          <p>Must be at least 8 characters long</p>\n        </div>\n        <div class=\"flex space-x-2 items-center\">\n          <div>\n            <VaIcon :name=\"new Set(newPassword).size >= 6 ? 'mso-check' : 'mso-close'\" color=\"secondary\" size=\"20px\" />\n          </div>\n          <p>Must contain at least 6 unique characters</p>\n        </div>\n      </div>\n      <div class=\"flex flex-col-reverse md:justify-end md:flex-row md:space-x-4\">\n        <VaButton :style=\"buttonStyles\" preset=\"secondary\" color=\"secondary\" @click=\"emits('cancel')\"> Cancel</VaButton>\n        <VaButton :style=\"buttonStyles\" class=\"mb-4 md:mb-0\" type=\"submit\" @click=\"submit\"> Update Password</VaButton>\n      </div>\n    </VaForm>\n  </VaModal>\n</template>\n<script lang=\"ts\" setup>\nimport { ref } from 'vue'\nimport { useForm, useToast } from 'vuestic-ui'\n\nimport { buttonStyles } from '../styles'\n\nconst oldPassowrd = ref<string>()\nconst newPassword = ref<string>()\nconst repeatNewPassword = ref<string>()\n\nconst { validate } = useForm('form')\nconst { init } = useToast()\n\nconst emits = defineEmits(['cancel'])\n\nconst submit = () => {\n  if (validate()) {\n    init({ message: \"You've successfully changed your password\", color: 'success' })\n    emits('cancel')\n  }\n}\n\nconst oldPasswordRules = [(v: string) => !!v || 'Old password field is required']\n\nconst newPasswordRules = [\n  (v: string) => !!v || 'New password field is required',\n  (v: string) => v?.length >= 8 || 'Must be at least 8 characters long',\n  (v: string) => new Set(v).size >= 6 || 'Must contain at least 6 unique characters',\n  (v: string) => v !== oldPassowrd.value || 'New password cannot be the same',\n]\n\nconst repeatNewPasswordRules = [\n  (v: string) => !!v || 'Repeat new password field is required',\n  (v: string) => v === newPassword.value || 'Confirm password does not match new password',\n]\n</script>\n\n<style lang=\"scss\">\n// TODO temporary before https://github.com/epicmaxco/vuestic-ui/issues/4020 fix\n.va-modal__inner {\n  min-width: 326px;\n}\n</style>\n"
  },
  {
    "path": "src/pages/preferences/preferences-header/PreferencesHeader.vue",
    "content": "<template>\n  <VaAvatar size=\"large\" color=\"warning\"><span class=\"text-4xl\"> 😍 </span></VaAvatar>\n  <div class=\"flex flex-col justify-center\">\n    <h2 class=\"text-[28px] md:text-[32px] leading-10 font-bold\">{{ store.userName }}</h2>\n    <div class=\"flex space-x-1 text-[13px] leading-4\">\n      <p>Member since</p>\n      <p>{{ store.memberSince }}</p>\n    </div>\n  </div>\n</template>\n<script lang=\"ts\" setup>\nimport { useUserStore } from '../../../stores/user-store'\n\nconst store = useUserStore()\n</script>\n"
  },
  {
    "path": "src/pages/preferences/settings/Settings.vue",
    "content": "<template>\n  <div class=\"flex flex-col md:flex-row md:items-center space-y-2 md:space-y-0 md:space-x-6 min-h-[36px] leading-5\">\n    <p class=\"font-bold w-[200px]\">Name</p>\n    <div class=\"flex-1\">\n      <div class=\"max-w-[748px]\">\n        {{ store.userName }}\n      </div>\n    </div>\n    <VaButton :style=\"buttonStyles\" class=\"w-fit h-fit\" preset=\"primary\" @click=\"emits('openNameModal')\">\n      Edit\n    </VaButton>\n  </div>\n  <VaDivider />\n  <div class=\"flex flex-col md:flex-row space-y-2 md:space-y-0 md:space-x-6 min-h-[36px] leading-5\">\n    <p class=\"font-bold w-[200px]\">Email</p>\n    <div class=\"flex-1\">\n      <div class=\"max-w-[748px]\">\n        {{ store.email }}\n      </div>\n    </div>\n  </div>\n  <div class=\"flex flex-col md:flex-row space-y-2 md:space-y-0 md:space-x-6 min-h-[36px] leading-5\">\n    <p class=\"font-bold w-[200px]\">Password</p>\n    <div class=\"flex-1\">\n      <div class=\"max-w-[748px]\">•••••••••••••</div>\n    </div>\n    <VaButton :style=\"buttonStyles\" class=\"w-fit h-fit\" preset=\"primary\" @click=\"emits('openResetPasswordModal')\">\n      Reset Password\n    </VaButton>\n  </div>\n  <VaDivider />\n  <div class=\"flex flex-col md:flex-row space-y-2 md:space-y-0 md:space-x-6 min-h-[36px] leading-5\">\n    <p class=\"font-bold w-[200px]\">Two-factor authentication</p>\n    <div class=\"flex-1\">\n      <div class=\"max-w-[748px]\">\n        {{ twoFA.content }}\n      </div>\n    </div>\n    <VaButton :style=\"buttonStyles\" class=\"w-fit h-fit\" preset=\"primary\" :color=\"twoFA.color\" @click=\"toggle2FA\">\n      {{ twoFA.button }}\n    </VaButton>\n  </div>\n  <VaDivider />\n  <div class=\"flex flex-col md:flex-row space-y-2 md:space-y-0 md:space-x-6 min-h-[36px] leading-5\">\n    <p class=\"font-bold w-[200px]\">Email subscriptions</p>\n    <div class=\"flex-1\">\n      <div class=\"max-w-[748px]\">\n        <p>To manage what emails you get, visit the</p>\n        <div class=\"flex space-x-1 w-fit\">\n          <RouterLink :to=\"{ name: 'settings' }\" class=\"font-semibold text-primary\">Notification settings</RouterLink>\n        </div>\n      </div>\n    </div>\n  </div>\n</template>\n<script lang=\"ts\" setup>\nimport { computed } from 'vue'\n\nimport { useToast } from 'vuestic-ui'\n\nimport { useUserStore } from '../../../stores/user-store'\n\nimport { buttonStyles } from '../styles'\n\nconst store = useUserStore()\n\nconst { init } = useToast()\n\nconst toastMessage = computed(() => (store.is2FAEnabled ? '2FA successfully enabled' : '2FA successfully disabled'))\n\nconst twoFA = computed(() => {\n  if (store.is2FAEnabled) {\n    return {\n      color: 'danger',\n      button: 'Disable 2FA',\n      content:\n        'Two-Factor Authentication (2FA) is now enabled for your account, adding an extra layer of security to your sign-ins.',\n    }\n  } else {\n    return {\n      color: 'primary',\n      button: 'Set up 2FA',\n      content:\n        'Add an extra layer of security to your account. To sign in, you’ll need to provide a code along with your username and password.',\n    }\n  }\n})\n\nconst toggle2FA = () => {\n  store.toggle2FA()\n  init({ message: toastMessage.value, color: 'success' })\n}\n\nconst emits = defineEmits(['openNameModal', 'openResetPasswordModal'])\n</script>\n"
  },
  {
    "path": "src/pages/preferences/styles.ts",
    "content": "export const buttonStyles = {\n  '--va-button-font-size': '14px',\n  '--va-button-line-height': '20px',\n}\n"
  },
  {
    "path": "src/pages/pricing-plans/PricingPlans.vue",
    "content": "<template>\n  <h1 class=\"page-title\">Choose your plan</h1>\n  <div class=\"py-4 text-lg leading-[26px]\">\n    If you need more info about our pricing, please check\n    <span class=\"text-primary underline\">Pricing Guidelines</span>.\n  </div>\n  <div class=\"flex flex-col p-4 bg-backgroundSecondary\">\n    <div class=\"flex justify-center\">\n      <VaButtonToggle\n        v-model=\"selectedDuration\"\n        color=\"background-element\"\n        border-color=\"background-element\"\n        :options=\"[\n          { label: 'Monthly', value: 'Monthly' },\n          { label: 'Annual', value: 'Annual' },\n        ]\"\n      />\n    </div>\n    <div class=\"flex flex-col md:flex-row justify-center items-center space-y-4 md:space-x-6 md:space-y-0 mt-6\">\n      <VaCard\n        v-for=\"plan in pricingPlans\"\n        :key=\"plan.model\"\n        :class=\"{\n          'md:!py-10 !bg-backgroundCardSecondary': plan.model === 'Advanced',\n          '!bg-backgroundCardPrimary': plan.model !== 'Advanced',\n          'ring-2 ring-primary ring-offset-2': plan.model === selectedPlan,\n        }\"\n        class=\"flex w-[326px] md:w-[349px] h-fit p-6 rounded-[13px]\"\n      >\n        <div :class=\"{ '!space-y-10': plan.model === 'Advanced' }\" class=\"space-y-8 md:space-y-10\">\n          <div class=\"space-y-4 text-center\">\n            <h2 class=\"pricing-plan-card-title\">\n              {{ plan.title }}\n            </h2>\n            <VaBadge v-for=\"badge in plan.badges\" :key=\"badge\" :style=\"badgeStyles\" :text=\"badge\" color=\"primary\" />\n            <p class=\"text-lg leading-[26px] text-secondary\">\n              {{ plan.description }}\n            </p>\n            <div class=\"flex space-x-1 justify-center items-baseline text-lg leading-[26px]\">\n              <span>$</span\n              ><span class=\"text-[32px] md:text-5xl leading-[110%] md:leading-[56px] font-bold\">{{\n                selectedDuration === 'Annual' ? plan.price : plan.priceMonth\n              }}</span\n              ><span>/ {{ selectedDuration === 'Annual' ? 'year' : 'mo' }}</span>\n            </div>\n          </div>\n          <div class=\"space-y-6\">\n            <div\n              v-for=\"feature in plan.features\"\n              :key=\"feature.description\"\n              class=\"flex justify-between items-center text-lg leading-[26px]\"\n            >\n              <p :class=\"{ 'text-secondary': !feature.isAvailable }\">\n                {{ feature.description }}\n              </p>\n              <VaIcon v-if=\"feature.isAvailable\" color=\"primary\" name=\"mso-check\" size=\"20px\" />\n              <VaIcon v-else color=\"backgroundBorder\" name=\"mso-block\" size=\"20px\" />\n            </div>\n          </div>\n          <div class=\"flex justify-center\">\n            <VaButton\n              :disabled=\"plan.model === selectedPlan\"\n              :style=\"selectButtonStyles\"\n              @click=\"createModal(plan.model)\"\n            >\n              Select\n            </VaButton>\n          </div>\n        </div>\n      </VaCard>\n    </div>\n  </div>\n</template>\n<script lang=\"ts\" setup>\nimport { ref } from 'vue'\nimport { useToast, useModal } from 'vuestic-ui'\n\nimport { badgeStyles, selectButtonStyles } from './styles'\n\nimport { pricingPlans } from './options'\n\nconst { init } = useToast()\nconst { init: initModal } = useModal()\n\nconst selectedDuration = ref<string>('Annual')\nconst selectedPlan = ref<string>()\n\nconst createModal = (planModel: string) => {\n  initModal({\n    message: 'Are you sure you want to change plan?',\n    mobileFullscreen: false,\n    maxWidth: '380px',\n    size: 'small',\n    onOk: () => selectPlan(planModel),\n  })\n}\n\nconst selectPlan = (planModel: string) => {\n  init({ message: 'You successfully changed payment plan!', color: 'success' })\n  selectedPlan.value = planModel\n}\n</script>\n"
  },
  {
    "path": "src/pages/pricing-plans/options.ts",
    "content": "export type PricingPlans = {\n  title: string\n  model: string\n  badges?: string[]\n  description: string\n  price: number\n  priceMonth: number\n  features: Feature[]\n}\n\ntype Feature = {\n  description: string\n  isAvailable: boolean\n}\n\nconst features = [\n  'Up to 10 Active Users',\n  'Up to 30 Project Integrations',\n  'Analytics Module',\n  'Finance Module',\n  'Accounting Module',\n  'Network Platform',\n  'Unlimited Cloud Spase',\n]\n\nexport const pricingPlans: PricingPlans[] = [\n  {\n    title: 'Startup',\n    model: 'Startup',\n    description: 'Optimal for 10+ team size and new startup',\n    price: 39,\n    priceMonth: 5,\n    features: features.map((d, i) => ({ description: d, isAvailable: i < 3 })),\n  },\n  {\n    title: 'Advanced',\n    model: 'Advanced',\n    description: 'Optimal for 100+ team size and grown company',\n    price: 339,\n    priceMonth: 35,\n    features: features.map((d, i) => ({ description: d, isAvailable: i < 5 })),\n    badges: ['Popular choice'],\n  },\n  {\n    title: 'Enterprise',\n    model: 'Enterprise',\n    description: 'Optimal for 1000+ team and enterpise',\n    price: 999,\n    priceMonth: 100,\n    features: features.map((d) => ({ description: d, isAvailable: true })),\n  },\n]\n"
  },
  {
    "path": "src/pages/pricing-plans/styles.ts",
    "content": "export const badgeStyles = {\n  '--va-badge-text-wrapper-line-height': '14px',\n  '--va-badge-text-wrapper-letter-spacing': '0.4px',\n  '--va-badge-text-wrapper-border': 'solid 1px',\n  '--va-badge-font-size': '9px',\n}\n\nexport const selectButtonStyles = {\n  '--va-button-content-py': '10px',\n  '--va-button-content-px': '16px',\n  '--va-button-font-size': '18px',\n  '--va-button-line-height': '26px',\n}\n"
  },
  {
    "path": "src/pages/projects/ProjectsPage.vue",
    "content": "<script setup lang=\"ts\">\nimport { ref, provide } from 'vue'\nimport { useLocalStorage } from '@vueuse/core'\nimport { useProjects } from './composables/useProjects'\nimport ProjectCards from './widgets/ProjectCards.vue'\nimport ProjectTable from './widgets/ProjectsTable.vue'\nimport EditProjectForm from './widgets/EditProjectForm.vue'\nimport { Project } from './types'\nimport { useModal, useToast } from 'vuestic-ui'\nimport { useProjectUsers } from './composables/useProjectUsers'\n\nconst doShowAsCards = useLocalStorage('projects-view', true)\n\nconst { projects, update, add, isLoading, remove, pagination, sorting } = useProjects()\n\nconst { users, getTeamOptions, getUserById } = useProjectUsers()\n\nprovide('ProjectsPage', {\n  users,\n  getTeamOptions,\n  getUserById,\n})\n\nconst projectToEdit = ref<Project | null>(null)\nconst doShowProjectFormModal = ref(false)\n\nconst editProject = (project: Project) => {\n  projectToEdit.value = project\n  doShowProjectFormModal.value = true\n}\n\nconst createNewProject = () => {\n  projectToEdit.value = null\n  doShowProjectFormModal.value = true\n}\n\nconst { init: notify } = useToast()\n\nconst onProjectSaved = async (project: Project) => {\n  doShowProjectFormModal.value = false\n  if ('id' in project) {\n    await update(project as Project)\n    notify({\n      message: 'Project updated',\n      color: 'success',\n    })\n  } else {\n    await add(project as Project)\n    notify({\n      message: 'Project created',\n      color: 'success',\n    })\n  }\n}\n\nconst { confirm } = useModal()\n\nconst onProjectDeleted = async (project: Project) => {\n  const response = await confirm({\n    title: 'Delete project',\n    message: `Are you sure you want to delete project \"${project.project_name}\"?`,\n    okText: 'Delete',\n    size: 'small',\n    maxWidth: '380px',\n  })\n\n  if (!response) {\n    return\n  }\n\n  await remove(project)\n  notify({\n    message: 'Project deleted',\n    color: 'success',\n  })\n}\n\nconst editFormRef = ref()\n\nconst beforeEditFormModalClose = async (hide: () => unknown) => {\n  if (editFormRef.value.isFormHasUnsavedChanges) {\n    const agreed = await confirm({\n      maxWidth: '380px',\n      message: 'Form has unsaved changes. Are you sure you want to close it?',\n      size: 'small',\n    })\n    if (agreed) {\n      hide()\n    }\n  } else {\n    hide()\n  }\n}\n</script>\n\n<template>\n  <h1 class=\"page-title\">Projects</h1>\n\n  <VaCard>\n    <VaCardContent>\n      <div class=\"flex flex-col md:flex-row gap-2 mb-2 justify-between\">\n        <div class=\"flex flex-col md:flex-row gap-2 justify-start\">\n          <VaButtonToggle\n            v-model=\"doShowAsCards\"\n            color=\"background-element\"\n            border-color=\"background-element\"\n            :options=\"[\n              { label: 'Cards', value: true },\n              { label: 'Table', value: false },\n            ]\"\n          />\n        </div>\n        <VaButton icon=\"add\" @click=\"createNewProject\">Project</VaButton>\n      </div>\n\n      <ProjectCards\n        v-if=\"doShowAsCards\"\n        :projects=\"projects\"\n        :loading=\"isLoading\"\n        @edit=\"editProject\"\n        @delete=\"onProjectDeleted\"\n      />\n      <ProjectTable\n        v-else\n        v-model:sort-by=\"sorting.sortBy\"\n        v-model:sorting-order=\"sorting.sortingOrder\"\n        v-model:pagination=\"pagination\"\n        :projects=\"projects\"\n        :loading=\"isLoading\"\n        @edit=\"editProject\"\n        @delete=\"onProjectDeleted\"\n      />\n    </VaCardContent>\n\n    <VaModal\n      v-slot=\"{ cancel, ok }\"\n      v-model=\"doShowProjectFormModal\"\n      size=\"small\"\n      mobile-fullscreen\n      close-button\n      stateful\n      hide-default-actions\n      :before-cancel=\"beforeEditFormModalClose\"\n    >\n      <h1 v-if=\"projectToEdit === null\" class=\"va-h5 mb-4\">Add project</h1>\n      <h1 v-else class=\"va-h5 mb-4\">Edit project</h1>\n      <EditProjectForm\n        ref=\"editFormRef\"\n        :project=\"projectToEdit\"\n        :save-button-label=\"projectToEdit === null ? 'Add' : 'Save'\"\n        @close=\"cancel\"\n        @save=\"\n          (project) => {\n            onProjectSaved(project)\n            ok()\n          }\n        \"\n      />\n    </VaModal>\n  </VaCard>\n</template>\n"
  },
  {
    "path": "src/pages/projects/components/ProjectStatusBadge.vue",
    "content": "<script setup lang=\"ts\">\nimport { PropType } from 'vue'\nimport { Project } from '../types'\n\ndefineProps({\n  status: {\n    type: String as PropType<Project['status']>,\n    required: true,\n  },\n})\n\nconst badgeColorMap: Record<Project['status'], string> = {\n  'in progress': 'primary',\n  archived: 'secondary',\n  completed: 'success',\n  important: 'warning',\n}\n</script>\n\n<template>\n  <VaBadge square :color=\"badgeColorMap[$props.status]\" :text=\"$props.status.toUpperCase()\" />\n</template>\n"
  },
  {
    "path": "src/pages/projects/composables/useProjectStatusColor.ts",
    "content": ""
  },
  {
    "path": "src/pages/projects/composables/useProjectUsers.ts",
    "content": "import { useUsers } from '../../users/composables/useUsers'\nimport { Project } from '../types'\n\nexport function useProjectUsers() {\n  const { users } = useUsers()\n\n  const getUserById = (userId: string) => {\n    return users.value.find(({ id }) => userId === id)\n  }\n\n  const avatarColor = (userName: string) => {\n    const colors = ['primary', '#FFD43A', '#ADFF00', '#262824', 'danger']\n    const index = userName.charCodeAt(0) % colors.length\n    return colors[index]\n  }\n\n  const getTeamOptions = (team: Project['team']) => {\n    return team.reduce(\n      (acc, userId) => {\n        const user = getUserById(userId)\n\n        if (user) {\n          acc.push({\n            label: user.fullname,\n            src: user.avatar,\n            fallbackText: user.fullname[0],\n            color: avatarColor(user.fullname),\n          })\n        }\n\n        return acc\n      },\n      [] as Record<string, string>[],\n    )\n  }\n\n  return {\n    users,\n    getUserById,\n    getTeamOptions,\n  }\n}\n"
  },
  {
    "path": "src/pages/projects/composables/useProjects.ts",
    "content": "import { Ref, ref, unref, computed } from 'vue'\nimport { Sorting, Pagination } from '../../../data/pages/projects'\nimport { Project } from '../types'\nimport { useProjectsStore } from '../../../stores/projects'\nimport { useProjectUsers } from './useProjectUsers'\n\nconst makePaginationRef = () => ref<Pagination>({ page: 1, perPage: 10, total: 0 })\nconst makeSortingRef = () => ref<Sorting>({ sortBy: 'created_at', sortingOrder: 'desc' })\n\nexport const useProjects = (options?: { sorting?: Ref<Sorting>; pagination?: Ref<Pagination> }) => {\n  const isLoading = ref(false)\n  const projectsStore = useProjectsStore()\n  const { getUserById } = useProjectUsers()\n\n  const { sorting = makeSortingRef(), pagination = makePaginationRef() } = options ?? {}\n\n  const fetch = async () => {\n    isLoading.value = true\n    await projectsStore.getAll({\n      sorting: unref(sorting),\n      pagination: unref(pagination),\n    })\n    pagination.value = projectsStore.pagination\n\n    isLoading.value = false\n  }\n\n  const projects = computed(() => {\n    const paginated = projectsStore.items.slice(\n      (pagination.value.page - 1) * pagination.value.perPage,\n      pagination.value.page * pagination.value.perPage,\n    )\n\n    const getSortItem = (obj: any, sortBy: Sorting['sortBy']) => {\n      if (sortBy === 'project_owner') {\n        return getUserById(obj.project_owner)?.fullname\n      }\n\n      if (sortBy === 'team') {\n        return obj.team.map((user: any) => getUserById(user)?.fullname || '').join(', ')\n      }\n\n      if (sortBy === 'created_at') {\n        return new Date(obj[sortBy])\n      }\n\n      return obj[sortBy]\n    }\n\n    if (sorting.value.sortBy && sorting.value.sortingOrder) {\n      paginated.sort((a, b) => {\n        a = getSortItem(a, sorting.value.sortBy!)\n        b = getSortItem(b, sorting.value.sortBy!)\n\n        if (a < b) {\n          return sorting.value.sortingOrder === 'asc' ? -1 : 1\n        }\n        if (a > b) {\n          return sorting.value.sortingOrder === 'asc' ? 1 : -1\n        }\n        return 0\n      })\n    }\n\n    return paginated\n  })\n\n  fetch()\n\n  return {\n    isLoading,\n\n    projects,\n\n    fetch,\n\n    async add(project: Omit<Project, 'id' | 'created_at'>) {\n      isLoading.value = true\n      await projectsStore.add(project)\n      await fetch()\n      isLoading.value = false\n    },\n\n    async update(project: Project) {\n      isLoading.value = true\n      await projectsStore.update(project)\n      await fetch()\n      isLoading.value = false\n    },\n\n    async remove(project: Project) {\n      isLoading.value = true\n      await projectsStore.remove(project)\n      await fetch()\n      isLoading.value = false\n    },\n\n    pagination,\n    sorting,\n  }\n}\n"
  },
  {
    "path": "src/pages/projects/types.ts",
    "content": "import { User } from '../users/types'\n\nexport type UUID = `${string}-${string}-${string}-${string}-${string}`\n\nexport type Project = {\n  id: UUID\n  project_name: string\n  project_owner: User['id']\n  team: User['id'][]\n  status: 'important' | 'completed' | 'archived' | 'in progress'\n  created_at: string\n}\n\nexport type EmptyProject = Omit<Project, 'id' | 'project_owner' | 'created_at' | 'status'> & {\n  project_owner: Project['project_owner'] | undefined\n  status: Project['status'] | undefined\n}\n"
  },
  {
    "path": "src/pages/projects/widgets/EditProjectForm.vue",
    "content": "<script setup lang=\"ts\">\nimport { computed, ref, watch } from 'vue'\nimport { EmptyProject, Project } from '../types'\nimport { SelectOption, useBreakpoint } from 'vuestic-ui'\nimport ProjectStatusBadge from '../components/ProjectStatusBadge.vue'\nimport UserAvatar from '../../users/widgets/UserAvatar.vue'\nimport { useUsersStore } from '../../../stores/users'\n\nconst props = defineProps<{\n  project: Project | null\n  saveButtonLabel: string\n}>()\n\ndefineEmits<{\n  (event: 'save', project: Project): void\n  (event: 'close'): void\n}>()\n\nconst bp = useBreakpoint()\n\nconst defaultNewProject: EmptyProject = {\n  project_name: '',\n  project_owner: undefined,\n  team: [],\n  status: undefined,\n}\n\nconst newProject = ref({ ...defaultNewProject })\n\nconst isFormHasUnsavedChanges = computed(() => {\n  return Object.keys(newProject.value).some((key) => {\n    if (key === 'team') {\n      return false\n    }\n\n    return (\n      newProject.value[key as keyof EmptyProject] !== (props.project ?? defaultNewProject)?.[key as keyof EmptyProject]\n    )\n  })\n})\n\ndefineExpose({\n  isFormHasUnsavedChanges,\n})\n\nconst usersStore = useUsersStore()\n\nwatch(\n  () => props.project,\n  () => {\n    if (!props.project) {\n      return\n    }\n\n    newProject.value = {\n      ...props.project,\n      project_owner: props.project.project_owner,\n    }\n  },\n  { immediate: true },\n)\n\nconst required = (v: string | SelectOption) => !!v || 'This field is required'\n\nconst ownerFiltersSearch = ref('')\nconst teamFiltersSearch = ref('')\n</script>\n\n<template>\n  <VaForm v-slot=\"{ validate }\" class=\"flex flex-col gap-2\">\n    <VaInput v-model=\"newProject.project_name\" label=\"Project name\" :rules=\"[required]\" />\n    <VaSelect\n      v-model=\"newProject.project_owner\"\n      v-model:search=\"ownerFiltersSearch\"\n      searchable\n      label=\"Owner\"\n      text-by=\"fullname\"\n      track-by=\"id\"\n      value-by=\"id\"\n      :rules=\"[required]\"\n      :options=\"usersStore.items\"\n    >\n      <template #content=\"{ value: user }\">\n        <div v-if=\"user\" :key=\"user.id\" class=\"flex items-center gap-1 mr-4\">\n          <UserAvatar v-if=\"false\" :user=\"user\" size=\"18px\" />\n          {{ user.fullname }}\n        </div>\n      </template>\n    </VaSelect>\n    <VaSelect\n      v-model=\"newProject.team\"\n      v-model:search=\"teamFiltersSearch\"\n      label=\"Team\"\n      text-by=\"fullname\"\n      track-by=\"id\"\n      value-by=\"id\"\n      multiple\n      :rules=\"[(v: any) => ('length' in v && v.length > 0) || 'This field is required']\"\n      :options=\"usersStore.items\"\n      :max-visible-options=\"bp.mdUp ? 3 : 1\"\n    >\n      <template #content=\"{ valueArray }\">\n        <template v-if=\"valueArray?.length\">\n          <div v-for=\"(user, index) in valueArray\" :key=\"user.id\" class=\"flex items-center gap-1 mr-2\">\n            <UserAvatar v-if=\"user\" :user=\"user\" size=\"18px\" />\n            {{ user.fullname }}{{ index < valueArray.length - 1 ? ',' : '' }}\n          </div>\n        </template>\n      </template>\n    </VaSelect>\n    <VaSelect\n      v-model=\"newProject.status\"\n      label=\"Status\"\n      :rules=\"[required]\"\n      track-by=\"value\"\n      value-by=\"value\"\n      :options=\"[\n        { text: 'In progress', value: 'in progress' },\n        { text: 'Archived', value: 'archived' },\n        { text: 'Completed', value: 'completed' },\n        { text: 'Important', value: 'important' },\n      ]\"\n    >\n      <template #content=\"{ value }\">\n        <ProjectStatusBadge v-if=\"value\" :status=\"value.value\" />\n      </template>\n    </VaSelect>\n    <div class=\"flex justify-end flex-col-reverse sm:flex-row mt-4 gap-2\">\n      <VaButton preset=\"secondary\" color=\"secondary\" @click=\"$emit('close')\">Cancel</VaButton>\n      <VaButton @click=\"validate() && $emit('save', newProject as Project)\">{{ saveButtonLabel }}</VaButton>\n    </div>\n  </VaForm>\n</template>\n\n<style lang=\"scss\" scoped>\n.va-select-content__autocomplete {\n  flex: 1;\n}\n\n.va-input-wrapper__text {\n  gap: 0.2rem;\n}\n</style>\n"
  },
  {
    "path": "src/pages/projects/widgets/ProjectCards.vue",
    "content": "<script setup lang=\"ts\">\nimport { type PropType, inject } from 'vue'\nimport { type Project } from '../types'\nimport ProjectStatusBadge from '../components/ProjectStatusBadge.vue'\n\ndefineProps({\n  projects: {\n    type: Array as PropType<Project[]>,\n    required: true,\n  },\n  loading: {\n    type: Boolean,\n    required: true,\n  },\n})\n\ndefineEmits<{\n  (event: 'edit', project: Project): void\n  (event: 'delete', project: Project): void\n}>()\n\nconst { getUserById, getTeamOptions } = inject<any>('ProjectsPage')\n</script>\n\n<template>\n  <VaInnerLoading\n    v-if=\"projects.length > 0 || loading\"\n    :loading=\"loading\"\n    class=\"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 min-h-[4rem]\"\n  >\n    <VaCard\n      v-for=\"project in projects\"\n      :key=\"project.project_name\"\n      :style=\"{ '--va-card-outlined-border': '1px solid var(--va-background-element)' }\"\n      outlined\n    >\n      <VaCardContent class=\"flex flex-col h-full\">\n        <div class=\"text-[var(--va-secondary)]\">{{ new Date(project.created_at).toLocaleDateString() }}</div>\n        <div class=\"flex flex-col items-center gap-4 grow\">\n          <h4 class=\"va-h4 text-center self-stretch overflow-hidden line-clamp-2 text-ellipsis\">\n            {{ project.project_name }}\n          </h4>\n          <p>\n            <span class=\"text-[var(--va-secondary)]\">Owner: </span>\n            <span v-if=\"getUserById(project.project_owner)\">{{ getUserById(project.project_owner)!.fullname }}</span>\n          </p>\n          <VaAvatarGroup class=\"my-4\" :options=\"getTeamOptions(project.team)\" :max=\"5\" />\n          <ProjectStatusBadge :status=\"project.status\" />\n        </div>\n        <VaDivider class=\"my-6\" />\n        <div class=\"flex justify-between\">\n          <VaButton preset=\"secondary\" icon=\"mso-edit\" color=\"secondary\" @click=\"$emit('edit', project)\" />\n          <VaButton preset=\"secondary\" icon=\"mso-delete\" color=\"danger\" @click=\"$emit('delete', project)\" />\n        </div>\n      </VaCardContent>\n    </VaCard>\n  </VaInnerLoading>\n  <div v-else class=\"p-4 flex justify-center items-center text-[var(--va-secondary)]\">No projects</div>\n</template>\n"
  },
  {
    "path": "src/pages/projects/widgets/ProjectsTable.vue",
    "content": "<script setup lang=\"ts\">\nimport { PropType, computed, inject } from 'vue'\nimport { defineVaDataTableColumns } from 'vuestic-ui'\nimport { Project } from '../types'\nimport UserAvatar from '../../users/widgets/UserAvatar.vue'\nimport ProjectStatusBadge from '../components/ProjectStatusBadge.vue'\nimport { Pagination, Sorting } from '../../../data/pages/projects'\nimport { useVModel } from '@vueuse/core'\n\nconst columns = defineVaDataTableColumns([\n  { label: 'Project name', key: 'project_name', sortable: true },\n  { label: 'Project owner', key: 'project_owner', sortable: true },\n  { label: 'Team', key: 'team', sortable: true },\n  { label: 'Status', key: 'status', sortable: true },\n  { label: 'Creation Date', key: 'created_at', sortable: true },\n  { label: ' ', key: 'actions' },\n])\n\nconst props = defineProps({\n  projects: {\n    type: Array as PropType<Project[]>,\n    required: true,\n  },\n  loading: {\n    type: Boolean,\n    required: true,\n  },\n  sortBy: {\n    type: String as PropType<Sorting['sortBy']>,\n    default: undefined,\n  },\n  sortingOrder: {\n    type: String as PropType<Sorting['sortingOrder']>,\n    default: undefined,\n  },\n  pagination: {\n    type: Object as PropType<Pagination>,\n    required: true,\n  },\n})\n\nconst emit = defineEmits<{\n  (event: 'edit', project: Project): void\n  (event: 'delete', project: Project): void\n}>()\n\nconst sortByVModel = useVModel(props, 'sortBy', emit)\nconst sortingOrderVModel = useVModel(props, 'sortingOrder', emit)\n\nconst totalPages = computed(() => Math.ceil(props.pagination.total / props.pagination.perPage))\nconst { getUserById, getTeamOptions } = inject<any>('ProjectsPage')\n</script>\n\n<template>\n  <div>\n    <VaDataTable\n      v-model:sort-by=\"sortByVModel\"\n      v-model:sorting-order=\"sortingOrderVModel\"\n      :items=\"projects\"\n      :columns=\"columns\"\n      :loading=\"loading\"\n    >\n      <template #cell(project_name)=\"{ rowData }\">\n        <div class=\"ellipsis max-w-[230px] lg:max-w-[450px]\">\n          {{ rowData.project_name }}\n        </div>\n      </template>\n      <template #cell(project_owner)=\"{ rowData }\">\n        <div v-if=\"getUserById(rowData.project_owner)\" class=\"flex items-center gap-2 ellipsis max-w-[230px]\">\n          <UserAvatar :user=\"getUserById(rowData.project_owner)\" size=\"small\" />\n          {{ getUserById(rowData.project_owner).fullname }}\n        </div>\n      </template>\n      <template #cell(team)=\"{ rowData: project }\">\n        <VaAvatarGroup size=\"small\" :options=\"getTeamOptions(project.team)\" :max=\"5\" />\n      </template>\n      <template #cell(status)=\"{ rowData: project }\">\n        <ProjectStatusBadge :status=\"project.status\" />\n      </template>\n\n      <template #cell(created_at)=\"{ rowData: project }\">\n        {{ new Date(project.created_at).toLocaleDateString() }}\n      </template>\n\n      <template #cell(actions)=\"{ rowData: project }\">\n        <div class=\"flex gap-2 justify-end\">\n          <VaButton\n            preset=\"primary\"\n            size=\"small\"\n            color=\"primary\"\n            icon=\"mso-edit\"\n            aria-label=\"Edit project\"\n            @click=\"$emit('edit', project as Project)\"\n          />\n          <VaButton\n            preset=\"primary\"\n            size=\"small\"\n            icon=\"mso-delete\"\n            color=\"danger\"\n            aria-label=\"Delete project\"\n            @click=\"$emit('delete', project as Project)\"\n          />\n        </div>\n      </template>\n    </VaDataTable>\n    <div class=\"flex flex-col-reverse md:flex-row gap-2 justify-between items-center py-2\">\n      <div>\n        <b>{{ $props.pagination.total }} results.</b>\n        Results per page\n        <VaSelect v-model=\"$props.pagination.perPage\" class=\"!w-20\" :options=\"[10, 50, 100]\" />\n      </div>\n\n      <div v-if=\"totalPages > 1\" class=\"flex\">\n        <VaButton\n          preset=\"secondary\"\n          icon=\"va-arrow-left\"\n          aria-label=\"Previous page\"\n          :disabled=\"$props.pagination.page === 1\"\n          @click=\"$props.pagination.page--\"\n        />\n        <VaButton\n          class=\"mr-2\"\n          preset=\"secondary\"\n          icon=\"va-arrow-right\"\n          aria-label=\"Next page\"\n          :disabled=\"$props.pagination.page === totalPages\"\n          @click=\"$props.pagination.page++\"\n        />\n        <VaPagination\n          v-model=\"$props.pagination.page\"\n          buttons-preset=\"secondary\"\n          :pages=\"totalPages\"\n          :visible-pages=\"5\"\n          :boundary-links=\"false\"\n          :direction-links=\"false\"\n        />\n      </div>\n    </div>\n  </div>\n</template>\n\n<style lang=\"scss\" scoped>\n.va-data-table {\n  ::v-deep(tbody .va-data-table__table-tr) {\n    border-bottom: 1px solid var(--va-background-border);\n  }\n}\n</style>\n"
  },
  {
    "path": "src/pages/settings/Settings.vue",
    "content": "<template>\n  <div class=\"flex flex-col space-y-6 md:space-y-4\">\n    <h1 class=\"page-title\">Settings</h1>\n    <div class=\"flex flex-col p-4 space-y-4 bg-backgroundSecondary rounded-lg\">\n      <h3 class=\"h3\">Theme</h3>\n      <ThemeSwitcher />\n    </div>\n    <div class=\"flex flex-col p-4 space-y-4 bg-backgroundSecondary rounded-lg\">\n      <h3 class=\"h3\">General preferences</h3>\n      <LanguageSwitcher />\n    </div>\n    <VaAlert class=\"rounded-lg p-4 m-0\" closeable color=\"info\">\n      <template #icon>\n        <VaIcon size=\"26px\" name=\"mso-notifications_active\" />\n      </template>\n      <div class=\"flex flex-col space-y-2\">\n        <p class=\"text-regularLarge font-bold\">Your notification settings are regrouped and simplified</p>\n        <p class=\"text-regularMedium\">Your previous setting choices aren't changed.</p>\n      </div>\n    </VaAlert>\n    <Notifications />\n  </div>\n</template>\n<script lang=\"ts\" setup>\nimport LanguageSwitcher from './language-switcher/LanguageSwitcher.vue'\nimport ThemeSwitcher from './theme-switcher/ThemeSwitcher.vue'\nimport Notifications from './notifications/Notifications.vue'\n</script>\n"
  },
  {
    "path": "src/pages/settings/language-switcher/LanguageSwitcher.vue",
    "content": "<template>\n  <div class=\"flex items-center justify-between\">\n    <p>Language</p>\n    <div class=\"w-40\">\n      <VaSelect v-model=\"model\" :options=\"options\" />\n    </div>\n  </div>\n</template>\n<script lang=\"ts\" setup>\nimport { computed } from 'vue'\n\nimport { useI18n } from 'vue-i18n'\n\ntype LanguageMap = Record<string, string>\n\nconst { locale } = useI18n()\n\nconst languages: LanguageMap = {\n  english: 'English',\n  spanish: 'Spanish',\n  brazilian_portuguese: 'Português',\n  simplified_chinese: 'Simplified Chinese',\n  persian: 'Persian',\n}\n\nconst languageCodes: LanguageMap = {\n  gb: languages.english,\n  es: languages.spanish,\n  br: languages.brazilian_portuguese,\n  cn: languages.simplified_chinese,\n  ir: languages.persian,\n}\n\nconst languageName: LanguageMap = Object.fromEntries(Object.entries(languageCodes).map(([key, value]) => [value, key]))\n\nconst options = Object.values(languageCodes)\n\nconst model = computed({\n  get() {\n    return languageCodes[locale.value]\n  },\n  set(value) {\n    locale.value = languageName[value]\n  },\n})\n</script>\n"
  },
  {
    "path": "src/pages/settings/notifications/Notifications.vue",
    "content": "<template>\n  <div class=\"flex flex-col p-4 bg-backgroundSecondary rounded-lg\">\n    <h3 class=\"h3 mb-6\">Notifications you receive</h3>\n    <div v-for=\"notification in notifications\" :key=\"notification.name\" class=\"group\">\n      <div class=\"flex items-center justify-between overflow-x-hidden\">\n        <p class=\"text-regularLarge\">\n          {{ notification.name }}\n        </p>\n        <VaSwitch v-model=\"notification.isEnabled\" size=\"small\" />\n      </div>\n      <VaDivider class=\"py-4 group-last:hidden\" />\n    </div>\n  </div>\n</template>\n<script lang=\"ts\" setup>\nimport { useNotificationsStore } from '../../../stores/notifications'\n\nconst { notifications } = useNotificationsStore()\n</script>\n"
  },
  {
    "path": "src/pages/settings/theme-switcher/ThemeSwitcher.vue",
    "content": "<template>\n  <VaButtonToggle v-model=\"theme\" color=\"background-element\" border-color=\"background-element\" :options=\"options\" />\n</template>\n<script lang=\"ts\" setup>\nimport { computed } from 'vue'\n\nimport { useI18n } from 'vue-i18n'\n\nimport { useColors } from 'vuestic-ui'\n\nconst { applyPreset, currentPresetName } = useColors()\n\nconst theme = computed({\n  get() {\n    return currentPresetName.value\n  },\n  set(value) {\n    applyPreset(value)\n  },\n})\n\nconst { t } = useI18n()\n\nconst options = [\n  { label: t('buttonSelect.dark'), value: 'dark' },\n  { label: t('buttonSelect.light'), value: 'light' },\n]\n</script>\n"
  },
  {
    "path": "src/pages/users/UsersPage.vue",
    "content": "<script setup lang=\"ts\">\nimport { ref, watchEffect } from 'vue'\nimport UsersTable from './widgets/UsersTable.vue'\nimport EditUserForm from './widgets/EditUserForm.vue'\nimport { User } from './types'\nimport { useUsers } from './composables/useUsers'\nimport { useModal, useToast } from 'vuestic-ui'\nimport { useProjects } from '../projects/composables/useProjects'\n\nconst doShowEditUserModal = ref(false)\n\nconst { users, isLoading, filters, sorting, pagination, error, ...usersApi } = useUsers()\nconst { projects } = useProjects()\n\nconst userToEdit = ref<User | null>(null)\n\nconst showEditUserModal = (user: User) => {\n  userToEdit.value = user\n  doShowEditUserModal.value = true\n}\n\nconst showAddUserModal = () => {\n  userToEdit.value = null\n  doShowEditUserModal.value = true\n}\n\nconst { init: notify } = useToast()\n\nwatchEffect(() => {\n  if (error.value) {\n    notify({\n      message: error.value.message,\n      color: 'danger',\n    })\n  }\n})\n\nconst onUserSaved = async (user: User) => {\n  if (user.avatar.startsWith('blob:')) {\n    const blob = await fetch(user.avatar).then((r) => r.blob())\n    const { publicUrl } = await usersApi.uploadAvatar(blob)\n    user.avatar = publicUrl\n  }\n\n  if (userToEdit.value) {\n    await usersApi.update(user)\n    if (!error.value) {\n      notify({\n        message: `${user.fullname} has been updated`,\n        color: 'success',\n      })\n    }\n  } else {\n    await usersApi.add(user)\n\n    if (!error.value) {\n      notify({\n        message: `${user.fullname} has been created`,\n        color: 'success',\n      })\n    }\n  }\n}\n\nconst onUserDelete = async (user: User) => {\n  await usersApi.remove(user)\n  notify({\n    message: `${user.fullname} has been deleted`,\n    color: 'success',\n  })\n}\n\nconst editFormRef = ref()\n\nconst { confirm } = useModal()\n\nconst beforeEditFormModalClose = async (hide: () => unknown) => {\n  if (editFormRef.value.isFormHasUnsavedChanges) {\n    const agreed = await confirm({\n      maxWidth: '380px',\n      message: 'Form has unsaved changes. Are you sure you want to close it?',\n      size: 'small',\n    })\n    if (agreed) {\n      hide()\n    }\n  } else {\n    hide()\n  }\n}\n</script>\n\n<template>\n  <h1 class=\"page-title\">Users</h1>\n\n  <VaCard>\n    <VaCardContent>\n      <div class=\"flex flex-col md:flex-row gap-2 mb-2 justify-between\">\n        <div class=\"flex flex-col md:flex-row gap-2 justify-start\">\n          <VaButtonToggle\n            v-model=\"filters.isActive\"\n            color=\"background-element\"\n            border-color=\"background-element\"\n            :options=\"[\n              { label: 'Active', value: true },\n              { label: 'Inactive', value: false },\n            ]\"\n          />\n          <VaInput v-model=\"filters.search\" placeholder=\"Search\">\n            <template #prependInner>\n              <VaIcon name=\"search\" color=\"secondary\" size=\"small\" />\n            </template>\n          </VaInput>\n        </div>\n        <VaButton @click=\"showAddUserModal\">Add User</VaButton>\n      </div>\n\n      <UsersTable\n        v-model:sort-by=\"sorting.sortBy\"\n        v-model:sorting-order=\"sorting.sortingOrder\"\n        :users=\"users\"\n        :projects=\"projects\"\n        :loading=\"isLoading\"\n        :pagination=\"pagination\"\n        @editUser=\"showEditUserModal\"\n        @deleteUser=\"onUserDelete\"\n      />\n    </VaCardContent>\n  </VaCard>\n\n  <VaModal\n    v-slot=\"{ cancel, ok }\"\n    v-model=\"doShowEditUserModal\"\n    size=\"small\"\n    mobile-fullscreen\n    close-button\n    hide-default-actions\n    :before-cancel=\"beforeEditFormModalClose\"\n  >\n    <h1 class=\"va-h5\">{{ userToEdit ? 'Edit user' : 'Add user' }}</h1>\n    <EditUserForm\n      ref=\"editFormRef\"\n      :user=\"userToEdit\"\n      :save-button-label=\"userToEdit ? 'Save' : 'Add'\"\n      @close=\"cancel\"\n      @save=\"\n        (user) => {\n          onUserSaved(user)\n          ok()\n        }\n      \"\n    />\n  </VaModal>\n</template>\n"
  },
  {
    "path": "src/pages/users/composables/useUsers.ts",
    "content": "import { Ref, ref, unref, watch, computed } from 'vue'\nimport { v4 as uuid } from 'uuid'\nimport type { Filters, Pagination, Sorting } from '../../../data/pages/users'\nimport { User } from '../types'\nimport { useUsersStore } from '../../../stores/users'\n\nconst makePaginationRef = () => ref<Pagination>({ page: 1, perPage: 10, total: 0 })\nconst makeSortingRef = () => ref<Sorting>({ sortBy: 'fullname', sortingOrder: null })\nconst makeFiltersRef = () => ref<Partial<Filters>>({ isActive: true, search: '' })\n\nexport const useUsers = (options?: {\n  pagination?: Ref<Pagination>\n  sorting?: Ref<Sorting>\n  filters?: Ref<Partial<Filters>>\n}) => {\n  const isLoading = ref(false)\n  const error = ref()\n  const usersStore = useUsersStore()\n\n  const { filters = makeFiltersRef(), sorting = makeSortingRef(), pagination = makePaginationRef() } = options || {}\n\n  const fetch = async () => {\n    isLoading.value = true\n    try {\n      await usersStore.getAll({\n        filters: unref(filters),\n        sorting: unref(sorting),\n        pagination: unref(pagination),\n      })\n      pagination.value = usersStore.pagination\n    } finally {\n      isLoading.value = false\n    }\n  }\n\n  watch(\n    filters,\n    () => {\n      // Reset pagination to first page when filters changed\n      pagination.value.page = 1\n      fetch()\n    },\n    { deep: true },\n  )\n\n  fetch()\n\n  const users = computed(() => {\n    const getSortItem = (obj: any, sortBy: string) => {\n      if (sortBy === 'projects') {\n        return obj.projects.map((project: any) => project).join(', ')\n      }\n\n      return obj[sortBy]\n    }\n\n    const paginated = usersStore.items.slice(\n      (pagination.value.page - 1) * pagination.value.perPage,\n      pagination.value.page * pagination.value.perPage,\n    )\n\n    if (sorting.value.sortBy && sorting.value.sortingOrder) {\n      paginated.sort((a, b) => {\n        const first = getSortItem(a, sorting.value.sortBy!)\n        const second = getSortItem(b, sorting.value.sortBy!)\n        if (first > second) {\n          return sorting.value.sortingOrder === 'asc' ? 1 : -1\n        }\n        if (first < second) {\n          return sorting.value.sortingOrder === 'asc' ? -1 : 1\n        }\n        return 0\n      })\n    }\n    return paginated\n  })\n\n  return {\n    error,\n    isLoading,\n    filters,\n    sorting,\n    pagination,\n\n    users,\n\n    fetch,\n\n    async add(user: User) {\n      isLoading.value = true\n      try {\n        return await usersStore.add(user)\n      } catch (e) {\n        error.value = e\n      } finally {\n        isLoading.value = false\n      }\n    },\n\n    async update(user: User) {\n      isLoading.value = true\n      try {\n        return await usersStore.update(user)\n      } catch (e) {\n        error.value = e\n      } finally {\n        isLoading.value = false\n      }\n    },\n\n    async remove(user: User) {\n      isLoading.value = true\n      try {\n        return await usersStore.remove(user)\n      } catch (e) {\n        error.value = e\n      } finally {\n        isLoading.value = false\n      }\n    },\n\n    async uploadAvatar(avatar: Blob) {\n      const formData = new FormData()\n      formData.append('avatar', avatar)\n      formData.append('id', uuid())\n\n      return usersStore.uploadAvatar(formData)\n    },\n  }\n}\n"
  },
  {
    "path": "src/pages/users/types.ts",
    "content": "export type UserRole = 'admin' | 'user' | 'owner'\n\nexport type UUID = `${string}-${string}-${string}-${string}-${string}`\n\nexport type User = {\n  id: UUID\n  fullname: string\n  email: string\n  username: string\n  role: UserRole\n  avatar: string\n  projects: UUID[]\n  notes: string\n  active: boolean\n}\n"
  },
  {
    "path": "src/pages/users/widgets/EditUserForm.vue",
    "content": "<script setup lang=\"ts\">\nimport { PropType, computed, ref, watch } from 'vue'\nimport { useForm } from 'vuestic-ui'\nimport { User, UserRole } from '../types'\nimport UserAvatar from './UserAvatar.vue'\nimport { useProjects } from '../../projects/composables/useProjects'\nimport { validators } from '../../../services/utils'\n\nconst props = defineProps({\n  user: {\n    type: Object as PropType<User | null>,\n    default: null,\n  },\n  saveButtonLabel: {\n    type: String,\n    default: 'Save',\n  },\n})\n\nconst defaultNewUser: Omit<User, 'id'> = {\n  avatar: '',\n  fullname: '',\n  role: 'user',\n  username: '',\n  notes: '',\n  email: '',\n  active: true,\n  projects: [],\n}\n\nconst newUser = ref<User>({ ...defaultNewUser } as User)\n\nconst isFormHasUnsavedChanges = computed(() => {\n  return Object.keys(newUser.value).some((key) => {\n    if (key === 'avatar' || key === 'projects') {\n      return false\n    }\n\n    return (\n      newUser.value[key as keyof Omit<User, 'id'>] !== (props.user ?? defaultNewUser)?.[key as keyof Omit<User, 'id'>]\n    )\n  })\n})\n\ndefineExpose({\n  isFormHasUnsavedChanges,\n})\n\nconst { projects } = useProjects({ pagination: ref({ page: 1, perPage: 9999, total: 10 }) })\n\nwatch(\n  [() => props.user, projects],\n  () => {\n    if (!props.user) {\n      return\n    }\n\n    newUser.value = {\n      ...props.user,\n      projects: props.user.projects.filter((projectId) => projects.value.find(({ id }) => id === projectId)),\n      avatar: props.user.avatar || '',\n    }\n  },\n  { immediate: true },\n)\n\nconst avatar = ref<File>()\n\nconst makeAvatarBlobUrl = (avatar: File) => {\n  return URL.createObjectURL(avatar)\n}\n\nwatch(avatar, (newAvatar) => {\n  newUser.value.avatar = newAvatar ? makeAvatarBlobUrl(newAvatar) : ''\n})\n\nconst form = useForm('add-user-form')\n\nconst emit = defineEmits(['close', 'save'])\n\nconst onSave = () => {\n  if (form.validate()) {\n    emit('save', newUser.value)\n  }\n}\n\nconst roleSelectOptions: { text: Capitalize<Lowercase<UserRole>>; value: UserRole }[] = [\n  { text: 'Admin', value: 'admin' },\n  { text: 'User', value: 'user' },\n  { text: 'Owner', value: 'owner' },\n]\n</script>\n\n<template>\n  <VaForm v-slot=\"{ isValid }\" ref=\"add-user-form\" class=\"flex-col justify-start items-start gap-4 inline-flex w-full\">\n    <VaFileUpload\n      v-model=\"avatar\"\n      type=\"single\"\n      hide-file-list\n      class=\"self-stretch justify-start items-center gap-4 inline-flex\"\n    >\n      <UserAvatar :user=\"newUser\" size=\"large\" />\n      <VaButton preset=\"primary\" size=\"small\">Add image</VaButton>\n      <VaButton\n        v-if=\"avatar\"\n        preset=\"primary\"\n        color=\"danger\"\n        size=\"small\"\n        icon=\"delete\"\n        class=\"z-10\"\n        @click.stop=\"avatar = undefined\"\n      />\n    </VaFileUpload>\n    <div class=\"self-stretch flex-col justify-start items-start gap-4 flex\">\n      <div class=\"flex gap-4 flex-col sm:flex-row w-full\">\n        <VaInput\n          v-model=\"newUser.fullname\"\n          label=\"Full name\"\n          class=\"w-full sm:w-1/2\"\n          :rules=\"[validators.required]\"\n          name=\"fullName\"\n        />\n        <VaInput\n          v-model=\"newUser.username\"\n          label=\"Username\"\n          class=\"w-full sm:w-1/2\"\n          :rules=\"[validators.required]\"\n          name=\"username\"\n        />\n      </div>\n      <div class=\"flex gap-4 flex-col sm:flex-row w-full\">\n        <VaInput\n          v-model=\"newUser.email\"\n          label=\"Email\"\n          class=\"w-full sm:w-1/2\"\n          :rules=\"[validators.required, validators.email]\"\n          name=\"email\"\n        />\n        <VaSelect\n          v-model=\"newUser.projects\"\n          label=\"Projects\"\n          class=\"w-full sm:w-1/2\"\n          :options=\"projects\"\n          value-by=\"id\"\n          text-by=\"project_name\"\n          :rules=\"[validators.required]\"\n          name=\"projects\"\n          multiple\n          :max-visible-options=\"2\"\n        />\n      </div>\n\n      <div class=\"flex gap-4 w-full\">\n        <div class=\"w-1/2\">\n          <VaSelect\n            v-model=\"newUser.role\"\n            label=\"Role\"\n            class=\"w-full\"\n            :options=\"roleSelectOptions\"\n            :rules=\"[validators.required]\"\n            name=\"role\"\n            value-by=\"value\"\n          />\n        </div>\n\n        <div class=\"flex items-center w-1/2 mt-4\">\n          <VaCheckbox v-model=\"newUser.active\" label=\"Active\" class=\"w-full\" name=\"active\" />\n        </div>\n      </div>\n\n      <VaTextarea v-model=\"newUser.notes\" label=\"Notes\" class=\"w-full\" name=\"notes\" />\n      <div class=\"flex gap-2 flex-col-reverse items-stretch justify-end w-full sm:flex-row sm:items-center\">\n        <VaButton preset=\"secondary\" color=\"secondary\" @click=\"$emit('close')\">Cancel</VaButton>\n        <VaButton :disabled=\"!isValid\" @click=\"onSave\">{{ saveButtonLabel }}</VaButton>\n      </div>\n    </div>\n  </VaForm>\n</template>\n"
  },
  {
    "path": "src/pages/users/widgets/UserAvatar.vue",
    "content": "<script setup lang=\"ts\">\nimport { type PropType } from 'vue'\nimport { type User } from '../types'\n\nconst avatarColor = (userName: string) => {\n  const colors = ['primary', '#FFD43A', '#ADFF00', '#262824', 'danger']\n  const index = userName.charCodeAt(0) % colors.length\n  return colors[index]\n}\n\ndefineProps({\n  user: {\n    type: Object as PropType<User>,\n    required: true,\n  },\n  size: {\n    type: String,\n    default: 'medium',\n  },\n})\n\nconst isUrl = (avatar: string) => {\n  if (!avatar) return false\n\n  return avatar.startsWith('http') || avatar.startsWith('blob:')\n}\n\nconst fallback = (fullname: string) => {\n  try {\n    const [firstName, lastName] = fullname.split(' ')\n    return `${firstName[0]}${lastName[0]}`\n  } catch {\n    return fullname[0]\n  }\n}\n</script>\n\n<template>\n  <VaAvatar\n    :size=\"size\"\n    :src=\"isUrl(user.avatar) ? user.avatar : ''\"\n    :fallback-text=\"fallback(user.fullname)\"\n    :color=\"avatarColor(user.fullname)\"\n  />\n</template>\n"
  },
  {
    "path": "src/pages/users/widgets/UsersTable.vue",
    "content": "<script setup lang=\"ts\">\nimport { defineVaDataTableColumns, useModal } from 'vuestic-ui'\nimport { User, UserRole } from '../types'\nimport UserAvatar from './UserAvatar.vue'\nimport { PropType, computed, toRef } from 'vue'\nimport { Pagination, Sorting } from '../../../data/pages/users'\nimport { useVModel } from '@vueuse/core'\nimport { Project } from '../../projects/types'\n\nconst columns = defineVaDataTableColumns([\n  { label: 'Full Name', key: 'fullname', sortable: true },\n  { label: 'Email', key: 'email', sortable: true },\n  { label: 'Username', key: 'username', sortable: true },\n  { label: 'Role', key: 'role', sortable: true },\n  { label: 'Projects', key: 'projects', sortable: true },\n  { label: ' ', key: 'actions', align: 'right' },\n])\n\nconst props = defineProps({\n  users: {\n    type: Array as PropType<User[]>,\n    required: true,\n  },\n  projects: {\n    type: Array as PropType<Project[]>,\n    required: true,\n  },\n  loading: { type: Boolean, default: false },\n  pagination: { type: Object as PropType<Pagination>, required: true },\n  sortBy: { type: String as PropType<Sorting['sortBy']>, required: true },\n  sortingOrder: { type: String as PropType<Sorting['sortingOrder']>, default: null },\n})\n\nconst emit = defineEmits<{\n  (event: 'edit-user', user: User): void\n  (event: 'delete-user', user: User): void\n  (event: 'update:sortBy', sortBy: Sorting['sortBy']): void\n  (event: 'update:sortingOrder', sortingOrder: Sorting['sortingOrder']): void\n}>()\n\nconst users = toRef(props, 'users')\nconst sortByVModel = useVModel(props, 'sortBy', emit)\nconst sortingOrderVModel = useVModel(props, 'sortingOrder', emit)\n\nconst roleColors: Record<UserRole, string> = {\n  admin: 'danger',\n  user: 'background-element',\n  owner: 'warning',\n}\n\nconst totalPages = computed(() => Math.ceil(props.pagination.total / props.pagination.perPage))\n\nconst { confirm } = useModal()\n\nconst onUserDelete = async (user: User) => {\n  const agreed = await confirm({\n    title: 'Delete user',\n    message: `Are you sure you want to delete ${user.fullname}?`,\n    okText: 'Delete',\n    cancelText: 'Cancel',\n    size: 'small',\n    maxWidth: '380px',\n  })\n\n  if (agreed) {\n    emit('delete-user', user)\n  }\n}\n\nconst formatProjectNames = (projects: Project['id'][]) => {\n  const names = projects.reduce((acc, p) => {\n    const project = props.projects?.find(({ id }) => p === id)\n\n    if (project) {\n      acc.push(project.project_name)\n    }\n\n    return acc\n  }, [] as string[])\n  if (names.length === 0) return 'No projects'\n  if (names.length <= 2) {\n    return names.map((name) => name).join(', ')\n  }\n\n  return (\n    names\n      .slice(0, 2)\n      .map((name) => name)\n      .join(', ') +\n    ' + ' +\n    (names.length - 2) +\n    ' more'\n  )\n}\n</script>\n\n<template>\n  <VaDataTable\n    v-model:sort-by=\"sortByVModel\"\n    v-model:sorting-order=\"sortingOrderVModel\"\n    :columns=\"columns\"\n    :items=\"users\"\n    :loading=\"$props.loading\"\n  >\n    <template #cell(fullname)=\"{ rowData }\">\n      <div class=\"flex items-center gap-2 max-w-[230px] ellipsis\">\n        <UserAvatar :user=\"rowData as User\" size=\"small\" />\n        {{ rowData.fullname }}\n      </div>\n    </template>\n\n    <template #cell(username)=\"{ rowData }\">\n      <div class=\"max-w-[120px] ellipsis\">\n        {{ rowData.username }}\n      </div>\n    </template>\n\n    <template #cell(email)=\"{ rowData }\">\n      <div class=\"ellipsis max-w-[230px]\">\n        {{ rowData.email }}\n      </div>\n    </template>\n\n    <template #cell(role)=\"{ rowData }\">\n      <VaBadge :text=\"rowData.role\" :color=\"roleColors[rowData.role as UserRole]\" />\n    </template>\n\n    <template #cell(projects)=\"{ rowData }\">\n      <div class=\"ellipsis max-w-[300px] lg:max-w-[450px]\">\n        {{ formatProjectNames(rowData.projects) }}\n      </div>\n    </template>\n\n    <template #cell(actions)=\"{ rowData }\">\n      <div class=\"flex gap-2 justify-end\">\n        <VaButton\n          preset=\"primary\"\n          size=\"small\"\n          icon=\"mso-edit\"\n          aria-label=\"Edit user\"\n          @click=\"$emit('edit-user', rowData as User)\"\n        />\n        <VaButton\n          preset=\"primary\"\n          size=\"small\"\n          icon=\"mso-delete\"\n          color=\"danger\"\n          aria-label=\"Delete user\"\n          @click=\"onUserDelete(rowData as User)\"\n        />\n      </div>\n    </template>\n  </VaDataTable>\n\n  <div class=\"flex flex-col-reverse md:flex-row gap-2 justify-between items-center py-2\">\n    <div>\n      <b>{{ $props.pagination.total }} results.</b>\n      Results per page\n      <VaSelect v-model=\"$props.pagination.perPage\" class=\"!w-20\" :options=\"[10, 50, 100]\" />\n    </div>\n\n    <div v-if=\"totalPages > 1\" class=\"flex\">\n      <VaButton\n        preset=\"secondary\"\n        icon=\"va-arrow-left\"\n        aria-label=\"Previous page\"\n        :disabled=\"$props.pagination.page === 1\"\n        @click=\"$props.pagination.page--\"\n      />\n      <VaButton\n        class=\"mr-2\"\n        preset=\"secondary\"\n        icon=\"va-arrow-right\"\n        aria-label=\"Next page\"\n        :disabled=\"$props.pagination.page === totalPages\"\n        @click=\"$props.pagination.page++\"\n      />\n      <VaPagination\n        v-model=\"$props.pagination.page\"\n        buttons-preset=\"secondary\"\n        :pages=\"totalPages\"\n        :visible-pages=\"5\"\n        :boundary-links=\"false\"\n        :direction-links=\"false\"\n      />\n    </div>\n  </div>\n</template>\n\n<style lang=\"scss\" scoped>\n.va-data-table {\n  ::v-deep(.va-data-table__table-tr) {\n    border-bottom: 1px solid var(--va-background-border);\n  }\n}\n</style>\n"
  },
  {
    "path": "src/router/index.ts",
    "content": "import { createRouter, createWebHistory, RouteRecordRaw } from 'vue-router'\n\nimport AuthLayout from '../layouts/AuthLayout.vue'\nimport AppLayout from '../layouts/AppLayout.vue'\n\nimport RouteViewComponent from '../layouts/RouterBypass.vue'\n\nconst routes: Array<RouteRecordRaw> = [\n  {\n    path: '/:pathMatch(.*)*',\n    redirect: { name: 'dashboard' },\n  },\n  {\n    name: 'admin',\n    path: '/',\n    component: AppLayout,\n    redirect: { name: 'dashboard' },\n    children: [\n      {\n        name: 'dashboard',\n        path: 'dashboard',\n        component: () => import('../pages/admin/dashboard/Dashboard.vue'),\n      },\n      {\n        name: 'settings',\n        path: 'settings',\n        component: () => import('../pages/settings/Settings.vue'),\n      },\n      {\n        name: 'preferences',\n        path: 'preferences',\n        component: () => import('../pages/preferences/Preferences.vue'),\n      },\n      {\n        name: 'users',\n        path: 'users',\n        component: () => import('../pages/users/UsersPage.vue'),\n      },\n      {\n        name: 'projects',\n        path: 'projects',\n        component: () => import('../pages/projects/ProjectsPage.vue'),\n      },\n      {\n        name: 'payments',\n        path: '/payments',\n        component: RouteViewComponent,\n        children: [\n          {\n            name: 'payment-methods',\n            path: 'payment-methods',\n            component: () => import('../pages/payments/PaymentsPage.vue'),\n          },\n          {\n            name: 'billing',\n            path: 'billing',\n            component: () => import('../pages/billing/BillingPage.vue'),\n          },\n          {\n            name: 'pricing-plans',\n            path: 'pricing-plans',\n            component: () => import('../pages/pricing-plans/PricingPlans.vue'),\n          },\n        ],\n      },\n      {\n        name: 'faq',\n        path: '/faq',\n        component: () => import('../pages/faq/FaqPage.vue'),\n      },\n    ],\n  },\n  {\n    path: '/auth',\n    component: AuthLayout,\n    children: [\n      {\n        name: 'login',\n        path: 'login',\n        component: () => import('../pages/auth/Login.vue'),\n      },\n      {\n        name: 'signup',\n        path: 'signup',\n        component: () => import('../pages/auth/Signup.vue'),\n      },\n      {\n        name: 'recover-password',\n        path: 'recover-password',\n        component: () => import('../pages/auth/RecoverPassword.vue'),\n      },\n      {\n        name: 'recover-password-email',\n        path: 'recover-password-email',\n        component: () => import('../pages/auth/CheckTheEmail.vue'),\n      },\n      {\n        path: '',\n        redirect: { name: 'login' },\n      },\n    ],\n  },\n  {\n    name: '404',\n    path: '/404',\n    component: () => import('../pages/404.vue'),\n  },\n]\n\nconst router = createRouter({\n  history: createWebHistory(import.meta.env.BASE_URL),\n  scrollBehavior(to, from, savedPosition) {\n    if (savedPosition) {\n      return savedPosition\n    }\n    // For some reason using documentation example doesn't scroll on page navigation.\n    if (to.hash) {\n      return { el: to.hash, behavior: 'smooth' }\n    } else {\n      window.scrollTo(0, 0)\n    }\n  },\n  routes,\n})\n\nexport default router\n"
  },
  {
    "path": "src/scss/icon-fonts/index.scss",
    "content": "// These fonts were originally provided by http://weloveiconfonts.com.\n// We decided to add these into package after https ceased to work due to lack of support on their side.\n@import 'vuestic-icons/vuestic-icons';\n"
  },
  {
    "path": "src/scss/icon-fonts/vuestic-icons/vuestic-icons.scss",
    "content": "@font-face {\n  font-family: 'Vuestic Icons';\n  font-weight: normal;\n  font-style: normal;\n  src: url('vuestic-icons.eot');\n  src:\n    url('/src/scss/icon-fonts/vuestic-icons/vuestic-icons.eot?#iefix?local') format('eot'),\n    url('/src/scss/icon-fonts/vuestic-icons/vuestic-icons.woff?url') format('woff'),\n    url('/src/scss/icon-fonts/vuestic-icons/vuestic-icons.ttf') format('truetype'),\n    url('/src/scss/icon-fonts/vuestic-icons/vuestic-icons.svg#vuestic-icons') format('svg');\n}\n\n.vuestic-iconset {\n  line-height: 1;\n}\n\n.vuestic-iconset::before {\n  display: inline-block;\n  font-family: 'Vuestic Icons';\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.vuestic-iconset-comments::before {\n  content: '\\0041';\n}\n\n.vuestic-iconset-components::before {\n  content: '\\0042';\n}\n\n.vuestic-iconset-dashboard::before {\n  content: '\\0043';\n}\n\n.vuestic-iconset-extras::before {\n  content: '\\0044';\n}\n\n.vuestic-iconset-files::before {\n  content: '\\0045';\n}\n\n.vuestic-iconset-forms::before {\n  content: '\\0046';\n}\n\n.vuestic-iconset-graph::before {\n  content: '\\0047';\n}\n\n.vuestic-iconset-auth::before {\n  content: '\\0048';\n}\n\n.vuestic-iconset-image::before {\n  content: '\\0049';\n}\n\n.vuestic-iconset-maps::before {\n  content: '\\004a';\n}\n\n.vuestic-iconset-music::before {\n  content: '\\004b';\n}\n\n.vuestic-iconset-settings::before {\n  content: '\\004c';\n}\n\n.vuestic-iconset-statistics::before {\n  content: '\\004d';\n}\n\n.vuestic-iconset-tables::before {\n  content: '\\004e';\n}\n\n.vuestic-iconset-time::before {\n  content: '\\004f';\n}\n\n.vuestic-iconset-ui-elements::before {\n  content: '\\0050';\n}\n\n.vuestic-iconset-user::before {\n  content: '\\0051';\n}\n\n.vuestic-iconset-video::before {\n  content: '\\0052';\n}\n"
  },
  {
    "path": "src/scss/main.scss",
    "content": "@import 'tailwind';\n@import 'vuestic';\n@import 'icon-fonts/index';\n\nbody {\n  @apply text-regularMedium;\n\n  // TODO Move to some other place so that it's more elegant.\n  --va-checkbox-font-size: 0.875rem;\n  --va-card-box-shadow: none; // TODO Remove after https://github.com/epicmaxco/vuestic-ui/issues/3964\n  --va-card-padding: 1rem;\n  --va-font-family: 'Inter', sans-serif;\n}\n\ncode,\nkbd,\nsamp,\npre {\n  font-family: monospace;\n  font-size: 1em;\n}\n\n.ellipsis {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n}\n\n.page-title {\n  @apply text-[32px] md:text-5xl font-bold leading-9 md:leading-[56px] max-sm:mt-6 mb-6 md:mb-4;\n}\n\n.h1 {\n  @apply text-[32px] md:text-5xl font-bold leading-9 md:leading-[56px] max-sm:mt-6 mb-6 md:mb-4;\n}\n\n.h3,\n.page-sub-title {\n  @apply text-2xl font-bold leading-[30px];\n}\n\n.h5 {\n  @apply font-bold leading-tight;\n}\n\n.block-title {\n  @apply text-2xl font-bold mb-2;\n}\n\n.pricing-plan-card-title {\n  @apply text-[28px] md:text-[32px] leading-10 font-bold;\n}\n\n.text-regular-small {\n  font-size: 0.8125rem;\n  line-height: 1rem;\n}\n"
  },
  {
    "path": "src/scss/tailwind.scss",
    "content": "@layer tailwind.base {\n  @import 'tailwindcss/base';\n}\n@tailwind components;\n@tailwind utilities;\n"
  },
  {
    "path": "src/scss/vuestic.scss",
    "content": ".va-input,\n.va-select {\n  width: 100%;\n}\n\n:root {\n  --va-modal-padding-top: 1rem;\n  --va-modal-padding-right: 1rem;\n  --va-modal-padding-bottom: 1rem;\n  --va-modal-padding-left: 1rem;\n}\n\n.va-modal {\n  line-height: 20px;\n\n  &__message {\n    margin-bottom: 16px;\n  }\n\n  &__dialog {\n    border-radius: 8px;\n\n    @media (min-width: 640px) {\n      border-radius: 4px;\n    }\n  }\n}\n\n.va-input {\n  &-label {\n    font-size: 9px;\n    line-height: 14px;\n    letter-spacing: 0.4px;\n    min-height: 14px;\n\n    &__required-mark {\n      font-size: 13px;\n    }\n  }\n\n  &-wrapper {\n    &__size-keeper {\n      height: auto;\n    }\n\n    &__label--outer {\n      margin-bottom: 4px;\n    }\n\n    &__field {\n      padding: 8px 12px;\n    }\n  }\n}\n\n.va-sidebar {\n  &__item__content {\n    min-height: 44px;\n  }\n}\n\n.va-select {\n  &--small {\n    .va-input-wrapper__field {\n      padding: 0 0.25rem;\n    }\n  }\n\n  &-anchor__input {\n    flex: unset;\n  }\n}\n\n.va-card {\n  &__title {\n    padding-bottom: calc(var(--va-card-padding) / 2) !important;\n  }\n}\n\n.va-data-table {\n  .va-inner-loading__spinner {\n    margin-top: 32px;\n  }\n}\n"
  },
  {
    "path": "src/services/api.ts",
    "content": "const apiBaseUrl = import.meta.env.VITE_API_BASE_URL\n\nexport default {\n  allUsers: () => `${apiBaseUrl}/users`,\n  user: (id: string) => `${apiBaseUrl}/users/${id}`,\n  users: ({ page, pageSize }: { page: number; pageSize: number }) =>\n    `${apiBaseUrl}/users/?page=${page}&pageSize=${pageSize}`,\n  allProjects: () => `${apiBaseUrl}/projects`,\n  project: (id: string) => `${apiBaseUrl}/projects/${id}`,\n  projects: ({ page, pageSize }: { page: number; pageSize: number }) =>\n    `${apiBaseUrl}/projects/?page=${page}&pageSize=${pageSize}`,\n  avatars: () => `${apiBaseUrl}/avatars`,\n}\n"
  },
  {
    "path": "src/services/toCSV.ts",
    "content": "export const toCSV = (data: Record<string, any>[]) => {\n  const headers = Object.keys(data[0])\n  const csv = [\n    headers.join(','),\n    ...data.map((row) => headers.map((fieldName) => JSON.stringify(row[fieldName])).join(',')),\n  ].join('\\r\\n')\n  return csv\n}\n\nexport const downloadAsCSV = (data: Record<string, any>[], filename: string) => {\n  const csv = toCSV(data)\n\n  const blob = new Blob([csv], { type: 'text/csv' })\n\n  const link = document.createElement('a')\n  link.href = window.URL.createObjectURL(blob)\n  link.download = filename\n  link.click()\n}\n"
  },
  {
    "path": "src/services/utils.ts",
    "content": "export const sleep = (ms = 0) => {\n  return new Promise((resolve) => setTimeout(resolve, ms))\n}\n\n/** Validation */\nexport const validators = {\n  email: (v: string) => {\n    const pattern = /^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$/\n    return pattern.test(v) || 'Please enter a valid email address'\n  },\n  required: (v: any) => !!v || 'This field is required',\n}\n"
  },
  {
    "path": "src/services/vuestic-ui/global-config.ts",
    "content": "import iconsConfig from './icons-config/icons-config'\nimport colors from './themes'\nimport { defineVuesticConfig } from 'vuestic-ui'\n\nexport default defineVuesticConfig({\n  colors,\n  icons: iconsConfig,\n  breakpoint: {\n    enabled: true,\n    bodyClass: true,\n    thresholds: {\n      xs: 0,\n      sm: 320,\n      md: 640,\n      lg: 1024,\n      xl: 1440,\n    },\n  },\n  components: {\n    VaIcon: {\n      sizesConfig: {\n        defaultSize: 19,\n        sizes: {\n          small: 14,\n          medium: 19,\n          large: 26,\n        },\n      },\n    },\n    VaModal: {\n      mobileFullscreen: false,\n      maxHeight: 'calc(100% - 2rem)',\n    },\n    VaPagination: {\n      activeButtonProps: {\n        preset: 'primary',\n      },\n    },\n    VaDataTable: {\n      disableClientSideSorting: true,\n    },\n    presets: {\n      VaSelect: {\n        small: {\n          class: 'va-select--small',\n          keepAnchorWidth: false,\n          placement: 'bottom-end',\n          width: 'min(100%, 150px)',\n          style:\n            '--va-input-wrapper-min-height: 24px; --va-input-wrapper-border-radius: 2px; --va-input-wrapper-width: 100px;',\n        },\n      },\n    },\n  },\n})\n"
  },
  {
    "path": "src/services/vuestic-ui/icons-config/aliases.ts",
    "content": "export default [\n  {\n    name: 'angle_down',\n    to: 'fa4-angle-down',\n  },\n  {\n    name: 'angle_up',\n    to: 'fa4-angle-up',\n  },\n  {\n    name: 'bell',\n    to: 'fa4-bell',\n  },\n  {\n    name: 'bell_slash',\n    to: 'fa4-bell-slash',\n  },\n  {\n    name: 'cogs',\n    to: 'fa4-cogs',\n  },\n  {\n    name: 'envelope',\n    to: 'fa4-envelope',\n  },\n  {\n    name: 'eye',\n    to: 'fa4-eye',\n  },\n  {\n    name: 'gear',\n    to: 'fa4-gear',\n  },\n  {\n    name: 'map',\n    to: 'fa4-map',\n  },\n  {\n    name: 'map_marker',\n    to: 'fa4-map-marker',\n  },\n  {\n    name: 'music',\n    to: 'fa4-music',\n  },\n  {\n    name: 'print',\n    to: 'fa4-print',\n  },\n  {\n    name: 'refresh',\n    to: 'fa4-refresh',\n  },\n  {\n    name: 'search',\n    to: 'fa4-search',\n  },\n  {\n    name: 'mars',\n    to: 'fa4-mars',\n  },\n  {\n    name: 'venus',\n    to: 'fa4-venus',\n  },\n  {\n    name: 'volume_off',\n    to: 'fa4-volume-off',\n  },\n  {\n    name: 'volume_up',\n    to: 'fa4-volume-up',\n  },\n  {\n    name: 'github',\n    to: 'fa4-github',\n  },\n  {\n    name: 'md_close',\n    to: 'ion-md-close',\n  },\n  {\n    name: 'images',\n    to: 'ion-md-images',\n  },\n  {\n    name: 'list',\n    to: 'ion-md-list',\n  },\n  {\n    name: 'musical_notes',\n    to: 'ion-md-musical-notes',\n  },\n  {\n    name: 'star_outline',\n    to: 'ion-md-star-outline',\n  },\n  {\n    name: 'grid',\n    to: 'ion-md-grid',\n  },\n  {\n    name: 'help',\n    to: 'ion-md-help',\n  },\n  {\n    name: 'key',\n    to: 'ion-md-key',\n  },\n]\n"
  },
  {
    "path": "src/services/vuestic-ui/icons-config/icons-config.ts",
    "content": "import { createIconsConfig } from 'vuestic-ui'\nimport aliases from './aliases'\n\nexport default createIconsConfig({\n  aliases,\n  fonts: [\n    {\n      name: 'fa4-{code}',\n      resolve: ({ code }) => ({ class: `fa4 fa fa-${code}` }),\n    },\n    {\n      name: 'ion-{font}-{code}',\n      resolve: ({ font, code }) => ({\n        class: `icon ion-${font}-${code}`,\n      }),\n    },\n    {\n      name: 'vuestic-iconset-{code}',\n      resolve: ({ code }) => ({ class: `vuestic-iconset vuestic-iconset-${code}` }),\n    },\n    {\n      name: 'flag-icon-{code} {size}',\n      resolve: ({ code, size }) => ({ class: `fi fi-${code} fi-size-${size}`, tag: 'span' }),\n    },\n    {\n      name: /(brandico|entypo|fa|fontelico|glyphicon|iconicstroke|maki|openwebicons)-(.*)/,\n      resolveFromRegex: (font, code) => ({ class: `${font} ${font}-${code}` }),\n    },\n    {\n      name: 'material-icons-{code}',\n      resolve: ({ code }) => ({ to: code }),\n    },\n    {\n      name: 'mso-{content}',\n      class: 'material-symbols-outlined',\n      resolve: ({ content }) => ({ content: content }),\n    },\n  ],\n})\n"
  },
  {
    "path": "src/services/vuestic-ui/themes.ts",
    "content": "export default {\n  presets: {\n    light: {\n      backgroundPrimary: '#F4F6F8',\n      backgroundSecondary: '#FFFFFF',\n      backgroundCardPrimary: '#F7F9F9',\n      backgroundCardSecondary: '#ECFDE6',\n      success: '#228200',\n      info: '#158DE3',\n      danger: '#E42222',\n      warning: '#FFD43A',\n    },\n    dark: {\n      backgroundCardPrimary: '#111827',\n      backgroundCardSecondary: '#0f172a',\n    },\n  },\n}\n"
  },
  {
    "path": "src/stores/billing-addresses.ts",
    "content": "import { defineStore } from 'pinia'\nimport { sleep } from '../services/utils'\nimport { BillingAddress } from '../pages/payments/types' // adjust the import path accordingly\n\n// Simulated fetch function\nconst fetchBillingAddresses = async () => {\n  await sleep(1000)\n  return [\n    {\n      id: '1',\n      name: 'Home address',\n      isPrimary: true,\n      street: 'Ap #285-7193 Ullamcorper Avenue',\n      city: 'Amesbury',\n      state: 'HI',\n      postalCode: '93373',\n      country: 'US',\n    },\n    {\n      id: '2',\n      name: 'Office address',\n      isPrimary: false,\n      street: 'P.O. Box 847, 8011 Nisl St.',\n      city: 'Morgantown',\n      state: 'IN',\n      postalCode: '46160',\n      country: 'US',\n    },\n    {\n      id: '3',\n      name: 'Vacation home',\n      isPrimary: false,\n      street: '883-2699 Egestas Rd.',\n      city: 'Frederick',\n      state: 'NE',\n      postalCode: '20620',\n      country: 'US',\n    },\n  ] as BillingAddress[]\n}\n\nexport const useBillingAddressesStore = defineStore({\n  id: 'billingAddresses',\n  state: () => ({\n    billingAddresses: [] as BillingAddress[],\n    loading: false,\n  }),\n  getters: {\n    allBillingAddresses: (state) => state.billingAddresses,\n  },\n  actions: {\n    async load() {\n      this.loading = true\n      this.billingAddresses = await fetchBillingAddresses()\n      this.loading = false\n    },\n    create(address: BillingAddress) {\n      this.billingAddresses.unshift(address)\n    },\n    update(address: BillingAddress) {\n      const index = this.billingAddresses.findIndex((existingCard) => existingCard.id === address.id)\n      if (index !== -1) {\n        this.billingAddresses.splice(index, 1, address)\n      }\n    },\n    remove(addressId: string) {\n      this.billingAddresses = this.billingAddresses.filter((address) => address.id !== addressId)\n    },\n  },\n})\n"
  },
  {
    "path": "src/stores/global-store.ts",
    "content": "import { defineStore } from 'pinia'\n\nexport const useGlobalStore = defineStore('global', {\n  state: () => {\n    return {\n      isSidebarMinimized: false,\n    }\n  },\n\n  actions: {\n    toggleSidebar() {\n      this.isSidebarMinimized = !this.isSidebarMinimized\n    },\n  },\n})\n"
  },
  {
    "path": "src/stores/index.ts",
    "content": "import { createPinia } from 'pinia'\n\nexport default createPinia()\n"
  },
  {
    "path": "src/stores/notifications.ts",
    "content": "import { defineStore } from 'pinia'\n\nexport const useNotificationsStore = defineStore('notifications', {\n  state: () => {\n    return {\n      notifications: {\n        searchingForAJob: {\n          name: 'Searching for a job',\n          isEnabled: true,\n        },\n        hiringSomeone: {\n          name: 'Hiring someone',\n          isEnabled: false,\n        },\n        connectingWithOthers: {\n          name: 'Connecting with others',\n          isEnabled: true,\n        },\n        postingAndCommenting: {\n          name: 'Posting and commenting',\n          isEnabled: true,\n        },\n        messaging: {\n          name: 'Messaging',\n          isEnabled: true,\n        },\n        groups: {\n          name: 'Groups',\n          isEnabled: false,\n        },\n        pages: {\n          name: 'Pages',\n          isEnabled: true,\n        },\n        attendingEvents: {\n          name: 'Attending events',\n          isEnabled: true,\n        },\n        newsAndReports: {\n          name: 'News and reports',\n          isEnabled: false,\n        },\n        updatingYourProfile: {\n          name: 'Updating your profile',\n          isEnabled: true,\n        },\n        verifications: {\n          name: 'Verifications',\n          isEnabled: true,\n        },\n      },\n    }\n  },\n})\n"
  },
  {
    "path": "src/stores/payment-cards.ts",
    "content": "// src/stores/cards.ts\n\nimport { defineStore } from 'pinia'\nimport { sleep } from '../services/utils'\nimport { PaymentSystemType, PaymentCard } from '../pages/payments/types' // adjust the import path accordingly\n\n// Simulated fetch function\nconst fetchPaymentCards = async () => {\n  await sleep(1000)\n  return [\n    {\n      id: '1',\n      name: 'Main card',\n      isPrimary: true,\n      paymentSystem: PaymentSystemType.Visa,\n      cardNumberMasked: '****1679',\n      expirationDate: '0924',\n    },\n    {\n      id: '2',\n      name: 'Online shopping',\n      isPrimary: false,\n      paymentSystem: PaymentSystemType.MasterCard,\n      cardNumberMasked: '****8921',\n      expirationDate: '1123',\n    },\n    {\n      id: '3',\n      name: 'Backup Visa',\n      isPrimary: false,\n      paymentSystem: PaymentSystemType.MasterCard,\n      cardNumberMasked: '****4523',\n      expirationDate: '1222',\n    },\n  ]\n}\n\nexport const usePaymentCardsStore = defineStore({\n  id: 'paymentCards',\n  state: () => ({\n    paymentCards: [] as PaymentCard[],\n    loading: false,\n  }),\n  getters: {\n    currentPaymentCard: (state): PaymentCard | undefined => state.paymentCards.find((card) => card.isPrimary),\n    allPaymentCards: (state) => state.paymentCards,\n  },\n  actions: {\n    async load() {\n      this.loading = true\n      this.paymentCards = await fetchPaymentCards()\n      this.loading = false\n    },\n    create(card: PaymentCard) {\n      this.paymentCards.unshift(card)\n    },\n    update(card: PaymentCard) {\n      const index = this.paymentCards.findIndex((existingCard) => existingCard.id === card.id)\n      if (index !== -1) {\n        this.paymentCards.splice(index, 1, card)\n      }\n    },\n    remove(cardId: string) {\n      this.paymentCards = this.paymentCards.filter((card) => card.id !== cardId)\n    },\n  },\n})\n"
  },
  {
    "path": "src/stores/projects.ts",
    "content": "import { defineStore } from 'pinia'\nimport { addProject, getProjects, Pagination, removeProject, Sorting, updateProject } from '../data/pages/projects'\nimport { Project } from '../pages/projects/types'\n\nexport const useProjectsStore = defineStore('projects', {\n  state: () => {\n    return {\n      items: [] as Project[],\n      pagination: {\n        page: 1,\n        perPage: 10,\n        total: 0,\n      } as Pagination,\n    }\n  },\n\n  actions: {\n    async getAll(options: { pagination: Pagination; sorting?: Sorting }) {\n      const { data, pagination } = await getProjects({\n        ...options.sorting,\n        ...options.pagination,\n      })\n      this.items = data\n      this.pagination = pagination\n    },\n\n    async add(project: Omit<Project, 'id' | 'created_at'>) {\n      const [newProject] = await addProject(project)\n      this.items.push(newProject)\n    },\n\n    async update(project: Project) {\n      const [updatedProject] = await updateProject(project)\n      const index = this.items.findIndex(({ id }) => id === project.id)\n      this.items.splice(index, 1, updatedProject)\n    },\n\n    async remove(project: Project) {\n      const isRemoved = await removeProject(project)\n\n      if (isRemoved) {\n        const index = this.items.findIndex(({ id }) => id === project.id)\n        this.items.splice(index, 1)\n      }\n    },\n  },\n})\n"
  },
  {
    "path": "src/stores/user-store.ts",
    "content": "import { defineStore } from 'pinia'\n\nexport const useUserStore = defineStore('user', {\n  state: () => {\n    return {\n      userName: 'Vasili Savitski',\n      email: 'vasili@gmail.com',\n      memberSince: '8/12/2020',\n      pfp: 'https://picsum.photos/id/22/200/300',\n      is2FAEnabled: false,\n    }\n  },\n\n  actions: {\n    toggle2FA() {\n      this.is2FAEnabled = !this.is2FAEnabled\n    },\n\n    changeUserName(userName: string) {\n      this.userName = userName\n    },\n  },\n})\n"
  },
  {
    "path": "src/stores/users.ts",
    "content": "import { defineStore } from 'pinia'\nimport {\n  addUser,\n  type Filters,\n  getUsers,\n  Pagination,\n  removeUser,\n  Sorting,\n  updateUser,\n  uploadAvatar,\n} from '../data/pages/users'\nimport { User } from '../pages/users/types'\n\nexport const useUsersStore = defineStore('users', {\n  state: () => {\n    return {\n      items: [] as User[],\n      pagination: { page: 1, perPage: 10, total: 0 },\n    }\n  },\n\n  actions: {\n    async getAll(options: { pagination?: Pagination; sorting?: Sorting; filters?: Partial<Filters> }) {\n      const { data, pagination } = await getUsers({\n        ...options.filters,\n        ...options.sorting,\n        ...options.pagination,\n      })\n      this.items = data\n      this.pagination = pagination\n    },\n\n    async add(user: User) {\n      const [newUser] = await addUser(user)\n      this.items.unshift(newUser)\n      return newUser\n    },\n\n    async update(user: User) {\n      const [updatedUser] = await updateUser(user)\n      const index = this.items.findIndex(({ id }) => id === user.id)\n      this.items.splice(index, 1, updatedUser)\n      return updatedUser\n    },\n\n    async remove(user: User) {\n      const isRemoved = await removeUser(user)\n\n      if (isRemoved) {\n        const index = this.items.findIndex(({ id }) => id === user.id)\n        this.items.splice(index, 1)\n      }\n    },\n\n    async uploadAvatar(formData: FormData) {\n      return uploadAvatar(formData)\n    },\n  },\n})\n"
  },
  {
    "path": "tailwind.config.js",
    "content": "export default {\n  content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],\n  theme: {\n    extend: {\n      fontSize: {\n        tag: ['0.5625rem', '0.875rem'],\n        regularSmall: ['0.8125rem', '1rem'],\n        regularLarge: ['1.125rem', '1.625rem'],\n        regularMedium: ['0.875rem', '1.25rem'],\n      },\n      maxWidth: {\n        '7xl': '1128px',\n      },\n      colors: {\n        primary: 'var(--va-primary)',\n        secondary: 'var(--va-secondary)',\n        success: 'var(--va-success)',\n        info: 'var(--va-info)',\n        danger: 'var(--va-danger)',\n        warning: 'var(--va-warning)',\n        backgroundPrimary: 'var(--va-background-primary)',\n        backgroundSecondary: 'var(--va-background-secondary)',\n        backgroundElement: 'var(--va-background-element)',\n        backgroundCardPrimary: 'var(--va-background-card-primary)',\n        backgroundCardSecondary: 'var(--va-background-card-secondary)',\n        backgroundBorder: 'var(--va-background-border)',\n        textPrimary: 'var(--va-text-primary)',\n        textInverted: 'var(--va-text-inverted)',\n        shadow: 'var(--va-shadow)',\n        focus: 'var(--va-focus)',\n      },\n      screens: {\n        xs: '0px',\n        sm: '640px',\n        md: '1024px',\n        lg: '1440px',\n        xl: '1920px',\n      },\n    },\n    screens: {\n      xs: '0px',\n      sm: '576px',\n      md: '768px',\n      lg: '992px',\n      xl: '1200px',\n    },\n  },\n  plugins: [],\n}\n"
  },
  {
    "path": "tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"noEmit\": true,\n    \"target\": \"esnext\",\n    \"useDefineForClassFields\": true,\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"bundler\",\n    \"strict\": true,\n    \"jsx\": \"preserve\",\n    \"sourceMap\": true,\n    \"resolveJsonModule\": true,\n    \"esModuleInterop\": true,\n    \"lib\": [\"esnext\", \"dom\"],\n    \"skipLibCheck\": true,\n    \"types\": [\"vite/client\"],\n    \"allowJs\": true\n  },\n  \"include\": [\"src/**/*.ts\", \"src/**/*.d.ts\", \"src/**/*.vue\", \"vite.config.ts\", \"node_modules/vuestic-ui\"],\n  \"exclude\": [\"node_modules/**/*\"]\n}\n"
  },
  {
    "path": "vite.config.ts",
    "content": "import { defineConfig } from 'vite'\nimport vue from '@vitejs/plugin-vue'\nimport { resolve, dirname } from 'node:path'\nimport { fileURLToPath } from 'url'\nimport VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'\nimport { vuestic } from '@vuestic/compiler/vite'\n\n// https://vitejs.dev/config/\nexport default defineConfig({\n  build: {\n    sourcemap: true,\n  },\n  plugins: [\n    vuestic(),\n    vue(),\n    VueI18nPlugin({\n      include: resolve(dirname(fileURLToPath(import.meta.url)), './src/i18n/locales/**'),\n    }),\n  ],\n})\n"
  }
]